chore(release): repoint dig-store release source to DIG-Network/digs (#764) - #43
Merged
Conversation
…(#764) The dig-store GitHub repo was renamed digstore -> dig-store (#703) and is renamed again dig-store -> digs (#764), ahead of #1247 reclaiming the dig-store repo name for an unrelated crate -- the moment that new repo is created the old->new GitHub redirect dies, breaking every stale DIG-Network/dig-store download URL this installer builds at runtime. Repoints Repo::dig_store()/dig_store_legacy()/digs() to name "digs" while keeping every asset stem (dig-store/digstore/digs) unchanged -- only the GitHub repo location moved, not the CLI/binary name. Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
Part of the F2d reference sweep (#764): the GitHub repo
DIG-Network/dig-storeis being renamed toDIG-Network/digs, ahead of #1247 creating a NEW, unrelatedDIG-Network/dig-storerepo -- the moment that repo exists, GitHub's old->new redirect dies, breaking every staleDIG-Network/dig-storedownload URL. This installer builds those URLs at runtime (Repo::binary_url/latest_release_api), so it is the highest-priority fix (real-user installer breakage).Repo::dig_store()/Repo::dig_store_legacy()/Repo::digs()now target repoDIG-Network/digs(wasdig-store).dig-store,digstore,digs) -- this is a repo-location move only, not a CLI/binary rename (that's tracked separately, F2b).Blast radius checked
Repo::dig_store()/dig_store_legacy()/digs()are consumed only within this crate (release.rs,update.rs,lib.rs-- confirmed via grep, no external consumers of these constructors). No wire/API contract changes; pure constant-value edit.Test plan
cargo build --libcleancargo fmt --all -- --checkcleancargo clippy --all-targets --all-features -- -D warningscleancargo test --lib: 546 passed, 1 pre-existing unrelated failure (secure::tests::windows_verify_runs_on_a_program_files_dir_with_appcontainer_aces-- confirmed failing identically onmainpre-change, a local Windows ACL/Get-Acl environment issue, not caused by this diff)Co-Authored-By: Claude noreply@anthropic.com