build(deps): bump actions/setup-node from 4 to 6#5
Closed
dependabot[bot] wants to merge 61 commits into
Closed
Conversation
added 30 commits
March 28, 2026 14:10
Add optional proxy_url field to ServerConfig (socks5://[user:pass@]host:port). When set, NNTP connections route through the SOCKS5 proxy via tokio-socks, with TLS wrapping applied over the tunneled connection.
Add max-width constraint to history name column to prevent long Usenet filenames from pushing the table wider than its container. Also update README with benchmarks, feature table, and streamlined docs.
- Handle 481/482 as Auth errors in USER, PASS, ARTICLE, STAT, GROUP, XOVER, BODY handlers and ARTICLE pipeline. Previously 482 fell to catch-all producing synthetic error text providers don't recognise. - Add Auth to pipeline fatal error list so pipelines abort on 481/482. - Separate 502 from 482 in USER handler (was grouped incorrectly).
Replace local crates/nzb-nntp with the standalone crate from github.com/AusAgentSmith/nzb-nntp. nzb-core re-exports ServerConfig and Article from nzb-nntp so all consuming code is unchanged.
This reverts commit 85b9f75.
This reverts commit d0a7d42.
…ation With pipelining=20, CPU-bound yEnc decode+assemble work between yield points starves the tokio runtime, preventing the HTTP server from accepting connections (Recv-Q 538 observed).
Database (migration v5): - groups table with subscription and scan watermark - headers table with FTS5 full-text search - Auto-sync triggers for FTS index Models: - GroupRow, HeaderRow, ThreadSummary, ThreadArticle - MarkReadInput, DownloadSelectedInput API endpoints (15 new routes under /api/groups): - Group list/get/subscribe/unsubscribe/refresh (LIST ACTIVE) - Group status (new available count) - Header list with FTS5 search, fetch (background XOVER) - Thread list and detail view - Mark read (bulk + all) - Download selected (generates NZB → adds to queue) - Article fetch from NNTP Plus: GUI mockup (mockup.html) and uplift plan
Frontend: - Angular 21 with Material, zoneless change detection - Tab-based layout: Queue, Groups, History, RSS, Settings, Logs - Top bar with speed display, pause/resume - Status bar with connection and disk info - Queue view with job progress, speed, ETA, pause/resume/delete - Stub components for remaining tabs - Dark theme matching mockup Backend: - rust-embed now points to Angular build output - SPA fallback serves index.html for client-side routing - Dev proxy config for ng serve
Groups view features: - Sidebar with subscribed groups and unread badges - Header list with column headers, checkbox selection - FTS5 search via toolbar search box - Article preview pane (click to preview, auto-mark read) - "Download Selected" button: select articles → NZB → queue - "Fetch Headers" button with progress indication - "Mark All Read" button - Group browser dialog for subscribing to new groups - "Refresh from Server" to fetch LIST ACTIVE
History: completed/failed downloads with retry, clear all Settings: server list with test/delete, speed limit config Logs: real-time log polling with auto-scroll, color-coded levels RSS: feed list, download rules, recent items with one-click download All tabs connected to existing rustnzbd API endpoints. All 6 tabs now functional matching the mockup design.
Playwright (15 tests): - Health, app load, tab navigation, status bar - Queue, groups, headers, search, checkbox selection - Settings, history, logs tab loading - API endpoint tests Dockerfile: Add Node.js for Angular build
Fixes CI where Node.js is unavailable - rust-embed needs at least one file in the folder to compile.
Port fix from Arz commit 4e2ada. The queue manager had a TOCTOU race in add_job() and start_next_queued() — the active download count was checked under a lock, released, then a new download started under a separate lock. Concurrent callers could both pass the limit check, causing all queued downloads to start simultaneously. Fix: new claim_next_download_slot() atomically checks the count and marks a queued job as Downloading under a single lock acquisition. add_job() now always inserts as Queued first, then delegates to start_next_queued(). resume_job() also marks Downloading atomically. start_download() renamed to launch_download() — reads from existing map entry instead of taking ownership.
Fixes Tauri desktop build which compiles nzb-web as a dependency without running the workspace root build.rs.
Drop direct nzb-nntp dependency from nzb-web, root crate, and tests. All NNTP types are now accessed through nzb-core::nzb_nntp, enabled by the upstream nzb-core re-export. Adds local patch for nzb-core to pick up the re-export change.
Drop nzb-core as a direct dependency from nzb-web. All nzb-core types accessed via nzb_postproc::nzb_core re-export. Adds local patch for nzb-postproc to pick up the re-export change.
Drop direct nzb-core dependency from root binary. All access goes through nzb-web's public nzb_core re-export. Test files updated to match.
All nzb crate access goes through nzb-web re-exports. Root binary dep tree now shows only nzb-web.
Remove vendored crates/nzb-nntp and crates/nzb-web, replacing them with shared libraries from ~/Working/libs/. App-specific files (handlers.rs, server.rs, group_handlers.rs) are moved to src/ with imports updated to reference nzb_web:: for engine modules. - Point all nzb-* workspace deps to shared lib paths - Remove [patch] sections (no longer needed with path deps) - Add groups-db feature forwarding through nzb-postproc and nzb-web - Add with_db() method to shared QueueManager for direct DB access - Add handler/server dependencies (axum, rust-embed, etc.) to main package
Update all crate deps to latest compatible versions. Bump nzb-web git tag from v0.1.0 to v0.2.3 to pick up recent fixes. Update CLAUDE.md to reflect current repo layout (no local crates/ dir, external git deps).
Pipelined download workers could spin forever when all remaining articles had the current server in tried_servers, starving Tokio threads and making the HTTP server unresponsive. Also fixes double-counting of completed files on article requeue.
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 6. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Author
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
AusAgentSmith
pushed a commit
that referenced
this pull request
Apr 9, 2026
…eps/forgejo-crate-updates into main
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps actions/setup-node from 4 to 6.
Release notes
Sourced from actions/setup-node's releases.
... (truncated)
Commits
53b8394Bump minimatch from 3.1.2 to 3.1.5 (#1498)54045abScope test lockfiles by package manager and update cache tests (#1495)c882bffReplace uuid with crypto.randomUUID() (#1378)774c1d6feat(node-version-file): support parsingdevEnginesfield (#1283)efcb663fix: remove hardcoded bearer (#1467)d02c89dFix npm audit issues (#1491)6044e13Docs: bump actions/checkout from v5 to v6 (#1468)8e49463Fix README typo (#1226)621ac41README.md: bump to latest released checkout version v6 (#1446)2951748Bump@actions/cacheto v5.0.1 (#1449)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)