From 2b3065b79a183df8ed903e08f5e3177338109ec0 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 1 Jun 2026 04:07:42 -0700 Subject: [PATCH] release: archivebox 0.9.34rc5 --- Dockerfile | 6 +++++- etc/package.json | 2 +- pyproject.toml | 8 ++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 47562ec7..4726e4c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -139,7 +139,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=apt-$TARGETARCH$T # 1. packaging dependencies apt-transport-https ca-certificates apt-utils gnupg2 curl wget \ # 2. docker and init system dependencies - zlib1g-dev dumb-init gosu cron unzip grep dnsutils git python3.12-venv \ + zlib1g-dev dumb-init gosu cron unzip grep dnsutils git python3.12-venv default-jre-headless \ # 3. frivolous CLI helpers to make debugging failed archiving easier tree nano iputils-ping \ # nano iputils-ping dnsutils htop procps jq yq @@ -319,6 +319,10 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=apt-$TARGETARCH$T abxpkg install --no-cache --install-timeout=600 --binproviders=playwright --bin-dir="$LIB_DIR/env/bin" chromium; \ fi \ && TIMEOUT=600 PUID=0 PGID=0 abx-dl plugins --install \ + && mkdir -p "$LIB_DIR/env/bin" \ + && ln -sf "$(command -v node)" "$LIB_DIR/env/bin/node" \ + && ln -sf "$(command -v npm)" "$LIB_DIR/env/bin/npm" \ + && ln -sf "$(command -v java)" "$LIB_DIR/env/bin/java" \ && find "$LIB_DIR" -type d -name __pycache__ -prune -exec rm -rf {} + \ && find "$LIB_DIR" -type f \( -name '*.pyc' -o -name '*.pyo' \) -delete \ && rm -rf "$LIB_DIR/personas" "$LIB_DIR/chrome_profile" /opt/archivebox/lib-layer \ diff --git a/etc/package.json b/etc/package.json index f90fa5c4..b0f9e483 100644 --- a/etc/package.json +++ b/etc/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.9.34rc4", + "version": "0.9.34rc5", "repository": "github:ArchiveBox/ArchiveBox", "license": "MIT", "dependencies": { diff --git a/pyproject.toml b/pyproject.toml index ceea28da..33aea1ef 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "archivebox" -version = "0.9.34rc4" +version = "0.9.34rc5" 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.8", # EventBus API - "abxpkg>=1.11.118", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm - "abx-plugins>=1.11.121", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring - "abx-dl>=1.11.121", # shared ArchiveBox downloader package with blocking install preflight + "abxpkg>=1.11.119", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm + "abx-plugins>=1.11.122", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring + "abx-dl>=1.11.122", # 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 ]