bulk PR to fix CI and cherrypick other improvements#960
Merged
augustuen merged 5 commits intoJul 4, 2026
Conversation
The scheduled sync fails at "Fetch repositories" with "fatal: shallow file has changed since we read it": checkout uses fetch-depth 50 (shallow), then the Jackett fetch rewrites .git/shallow and the subsequent origin --depth fetch reads the changed shallow file and aborts. Newer git in actions/checkout@v6 turned this latent race into a hard failure. Use a full checkout (fetch-depth 0) and drop the redundant --depth on the origin re-fetch; the Jackett fetch stays bounded at --depth 50.
…ates Updates the requirements on [jsonschema](https://github.com/python-jsonschema/jsonschema) and [pyyaml](https://github.com/yaml/pyyaml) to permit the latest version. Updates `jsonschema` to 4.26.0 - [Release notes](https://github.com/python-jsonschema/jsonschema/releases) - [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst) - [Commits](python-jsonschema/jsonschema@v4.0.0...v4.26.0) Updates `pyyaml` to 6.0.3 - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/6.0.3/CHANGES) - [Commits](yaml/pyyaml@6.0...6.0.3) --- updated-dependencies: - dependency-name: jsonschema dependency-version: 4.26.0 dependency-type: direct:production dependency-group: python-deps - dependency-name: pyyaml dependency-version: 6.0.3 dependency-type: direct:production dependency-group: python-deps ... Signed-off-by: dependabot[bot] <support@github.com> (cherry picked from commit cf5fb77)
…arr#898) Squashed net change from Prowlarr#898, authored by jcarr710 <Jcarr4878@gmail.com>.
…v2.sh (Prowlarr#879) Squashed net change from Prowlarr#879, authored by Pavel <naxa@nextmail.ru>.
Confine the CLI-provided definitions directory to the working tree (realpath + containment check) before any filesystem glob, so a crafted argument cannot escape into arbitrary directories.
390e167 to
559369a
Compare
|
augustuen
approved these changes
Jul 4, 2026
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.



Bundles a CI fix for the broken scheduled sync plus a few stalled-but-worthwhile community PRs.
CI fix —
indexer-sync.ymlThe scheduled Indexer Sync Automation is failing at Fetch repositories with
fatal: shallow file has changed since we read it. The checkout is shallow (fetch-depth: 50); the Jackett fetch rewrites.git/shallow, then theorigin--depth=50re-fetch reads the changed shallow file and aborts. Newer git inactions/checkout@v6turned this latent race into a hard failure (see run 28633678364).Fix: full checkout (
fetch-depth: 0) and drop the redundant--depthon the origin re-fetch; the Jackett fetch stays bounded at--depth 50.Cherry-picked community PRs (original authors credited)
Improve docs for contributors + Fix error in the script indexer-sync-v2.sh #879 (@naXa777) — fix an error in
indexer-sync-v2.sh+ improve contributor docs (was maintainer-approved).Fix: wire up --verbose flag to gate PASS output in validate.py #898 (@jcarr710) — wire up the
--verboseflag to gate PASS output invalidate.py.chore(deps): bump the python-deps group across 1 directory with 2 updates #878 (dependabot) — bump the python-deps group.
Closes Improve docs for contributors + Fix error in the script indexer-sync-v2.sh #879
Closes Fix: wire up --verbose flag to gate PASS output in validate.py #898
Closes chore(deps): bump the python-deps group across 1 directory with 2 updates #878