[PR #655] [MERGED] v0.6.0 Release beta 1 #1260

Closed
opened 2026-03-01 14:49:04 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ArchiveBox/ArchiveBox/pull/655
Author: @pirate
Created: 2/16/2021
Status: Merged
Merged: 3/27/2021
Merged by: @pirate

Base: devHead: debug-toolbar


📝 Commits (10+)

  • 188670e disable sonic by default in docker-compose and add instructions
  • 6112167 switch sqlite to use WAL mode by default to prevent database locked errors
  • 128e7f0 dont show progress bars in docker by default
  • 0407d03 add cli tests file back
  • e61e12c use setup.py to determine dependencies in Dockerfile instead of egg-info requires.txt
  • 3c3bae0 add quick-init option to skip reimporting all snapshot dirs on init
  • 00ae1f1 ignore shm db file and config files in archivebox data dir on init
  • 3e96871 add comment explaining commented out lines in docker-compose file
  • 9cd4ba3 add new SNAPSHOTS_PER_PAGE pagination limit config
  • 78463c2 remove unused GIT_SHA config option

📊 Changes

65 files changed (+1827 additions, -615 deletions)

View changed files

📝 Dockerfile (+17 -12)
📝 archivebox/cli/__init__.py (+5 -1)
📝 archivebox/cli/archivebox_add.py (+12 -1)
📝 archivebox/cli/archivebox_config.py (+4 -1)
📝 archivebox/cli/archivebox_init.py (+6 -0)
📝 archivebox/cli/archivebox_list.py (+11 -11)
📝 archivebox/cli/archivebox_oneshot.py (+4 -1)
📝 archivebox/cli/archivebox_remove.py (+4 -1)
📝 archivebox/cli/archivebox_server.py (+13 -2)
📝 archivebox/cli/archivebox_update.py (+7 -3)
archivebox/cli/tests.py (+227 -0)
📝 archivebox/config.py (+62 -10)
📝 archivebox/core/admin.py (+163 -71)
📝 archivebox/core/forms.py (+2 -1)
archivebox/core/migrations/0009_auto_20210216_1038.py (+18 -0)
archivebox/core/migrations/0010_auto_20210216_1055.py (+18 -0)
archivebox/core/migrations/0011_auto_20210216_1331.py (+24 -0)
archivebox/core/migrations/0012_auto_20210216_1425.py (+23 -0)
archivebox/core/migrations/0013_auto_20210218_0729.py (+18 -0)
archivebox/core/migrations/0014_auto_20210218_0729.py (+18 -0)

...and 45 more files

📄 Description

Moved to: https://github.com/ArchiveBox/ArchiveBox/pull/680


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ArchiveBox/ArchiveBox/pull/655 **Author:** [@pirate](https://github.com/pirate) **Created:** 2/16/2021 **Status:** ✅ Merged **Merged:** 3/27/2021 **Merged by:** [@pirate](https://github.com/pirate) **Base:** `dev` ← **Head:** `debug-toolbar` --- ### 📝 Commits (10+) - [`188670e`](https://github.com/ArchiveBox/ArchiveBox/commit/188670eb8be643ed7d38d4db32a2d8fe1eb99b4e) disable sonic by default in docker-compose and add instructions - [`6112167`](https://github.com/ArchiveBox/ArchiveBox/commit/611216765d7e0006bff9431f900f8571d50c037c) switch sqlite to use WAL mode by default to prevent database locked errors - [`128e7f0`](https://github.com/ArchiveBox/ArchiveBox/commit/128e7f0e8d542b1d91260cef74c4413c12c356ef) dont show progress bars in docker by default - [`0407d03`](https://github.com/ArchiveBox/ArchiveBox/commit/0407d03b6bcbca92a0e99470b66ce89e3d61b288) add cli tests file back - [`e61e12c`](https://github.com/ArchiveBox/ArchiveBox/commit/e61e12c889c937e3fc29ef95fab8cfd2512fc71a) use setup.py to determine dependencies in Dockerfile instead of egg-info requires.txt - [`3c3bae0`](https://github.com/ArchiveBox/ArchiveBox/commit/3c3bae02d2937a9824d74f0e1db766f657ba7996) add quick-init option to skip reimporting all snapshot dirs on init - [`00ae1f1`](https://github.com/ArchiveBox/ArchiveBox/commit/00ae1f15a75b0511db47f4c058ed8bb627049421) ignore shm db file and config files in archivebox data dir on init - [`3e96871`](https://github.com/ArchiveBox/ArchiveBox/commit/3e96871386c72f649c2889b2b57d10da31580ecb) add comment explaining commented out lines in docker-compose file - [`9cd4ba3`](https://github.com/ArchiveBox/ArchiveBox/commit/9cd4ba38f068869495326693863d03dea5196de5) add new SNAPSHOTS_PER_PAGE pagination limit config - [`78463c2`](https://github.com/ArchiveBox/ArchiveBox/commit/78463c243a6da6243452c157ca868e4593566378) remove unused GIT_SHA config option ### 📊 Changes **65 files changed** (+1827 additions, -615 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+17 -12) 📝 `archivebox/cli/__init__.py` (+5 -1) 📝 `archivebox/cli/archivebox_add.py` (+12 -1) 📝 `archivebox/cli/archivebox_config.py` (+4 -1) 📝 `archivebox/cli/archivebox_init.py` (+6 -0) 📝 `archivebox/cli/archivebox_list.py` (+11 -11) 📝 `archivebox/cli/archivebox_oneshot.py` (+4 -1) 📝 `archivebox/cli/archivebox_remove.py` (+4 -1) 📝 `archivebox/cli/archivebox_server.py` (+13 -2) 📝 `archivebox/cli/archivebox_update.py` (+7 -3) ➕ `archivebox/cli/tests.py` (+227 -0) 📝 `archivebox/config.py` (+62 -10) 📝 `archivebox/core/admin.py` (+163 -71) 📝 `archivebox/core/forms.py` (+2 -1) ➕ `archivebox/core/migrations/0009_auto_20210216_1038.py` (+18 -0) ➕ `archivebox/core/migrations/0010_auto_20210216_1055.py` (+18 -0) ➕ `archivebox/core/migrations/0011_auto_20210216_1331.py` (+24 -0) ➕ `archivebox/core/migrations/0012_auto_20210216_1425.py` (+23 -0) ➕ `archivebox/core/migrations/0013_auto_20210218_0729.py` (+18 -0) ➕ `archivebox/core/migrations/0014_auto_20210218_0729.py` (+18 -0) _...and 45 more files_ </details> ### 📄 Description Moved to: https://github.com/ArchiveBox/ArchiveBox/pull/680 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 14:49:04 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ArchiveBox#1260
No description provided.