Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump base64 from 0.21.5 to 0.21.6 #892

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/supply-chain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Vet Dependencies
runs-on: ubuntu-latest
env:
CARGO_VET_VERSION: 0.8.0
CARGO_VET_VERSION: 0.9.0
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ thiserror = "1.0"

[dev-dependencies]
assert_matches = "1.5.0"
base64 = "0.21.5"
base64 = "0.21.6"
cfg-if = "1.0.0"
criterion = "0.5"
fixed-macro = "1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion binaries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MPL-2.0"
repository = "https://github.com/divviup/libprio-rs"

[dependencies]
base64 = "0.21.5"
base64 = "0.21.6"
fixed = "1.23"
fixed-macro = "1.2.0"
prio = { path = "..", features = ["prio2", "experimental"] }
6 changes: 6 additions & 0 deletions supply-chain/audits.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ who = "David Cook <dcook@divviup.org>"
criteria = "safe-to-run"
delta = "0.21.4 -> 0.21.5"

[[audits.base64]]
who = "Brandon Pitman <bran@bran.land>"
criteria = "safe-to-run"
delta = "0.21.5 -> 0.21.6"
notes = "sourcegraph-based diff did not see the v0.21.6 tag; I retrieved a local copy of the repo and used that for diff'ing."
Copy link
Collaborator

@divergentdave divergentdave Jan 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI, the sourcegraph URLs are pulling from crates.io archives, rather than from VCS. It looks like it's caught up now: https://sourcegraph.com/crates/base64/-/compare/v0.21.5...v0.21.6?visible=9. If you run into issues in the future, there's also cargo vet diff --mode=local, which will unzip them locally and execute git diff --no-index.


[[audits.block-buffer]]
who = "David Cook <dcook@divviup.org>"
criteria = "safe-to-deploy"
Expand Down
2 changes: 1 addition & 1 deletion supply-chain/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# cargo-vet config file

[cargo-vet]
version = "0.8"
version = "0.9"

[imports.bytecode-alliance]
url = "https://raw.githubusercontent.com/bytecodealliance/wasmtime/main/supply-chain/audits.toml"
Expand Down