[PR #636] [MERGED] v0.5.4 Release #1256

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

📋 Pull Request Information

Original PR: https://github.com/ArchiveBox/ArchiveBox/pull/636
Author: @pirate
Created: 1/30/2021
Status: Merged
Merged: 2/1/2021
Merged by: @pirate

Base: masterHead: dev


📝 Commits (10+)

  • beb0502 Publish tag to Docker Hub
  • 8cdf43e Fix tag logic
  • 8e2270e Merge pull request #610 from mikaelf/patch-1
  • 40ce95a also tag image with short version
  • b5ce5b3 fix apt install without update in deb build
  • a3008c8 fix migration failing due to null cmd_versions in older archives
  • 5250989 split up release script into subscripts
  • f50e49f require version info in all tickets
  • ab6fdb8 Update CONTRIBUTING.md
  • c5b7d9f Publish, minor, & major version to DockerHub

📊 Changes

80 files changed (+1128 additions, -928 deletions)

View changed files

📝 .github/CONTRIBUTING.md (+7 -5)
📝 .github/ISSUE_TEMPLATE/bug_report.md (+9 -6)
📝 .github/ISSUE_TEMPLATE/feature_request.md (+1 -1)
.github/workflows/codeql-analysis.yml (+32 -0)
📝 .github/workflows/docker.yml (+22 -17)
📝 .github/workflows/pip.yml (+1 -1)
📝 README.md (+293 -113)
📝 archivebox/cli/archivebox_schedule.py (+1 -0)
📝 archivebox/cli/archivebox_server.py (+6 -0)
📝 archivebox/config.py (+19 -16)
📝 archivebox/config_stubs.py (+0 -1)
📝 archivebox/core/admin.py (+16 -4)
📝 archivebox/core/forms.py (+22 -0)
📝 archivebox/core/settings.py (+6 -6)
📝 archivebox/core/templatetags/core_tags.py (+1 -1)
📝 archivebox/core/urls.py (+38 -5)
📝 archivebox/core/views.py (+10 -9)
📝 archivebox/extractors/__init__.py (+1 -1)
📝 archivebox/extractors/archive_org.py (+3 -3)
📝 archivebox/extractors/dom.py (+5 -5)

...and 60 more files

📄 Description

Thank you contributors who helped with this release!
@cdvv7788, @jdcaballerov, @thedanbob, @aggroskater, @mAAdhaTTah, @mario-campos, @mikaelf

  • fix migration failing due to null cmd_versions in older archives a3008c8
  • Publish, minor, & major version to DockerHub and add set up CodeQL codeql-analysis.yml c5b7d9f, bbb6cc8
  • fix DATABASE_NAME posixpath, and dependencies dict bug 02bdb3b, 5c7842f
  • use relative imports for .util to fix windows import clash 72e2c7b
  • fix COOKIES_FILE config param breaking in wget ef7711f
  • Refactor should_save_extractor methods to accept overwrite parameter 5420903
  • Fix issue #617 by using mark_safe in combination with format_html … 1989275
  • make permission chowning on docker start less fancy, respect PUID/PGID #635
  • add createsuperuser flag to server command 39ec77e
  • fix files icons styling and use the db exclusively for rendering them, instead of filesystem f004058, 7d8fe66, 5c54bcc, 534ead2
  • limit youtubedl download size to 750m and stop splitting out audio files 3227f54
  • also search url, timestamp, tags on public index 8a4edb4
  • cleanup template layout in filesystem,
  • fix trailing slash problems and wget not detecting download path 9764a8e
  • add response status code to headers.json c089501
  • fix singlefile path used for sonic 24e2493

🔄 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/636 **Author:** [@pirate](https://github.com/pirate) **Created:** 1/30/2021 **Status:** ✅ Merged **Merged:** 2/1/2021 **Merged by:** [@pirate](https://github.com/pirate) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`beb0502`](https://github.com/ArchiveBox/ArchiveBox/commit/beb0502fb47196e13910405e48da76d84cbcae48) Publish tag to Docker Hub - [`8cdf43e`](https://github.com/ArchiveBox/ArchiveBox/commit/8cdf43ec378a0a7928c04b821c6180eccb59c6cd) Fix tag logic - [`8e2270e`](https://github.com/ArchiveBox/ArchiveBox/commit/8e2270e21b2c13ddd21bda569b459750221da1a7) Merge pull request #610 from mikaelf/patch-1 - [`40ce95a`](https://github.com/ArchiveBox/ArchiveBox/commit/40ce95a9e4aa0813a33b42d23fa788f92f033b5d) also tag image with short version - [`b5ce5b3`](https://github.com/ArchiveBox/ArchiveBox/commit/b5ce5b35a85aa1fa6c03869811c8dbef383f7f12) fix apt install without update in deb build - [`a3008c8`](https://github.com/ArchiveBox/ArchiveBox/commit/a3008c8189d9eb798a8c11f203d6e4700876ea32) fix migration failing due to null cmd_versions in older archives - [`5250989`](https://github.com/ArchiveBox/ArchiveBox/commit/5250989e326de83803933f795596dee1f3921af2) split up release script into subscripts - [`f50e49f`](https://github.com/ArchiveBox/ArchiveBox/commit/f50e49fa92d42cb13a05889da1adea6d726988f7) require version info in all tickets - [`ab6fdb8`](https://github.com/ArchiveBox/ArchiveBox/commit/ab6fdb83be4cef502720d073d57c3ace87d08233) Update CONTRIBUTING.md - [`c5b7d9f`](https://github.com/ArchiveBox/ArchiveBox/commit/c5b7d9f2bf527c4ae42dc462c85f7974be868738) Publish, minor, & major version to DockerHub ### 📊 Changes **80 files changed** (+1128 additions, -928 deletions) <details> <summary>View changed files</summary> 📝 `.github/CONTRIBUTING.md` (+7 -5) 📝 `.github/ISSUE_TEMPLATE/bug_report.md` (+9 -6) 📝 `.github/ISSUE_TEMPLATE/feature_request.md` (+1 -1) ➕ `.github/workflows/codeql-analysis.yml` (+32 -0) 📝 `.github/workflows/docker.yml` (+22 -17) 📝 `.github/workflows/pip.yml` (+1 -1) 📝 `README.md` (+293 -113) 📝 `archivebox/cli/archivebox_schedule.py` (+1 -0) 📝 `archivebox/cli/archivebox_server.py` (+6 -0) 📝 `archivebox/config.py` (+19 -16) 📝 `archivebox/config_stubs.py` (+0 -1) 📝 `archivebox/core/admin.py` (+16 -4) 📝 `archivebox/core/forms.py` (+22 -0) 📝 `archivebox/core/settings.py` (+6 -6) 📝 `archivebox/core/templatetags/core_tags.py` (+1 -1) 📝 `archivebox/core/urls.py` (+38 -5) 📝 `archivebox/core/views.py` (+10 -9) 📝 `archivebox/extractors/__init__.py` (+1 -1) 📝 `archivebox/extractors/archive_org.py` (+3 -3) 📝 `archivebox/extractors/dom.py` (+5 -5) _...and 60 more files_ </details> ### 📄 Description Thank you contributors who helped with this release! @cdvv7788, @jdcaballerov, @thedanbob, @aggroskater, @mAAdhaTTah, @mario-campos, @mikaelf - fix migration failing due to null cmd_versions in older archives a3008c8 - Publish, minor, & major version to DockerHub and add set up CodeQL codeql-analysis.yml c5b7d9f, bbb6cc8 - fix DATABASE_NAME posixpath, and dependencies dict bug 02bdb3b, 5c7842f - use relative imports for `.util` to fix windows import clash 72e2c7b - fix `COOKIES_FILE` config param breaking in wget ef7711f - Refactor `should_save_extractor` methods to accept `overwrite` parameter 5420903 - Fix issue #617 by using mark_safe in combination with format_html … 1989275 - make permission chowning on docker start less fancy, respect PUID/PGID #635 - add createsuperuser flag to server command 39ec77e - fix files icons styling and use the db exclusively for rendering them, instead of filesystem f004058, 7d8fe66, 5c54bcc, 534ead2 - limit youtubedl download size to 750m and stop splitting out audio files 3227f54 - also search url, timestamp, tags on public index 8a4edb4 - cleanup template layout in filesystem, - fix trailing slash problems and wget not detecting download path 9764a8e - add response status code to headers.json c089501 - fix singlefile path used for sonic 24e2493 --- <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:03 +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#1256
No description provided.