An open index of dependabot pull requests across open source projects.

Bump the rust-dependencies group across 1 directory with 16 updates

Closed
Number: #2887
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 1
Created: July 21, 2025 at 06:35 PM UTC
(11 months ago)
Updated: July 23, 2025 at 08:41 PM UTC
(11 months ago)
Closed: July 23, 2025 at 08:41 PM UTC
(11 months ago)
Time to Close: 2 days
Labels:
rust dependencies
Description:

Bumps the rust-dependencies group with 16 updates in the / directory:

Package From To
serde_json 1.0.140 1.0.141
object_store 0.12.2 0.12.3
rand 0.9.1 0.9.2
tracing-opentelemetry-instrumentation-sdk 0.29.0 0.29.1
aws-config 1.8.1 1.8.2
aws-sdk-bedrockruntime 1.95.0 1.96.0
strum 0.27.1 0.27.2
strum_macros 0.27.1 0.27.2
aws-sdk-sagemakerruntime 1.76.0 1.77.0
init-tracing-opentelemetry 0.29.0 0.30.0
google-cloud-auth 0.21.0 0.22.1
aws-sdk-s3 1.96.0 1.97.0
aws-credential-types 1.2.3 1.2.4
napi 2.16.17 3.1.1
napi-derive 2.16.13 3.1.0
rcgen 0.14.2 0.14.3

Updates serde_json from 1.0.140 to 1.0.141

Release notes

Sourced from serde_json's releases.

v1.0.141

Commits
  • 6843c36 Release 1.0.141
  • 6e2c210 Touch up PR 1273
  • 623d9b4 Merge pull request #1273 from conradludgate/optimise-string-escaping
  • de70b7d use unreachable_unchecked for escape table. use a second match to roundtrip E...
  • f2d940d replace start index with bytes slice reference
  • cd55b5a Ignore mismatched_lifetime_syntaxes lint
  • c1826eb Pin nightly toolchain used for miri job
  • 8a56cfa Merge pull request #1248 from jimmycathy/master
  • af3d80d chore: fix typo
  • See full diff in compare view

Updates object_store from 0.12.2 to 0.12.3

Changelog

Sourced from object_store's changelog.

Historical Changelog

Commits

Updates rand from 0.9.1 to 0.9.2

Changelog

Sourced from rand's changelog.

[0.9.2 — 2025-07-20]

