mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-25 17:16:00 +03:00
[GH-ISSUE #1502] Bug: SingleFile method fail (run forever) with new Chromium versions (121.0.6167.139-1~deb12u1) on Debian 12 #884
Labels
No labels
expected: maybe someday
expected: next release
expected: release after next
expected: unlikely unless contributed
good first ticket
help wanted
pull-request
scope: all users
scope: windows users
size: easy
size: hard
size: medium
size: medium
status: backlog
status: blocked
status: done
status: idea-phase
status: needs followup
status: wip
status: wontfix
touches: API/CLI/Spec
touches: configuration
touches: data/schema/architecture
touches: dependencies/packaging
touches: docs
touches: js
touches: views/replayers/html/css
why: correctness
why: functionality
why: performance
why: security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ArchiveBox#884
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @codeurimpulsif on GitHub (Aug 30, 2024).
Original GitHub issue: https://github.com/ArchiveBox/ArchiveBox/issues/1502
Describe the bug
SingleFile method fail with new Chromium versions. The issue is here since less than 2 month I think.
I'm on a Debian 12.6 (aarch64) with Chromium version
128.0.6613.84-1~deb12u1.If I downgrade Chromium to version
121.0.6167.139-1~deb12u1everything works as expected.So maybe something changed in Chromium causing this issue.
Steps to reproduce
128.0.6613.84-1~deb12u1chromium(andchromium-commonof course) package to version121.0.6167.139-1~deb12u1Screenshots or log output
The
errors.logdon't show anything.ArchiveBox version
@pirate commented on GitHub (Aug 30, 2024):
Thanks for reporting.
We are using an older version of singlefile (1.1.x) that is no longer supported, it's likely fixed in their more recent 2.x.x releases.
The reason we haven't already updated to 2.x.x. is because single-file-cli switched from using node to deno, which is a big change that broke some stuff.
I actually wrote an entire Python packaging library to improve our runtime dependency install system (what
archivebox setupruns): https://github.com/ArchiveBox/pydantic-pkgrIf the old singlefile is now failing that means I now have added urgency to finish this work!
@pirate commented on GitHub (Aug 30, 2024):
Actually I noticed in your log that you're using an even older version of singe-file instead of the latest known good version
1.1.54. You should try updating to a slightly newer version first:@codeurimpulsif commented on GitHub (Aug 30, 2024):
Oh you're right, I forgot to update node dependencies!
Running
archivebox setupagain fix the issue with Chromium128.0.6613.84-1~deb12u1.Thanks for your help.
Feel free to close this issue if it's not relevant anymore.