release: archivebox 0.9.34rc62

This commit is contained in:
Nick Sweeting 2026-06-06 23:19:13 -07:00
parent f9b13e3828
commit 36e0e3e2b6
No known key found for this signature in database
3 changed files with 7 additions and 6 deletions

View File

@ -38,7 +38,7 @@ ENV TZ=UTC \
npm_config_loglevel=error
ENV PYTHON_VERSION=3.13 \
NODE_VERSION=22.22.3
NODE_VERSION=24
ENV ARCHIVEBOX_USER=archivebox \
DEFAULT_PUID=911 \
@ -168,6 +168,7 @@ COPY --from=archivebox-builder /app /app
COPY --from=archivebox-builder /VERSION.txt /VERSION.txt
RUN echo "[*] Setting up $ARCHIVEBOX_USER user uid=${DEFAULT_PUID}..." \
&& ln -sf /venv/bin/archivebox /usr/local/bin/archivebox \
&& getent group "$ARCHIVEBOX_USER" >/dev/null || groupadd --system "$ARCHIVEBOX_USER" \
&& id -u "$ARCHIVEBOX_USER" >/dev/null 2>&1 || useradd --system --create-home --gid "$ARCHIVEBOX_USER" --groups audio,video "$ARCHIVEBOX_USER" \
&& usermod --append --groups audio,video "$ARCHIVEBOX_USER" \

View File

@ -1,6 +1,6 @@
{
"name": "archivebox",
"version": "0.9.34rc61",
"version": "0.9.34rc62",
"repository": "github:ArchiveBox/ArchiveBox",
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
[project]
name = "archivebox"
version = "0.9.34rc61"
version = "0.9.34rc62"
requires-python = ">=3.13"
description = "Self-hosted internet archiving solution."
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]
@ -79,9 +79,9 @@ dependencies = [
### Extractor dependencies (optional binaries detected at runtime via shutil.which)
### Binary/Package Management
"abxbus==2.5.10", # EventBus API
"abxpkg>=1.11.177", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm
"abx-plugins>=1.11.181", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring
"abx-dl>=1.11.181", # shared ArchiveBox downloader package with blocking install preflight
"abxpkg>=1.11.178", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm
"abx-plugins>=1.11.182", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring
"abx-dl>=1.11.182", # shared ArchiveBox downloader package with blocking install preflight
### UUID7 backport for Python <3.14
"uuid7>=0.1.0; python_version < '3.14'", # provides the uuid_extensions module on Python 3.13
]