You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bundle file is available in the agent artifact in the workflow run linked above.
To create a pull request with the changes:
# Download the artifact from the workflow run
gh run download 27437146327 -n agent -D /tmp/agent-27437146327
# Fetch the bundle into a temporary ref, then update the local branch
git fetch /tmp/agent-27437146327/aw-docs-fix-changelog-and-dependencies-rand-security.bundle refs/heads/docs/fix-changelog-and-dependencies-rand-security:refs/bundles/create-pr-docs-fix-changelog-and-dependencies-rand-security-ddbbe41eb0af1a76-bce9c7df
git update-ref refs/heads/docs/fix-changelog-and-dependencies-rand-security-ddbbe41eb0af1a76 refs/bundles/create-pr-docs-fix-changelog-and-dependencies-rand-security-ddbbe41eb0af1a76-bce9c7df
git checkout docs/fix-changelog-and-dependencies-rand-security-ddbbe41eb0af1a76
# Ensure the working tree matches the updated branch
git reset --hard
# Remove the temporary bundle ref
git update-ref -d refs/bundles/create-pr-docs-fix-changelog-and-dependencies-rand-security-ddbbe41eb0af1a76-bce9c7df
# Push the branch to origin
git push origin docs/fix-changelog-and-dependencies-rand-security-ddbbe41eb0af1a76
# Create the pull request
gh pr create --title 'docs: fix CHANGELOG conflict marker and document rand security fix' --base main --head docs/fix-changelog-and-dependencies-rand-security-ddbbe41eb0af1a76 --repo zircote/adrscope
Caution
Protected files were modified in this change.
This pull request is in
request_reviewmode and requires explicit human scrutiny before merge.Protected files:
CHANGELOG.mdSummary
Two documentation issues found after the
fix(security): update rand to 0.9.3 (RUSTSEC-2026-0097)commit:1. Leftover merge conflict marker in
CHANGELOG.mdA
>>>>>>> 28aebca (feat(release): adopt attested delivery pipeline)conflict marker was left unresolved in the[Unreleased]section. Removed.2. Security fix not recorded in changelog or dependency reference
The
randcrate was updated (transitively viaproptest) to remediate [RUSTSEC-2026-0097]((rustsec.org/redacted), but no changelog entry existed.Changes
CHANGELOG.md: Remove stale>>>>>>>conflict marker; add### Securityentry forrand0.9.4 / RUSTSEC-2026-0097.docs/dependencies.md:randunder a new Transitive Dev Dependencies section (pulled in byproptest).randand its sub-crates underproptest.Add this agentic workflows to your repo
To install this agentic workflow, run
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download bundle artifact
The bundle file is available in the
agentartifact in the workflow run linked above.To create a pull request with the changes: