release: archivebox 0.9.32rc6

This commit is contained in:
Nick Sweeting 2026-05-27 03:13:58 -07:00
parent 559e71e72a
commit fa5a1b4e9b
No known key found for this signature in database
4 changed files with 9 additions and 6 deletions

View File

@ -267,6 +267,7 @@ RUN --mount=type=bind,source=pyproject.toml,target=/app/pyproject.toml \
&& apt-get update -qq \
&& apt-get install -qq -y --no-install-recommends build-essential gcc python3-dev \
&& uv sync \
--refresh \
--no-dev \
--inexact \
--all-extras \

View File

@ -1463,14 +1463,12 @@ def live_progress_view(request):
(
ArchiveResult.StatusChoices.QUEUED,
ArchiveResult.StatusChoices.STARTED,
ArchiveResult.StatusChoices.SUCCEEDED,
ArchiveResult.StatusChoices.FAILED,
),
)
archiveresults_pending = archiveresult_status_counts.get(ArchiveResult.StatusChoices.QUEUED, 0)
archiveresults_started = archiveresult_status_counts.get(ArchiveResult.StatusChoices.STARTED, 0)
archiveresults_succeeded = archiveresult_status_counts.get(ArchiveResult.StatusChoices.SUCCEEDED, 0)
archiveresults_failed = archiveresult_status_counts.get(ArchiveResult.StatusChoices.FAILED, 0)
archiveresults_succeeded = 0
archiveresults_failed = 0
# Build hierarchical active crawls with nested snapshots and archive results
@ -1604,6 +1602,10 @@ def live_progress_view(request):
)
for archiveresult in displayed_archiveresults:
archiveresults_by_snapshot.setdefault(str(archiveresult.snapshot_id), []).append(archiveresult)
if archiveresult.status == ArchiveResult.StatusChoices.SUCCEEDED:
archiveresults_succeeded += 1
elif archiveresult.status == ArchiveResult.StatusChoices.FAILED:
archiveresults_failed += 1
def find_snapshot_for_process(proc_pwd: Path) -> Snapshot | None:
for path_part in reversed(proc_pwd.parts):

View File

@ -1,6 +1,6 @@
{
"name": "archivebox",
"version": "0.9.32rc5",
"version": "0.9.32rc6",
"repository": "github:ArchiveBox/ArchiveBox",
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
[project]
name = "archivebox"
version = "0.9.32rc5"
version = "0.9.32rc6"
requires-python = ">=3.13"
description = "Self-hosted internet archiving solution."
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]