Deprecated

  • Deprecate rand::rngs::mock module and StepRng generator (#1634)

Additions

  • Enable WeightedIndex<usize> (de)serialization (#1646)
Commits

Updates tracing-opentelemetry-instrumentation-sdk from 0.29.0 to 0.29.1

Release notes

Sourced from tracing-opentelemetry-instrumentation-sdk's releases.

tracing-opentelemetry-instrumentation-sdk-v0.29.1

Added

  • (deps) update opentelemetry 0.30 & tonic 0.13 (#240)
Commits
  • 3082361 chore: release
  • b76f7dd refactor: group subscriber layer construction
  • 0026a82 feat: add support for Opentelemetry Metrics (#249)
  • e83242d chore(deps): update stefanzweifel/git-auto-commit-action action to v6
  • f79e0cc refactor: move common grpc functions into a grpc module
  • See full diff in compare view

Updates aws-config from 1.8.1 to 1.8.2

Commits

Updates aws-sdk-bedrockruntime from 1.95.0 to 1.96.0

Commits

Updates strum from 0.27.1 to 0.27.2

Release notes

Sourced from strum's releases.

v0.27.2

What's Changed

New Contributors

Full Changelog: https://github.com/Peternator7/strum/compare/v0.27.1...v0.27.2

Changelog

Sourced from strum's changelog.

0.27.2

  • #141: Adding support for doc comments on EnumDiscriminants generated type.

    • The doc comment will be copied from the variant on the type itself.
  • #435:allow discriminants on empty enum.

  • #443: Change enum table callbacks to FnMut.

  • #444: Add #[automatically_derived] to the impls by @​dandedotdev in Peternator7/strum#444

    • This should make the linter less noisy with warnings in generated code.
  • #440: Implement a suffix attribute for serialization of enum variants.

    #[derive(strum::Display)]
    #[strum(suffix=".json")]
    #[strum(serialize_all="snake_case")]
    enum StorageConfiguration {
      PostgresProvider,
      S3StorageProvider,
      AzureStorageProvider,
    }
    

    fn main() { let response = SurveyResponse::Other("It was good".into()); println!("Loading configuration from: {}", StorageConfiguration::PostgresProvider); // prints: Loaded Configuration from: postgres_provider.json }

  • #446: Drop needless rustversion dependency.

Commits

Updates strum_macros from 0.27.1 to 0.27.2

Release notes

Sourced from strum_macros's releases.

v0.27.2

What's Changed

New Contributors

Full Changelog: https://github.com/Peternator7/strum/compare/v0.27.1...v0.27.2

Changelog

Sourced from strum_macros's changelog.

0.27.2

  • #141: Adding support for doc comments on EnumDiscriminants generated type.

    • The doc comment will be copied from the variant on the type itself.
  • #435:allow discriminants on empty enum.

  • #443: Change enum table callbacks to FnMut.

  • #444: Add #[automatically_derived] to the impls by @​dandedotdev in Peternator7/strum#444

    • This should make the linter less noisy with warnings in generated code.
  • #440: Implement a suffix attribute for serialization of enum variants.

    #[derive(strum::Display)]
    #[strum(suffix=".json")]
    #[strum(serialize_all="snake_case")]
    enum StorageConfiguration {
      PostgresProvider,
      S3StorageProvider,
      AzureStorageProvider,
    }
    

    fn main() { let response = SurveyResponse::Other("It was good".into()); println!("Loading configuration from: {}", StorageConfiguration::PostgresProvider); // prints: Loaded Configuration from: postgres_provider.json }

  • #446: Drop needless rustversion dependency.

Commits

Updates aws-sdk-sagemakerruntime from 1.76.0 to 1.77.0

Commits

Updates init-tracing-opentelemetry from 0.29.0 to 0.30.0

Release notes

Sourced from init-tracing-opentelemetry's releases.

init-tracing-opentelemetry-v0.30.0

Added

  • add support for Opentelemetry Metrics (#249)
Commits
  • 3082361 chore: release
  • b76f7dd refactor: group subscriber layer construction
  • 0026a82 feat: add support for Opentelemetry Metrics (#249)
  • e83242d chore(deps): update stefanzweifel/git-auto-commit-action action to v6
  • f79e0cc refactor: move common grpc functions into a grpc module
  • See full diff in compare view

Updates google-cloud-auth from 0.21.0 to 0.22.1

Commits

Updates aws-sdk-s3 from 1.96.0 to 1.97.0

Commits

Updates aws-credential-types from 1.2.3 to 1.2.4

Commits

Updates napi from 2.16.17 to 3.1.1

Release notes

Sourced from napi's releases.

napi-v3.1.1

Other

  • Revert "fix(napi): callback should be Fn rather than FnOnce" (#2791)

napi-derive-v3.1.0

Added

  • (napi) provide ScopedTask to resolve JsValue with lifetime (#2786)

Other

  • pin release-plz action

napi-v3.1.0

Added

  • (napi) provide ScopedTask to resolve JsValue with lifetime (#2786)

Other

  • (napi) add UnwindSafe and RefUnwindSafe back to AbortSignal and AsyncWorkPromise (#2789)
  • pin release-plz action

napi@3.0.0

NAPI-RS v3

https://napi.rs/blog/announce-v3

napi-derive@3.0.0-beta.12

What's Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi-derive@3.0.0-beta.11...napi-derive@3.0.0-beta.12

napi@3.0.0-beta.12

What's Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi@3.0.0-beta.11...napi@3.0.0-beta.12

... (truncated)

Commits
  • 63d536b chore(napi): release v3.1.1 (#2792)
  • b6f883a Revert "fix(napi): callback should be Fn rather than FnOnce" (#2791)
  • 78d7670 chore(release): publish
  • 0bf30cc ci: fix cargo registry token
  • 03805d1 chore: release (#2788)
  • 16dbf68 chore(napi): add UnwindSafe and RefUnwindSafe back to AbortSignal and AsyncWo...
  • 1ca2bad feat(napi): provide ScopedTask to resolve JsValue with lifetime (#2786)
  • c657665 ci: pin release-plz action
  • e12d905 ci: add release-crates job (#2787)
  • 9aff30f chore: dedupe lockfile
  • Additional commits viewable in compare view

Updates napi-derive from 2.16.13 to 3.1.0

Release notes

Sourced from napi-derive's releases.

napi-derive-v3.1.0

Added

  • (napi) provide ScopedTask to resolve JsValue with lifetime (#2786)

Other

  • pin release-plz action

napi-derive@3.0.0-beta.12

What's Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi-derive@3.0.0-beta.11...napi-derive@3.0.0-beta.12

napi-derive@3.0.0-beta.11

What's Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi-derive@3.0.0-beta.10...napi-derive@3.0.0-beta.11

napi-derive@3.0.0-beta.10

What's Changed

New Contributors

Full Changelog: https://github.com/napi-rs/napi-rs/compare/@​napi-rs/cli@​3.0.0-alpha.91...napi-derive@3.0.0-beta.10

napi-derive@3.0.0-beta.9

Version bump only

Full Changelog: https://github.com/napi-rs/napi-rs/compare/@​napi-rs/cli@​3.0.0-alpha.90...napi-derive@3.0.0-beta.9

napi-derive@3.0.0-beta.8

What's Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi-derive@3.0.0-beta.6...napi-derive@3.0.0-beta.8

napi-derive@3.0.0-beta.5

What's Changed

... (truncated)

Commits
  • 0bf30cc ci: fix cargo registry token
  • 03805d1 chore: release (#2788)
  • 16dbf68 chore(napi): add UnwindSafe and RefUnwindSafe back to AbortSignal and AsyncWo...
  • 1ca2bad feat(napi): provide ScopedTask to resolve JsValue with lifetime (#2786)
  • c657665 ci: pin release-plz action
  • e12d905 ci: add release-crates job (#2787)
  • 9aff30f chore: dedupe lockfile
  • 9765f62 refactor(cli): reuse buffer in @​napi-fs/wasm-time/fs (#2782)
  • dec4ffa chore(wasm-runtime): bump emnapi to 1.4.5 (#2783)
  • cdbf2bc chore(release): publish
  • Additional commits viewable in compare view

Updates rcgen from 0.14.2 to 0.14.3

Release notes

Sourced from rcgen's releases.

0.14.3

What's Changed

Commits
  • 620e219 Bump rcgen to 0.14.3
  • 13abad2 Fix regression in key usage purpose encoding
  • b2d5990 docs: fix typo in PKCS_RSA_SHA384 doc comment
  • See full diff in compare view

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

[!IMPORTANT]
Bumps 16 Rust dependencies across multiple files, including serde_json, object_store, rand, and others, to improve functionality and fix bugs.

  • Dependencies Updated:
    • serde_json updated to 1.0.141 in Cargo.toml and ui/app/utils/minijinja/Cargo.toml.
    • object_store updated to 0.12.3 in Cargo.toml.
    • rand updated to 0.9.2 in Cargo.toml and provider-proxy/Cargo.toml.
    • tracing-opentelemetry-instrumentation-sdk updated to 0.29.1 in Cargo.toml.
    • rcgen updated to 0.14.3 in provider-proxy/Cargo.toml.
    • napi updated to 3.1.1 and napi-derive to 3.1.0 in internal/tensorzero-node/Cargo.toml.
    • init-tracing-opentelemetry updated to 0.30.0 in tensorzero-core/Cargo.toml.
    • google-cloud-auth updated to 0.22.1 in tensorzero-core/Cargo.toml.
    • aws-sdk-s3 updated to 1.97.0 in tensorzero-core/Cargo.toml.
    • aws-credential-types updated to 1.2.4 in tensorzero-core/Cargo.toml.
    • strum and strum_macros updated to 0.27.2 in tensorzero-core/Cargo.toml.
    • aws-sdk-bedrockruntime updated to 1.96.0 in tensorzero-core/Cargo.toml.
    • aws-sdk-sagemakerruntime updated to 1.77.0 in tensorzero-core/Cargo.toml.

This description was created by Ellipsis for 2739e10c19af2b41ab2bf66d33abf1e380299967. You can customize this summary. It will automatically update as commits are pushed.

Pull Request Statistics
Commits:
1
Files Changed:
6
Additions:
+111
Deletions:
-85
Package Dependencies
Package:
rand
Ecosystem:
cargo
Version Change:
0.9.1 → 0.9.2
Update Type:
Patch
Package:
aws-sdk-s3
Ecosystem:
cargo
Version Change:
1.96.0 → 1.97.0
Update Type:
Minor
Package:
serde_json
Ecosystem:
cargo
Version Change:
1.0.140 → 1.0.141
Update Type:
Patch
Ecosystem:
cargo
Version Change:
1.2.3 → 1.2.4
Update Type:
Patch
Package:
strum
Ecosystem:
cargo
Version Change:
0.27.1 → 0.27.2
Update Type:
Patch
Package:
aws-config
Ecosystem:
cargo
Version Change:
1.8.1 → 1.8.2
Update Type:
Patch
Ecosystem:
cargo
Version Change:
1.95.0 → 1.96.0
Update Type:
Minor
Ecosystem:
cargo
Version Change:
0.27.1 → 0.27.2
Update Type:
Patch
Package:
rcgen
Ecosystem:
cargo
Version Change:
0.14.2 → 0.14.3
Update Type:
Patch
Package:
napi
Ecosystem:
cargo
Version Change:
2.16.17 → 3.1.1
Update Type:
Major
Ecosystem:
cargo
Version Change:
0.12.2 → 0.12.3
Update Type:
Patch
Ecosystem:
cargo
Version Change:
1.76.0 → 1.77.0
Update Type:
Minor
Ecosystem:
cargo
Version Change:
0.29.0 → 0.30.0
Update Type:
Minor
Ecosystem:
cargo
Version Change:
0.29.0 → 0.29.1
Update Type:
Patch
Package:
napi-derive
Ecosystem:
cargo
Version Change:
2.16.13 → 3.1.0
Update Type:
Major
Ecosystem:
cargo
Version Change:
0.21.0 → 0.22.1
Update Type:
Minor
Technical Details
ID: 3908501
UUID: 2682822513
Node ID: PR_kwDOMXNO-86f6J9x
Host: GitHub
Repository: tensorzero/tensorzero
Mergeable: Yes
Merge State: Unstable