Bump the rust-dependencies group across 1 directory with 16 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 1
(11 months ago)
(11 months ago)
(11 months ago)
rust dependencies
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
- Optimize string escaping during serialization (#1273, thanks
@conradludgate)
Commits
6843c36Release 1.0.1416e2c210Touch up PR 1273623d9b4Merge pull request #1273 from conradludgate/optimise-string-escapingde70b7duse unreachable_unchecked for escape table. use a second match to roundtrip E...f2d940dreplace start index with bytes slice referencecd55b5aIgnore mismatched_lifetime_syntaxes lintc1826ebPin nightly toolchain used for miri job8a56cfaMerge pull request #1248 from jimmycathy/masteraf3d80dchore: fix typo- See full diff in compare view
Updates object_store from 0.12.2 to 0.12.3
Commits
7e0c269chore: prepare0.12.3release (#437)7242a95feat (azure): support for account in 'az://' URLs (#403)1de3c78Minor: Update release schedule on README (#429)bed1ceafeat: retry on 429 and 408 (#426)1474a7dfix(gcp): don't panic if read pem fails (#421)3bc8c49Retry requests when status code is 429 (#410)9df5965Prevent compilation error with all cloud features but fs turned on (#412)d65799bfix: expose source ofRetryError(#422)4d66f8bchore: update quick-xml to version 0.38.0 (#417)259aee5chore: fix clippy 1.88 warnings (#418)- Additional commits viewable in compare view
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::mockmodule andStepRnggenerator (#1634)Additions
- Enable
WeightedIndex<usize>(de)serialization (#1646)
Commits
d3dd415Prepare rand_core 0.9.2 (#1605)99fabd2Prepare rand_core 0.9.2c7fe1c4rand: re-exportrand_core(#1604)db2b1e0rand: re-exportrand_coreee1d96frand_core: implement reborrow forUnwrapMut(#1595)e0eb2eerand_core: implement reborrow forUnwrapMut975f602fixup clippy 1.85 warnings775b05bRelaxSizedrequirements for blanket impls (#1593)- See full diff in compare view
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
3082361chore: releaseb76f7ddrefactor: group subscriber layer construction0026a82feat: add support for Opentelemetry Metrics (#249)e83242dchore(deps): update stefanzweifel/git-auto-commit-action action to v6f79e0ccrefactor: move common grpc functions into agrpcmodule- See full diff in compare view
Updates aws-config from 1.8.1 to 1.8.2
Commits
- See full diff in compare view
Updates aws-sdk-bedrockruntime from 1.95.0 to 1.96.0
Commits
- See full diff in compare view
Updates strum from 0.27.1 to 0.27.2
Release notes
Sourced from strum's releases.
v0.27.2
What's Changed
- Adding support for doc comments on
EnumDiscriminantsgenerated type… by@linclelinkpart5in Peternator7/strum#141- Drop needless
rustversiondependency by@paolobarboliniin Peternator7/strum#446- Upgrade
phfto v0.12 by@paolobarboliniin Peternator7/strum#448- allow discriminants on empty enum by
@crop2000in Peternator7/strum#435- Remove broken link to EnumTable docs by
@schneemsin Peternator7/strum#427- Change enum table callbacks to FnMut. by
@ClaytonKnittelin Peternator7/strum#443- Add
#[automatically_derived]to theimpls by@dandedotdevin Peternator7/strum#444- Implement a
suffixattribute for serialization of enum variants by@amogh-dambalin Peternator7/strum#440- Expound upon use_phf docs by
@Peternator7in Peternator7/strum#449New Contributors
@paolobarbolinimade their first contribution in Peternator7/strum#446@crop2000made their first contribution in Peternator7/strum#435@schneemsmade their first contribution in Peternator7/strum#427@ClaytonKnittelmade their first contribution in Peternator7/strum#443@dandedotdevmade their first contribution in Peternator7/strum#444@amogh-dambalmade their first contribution in Peternator7/strum#440Full 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
EnumDiscriminantsgenerated 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 theimpls by@dandedotdevin Peternator7/strum#444
- This should make the linter less noisy with warnings in generated code.
#440: Implement a
suffixattribute 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
rustversiondependency.
Commits
38f6621Expound upon use_phf docs (#449)bb13390Implement asuffixattribute for serialization of enum variants (#440)c9e52bfAdd#[automatically_derived]to theimpls (#444)1b00f89Change enum table callbacks to FnMut. (#443)6e2ca25Remove broken link to EnumTable docs (#427)9503781allow discriminants on empty enum (#435)8553ba2Upgradephfto v0.12 (#448)2eba5c2Drop needlessrustversiondependency (#446)f301b67Merge branch 'linclelinkpart5-master-2'455b2bfMerge branch 'master' of https://github.com/linclelinkpart5/strum into lincle...- See full diff in compare view
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
- Adding support for doc comments on
EnumDiscriminantsgenerated type… by@linclelinkpart5in Peternator7/strum#141- Drop needless
rustversiondependency by@paolobarboliniin Peternator7/strum#446- Upgrade
phfto v0.12 by@paolobarboliniin Peternator7/strum#448- allow discriminants on empty enum by
@crop2000in Peternator7/strum#435- Remove broken link to EnumTable docs by
@schneemsin Peternator7/strum#427- Change enum table callbacks to FnMut. by
@ClaytonKnittelin Peternator7/strum#443- Add
#[automatically_derived]to theimpls by@dandedotdevin Peternator7/strum#444- Implement a
suffixattribute for serialization of enum variants by@amogh-dambalin Peternator7/strum#440- Expound upon use_phf docs by
@Peternator7in Peternator7/strum#449New Contributors
@paolobarbolinimade their first contribution in Peternator7/strum#446@crop2000made their first contribution in Peternator7/strum#435@schneemsmade their first contribution in Peternator7/strum#427@ClaytonKnittelmade their first contribution in Peternator7/strum#443@dandedotdevmade their first contribution in Peternator7/strum#444@amogh-dambalmade their first contribution in Peternator7/strum#440Full 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
EnumDiscriminantsgenerated 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 theimpls by@dandedotdevin Peternator7/strum#444
- This should make the linter less noisy with warnings in generated code.
#440: Implement a
suffixattribute 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
rustversiondependency.
Commits
38f6621Expound upon use_phf docs (#449)bb13390Implement asuffixattribute for serialization of enum variants (#440)c9e52bfAdd#[automatically_derived]to theimpls (#444)1b00f89Change enum table callbacks to FnMut. (#443)6e2ca25Remove broken link to EnumTable docs (#427)9503781allow discriminants on empty enum (#435)8553ba2Upgradephfto v0.12 (#448)2eba5c2Drop needlessrustversiondependency (#446)f301b67Merge branch 'linclelinkpart5-master-2'455b2bfMerge branch 'master' of https://github.com/linclelinkpart5/strum into lincle...- See full diff in compare view
Updates aws-sdk-sagemakerruntime from 1.76.0 to 1.77.0
Commits
- See full diff in compare view
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
3082361chore: releaseb76f7ddrefactor: group subscriber layer construction0026a82feat: add support for Opentelemetry Metrics (#249)e83242dchore(deps): update stefanzweifel/git-auto-commit-action action to v6f79e0ccrefactor: move common grpc functions into agrpcmodule- See full diff in compare view
Updates google-cloud-auth from 0.21.0 to 0.22.1
Commits
- See full diff in compare view
Updates aws-sdk-s3 from 1.96.0 to 1.97.0
Commits
- See full diff in compare view
Updates aws-credential-types from 1.2.3 to 1.2.4
Commits
- See full diff in compare view
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
- feat(napi): add napi_ref impl for Object Symbol and External by
@Brooooooklynin napi-rs/napi-rs#2754- feat(napi): support untyped TypedArray slice by
@Brooooooklynin napi-rs/napi-rs#2762Full 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
- feat(napi): add napi_ref impl for Object Symbol and External by
@Brooooooklynin napi-rs/napi-rs#2754- fix(napi): drop SymbolRef and ObjectRef properly by
@Brooooooklynin napi-rs/napi-rs#2755- perf(napi): sender in Promise does not need to be Arc by
@Brooooooklynin napi-rs/napi-rs#2756- perf: use
Cell<bool>to replaceAtomicBoolby@SyMindin napi-rs/napi-rs#2506- feat!(napi): create function from #[napi] fn by
@Brooooooklynin napi-rs/napi-rs#2757- feat(napi): support c string for object apis by
@Brooooooklynin napi-rs/napi-rs#2759- feat(napi): support untyped TypedArray slice by
@Brooooooklynin napi-rs/napi-rs#2762Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi@3.0.0-beta.11...napi@3.0.0-beta.12
... (truncated)
Commits
63d536bchore(napi): release v3.1.1 (#2792)b6f883aRevert "fix(napi): callback should be Fn rather than FnOnce" (#2791)78d7670chore(release): publish0bf30ccci: fix cargo registry token03805d1chore: release (#2788)16dbf68chore(napi): add UnwindSafe and RefUnwindSafe back to AbortSignal and AsyncWo...1ca2badfeat(napi): provide ScopedTask to resolve JsValue with lifetime (#2786)c657665ci: pin release-plz actione12d905ci: add release-crates job (#2787)9aff30fchore: 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
- feat(napi): add napi_ref impl for Object Symbol and External by
@Brooooooklynin napi-rs/napi-rs#2754- feat(napi): support untyped TypedArray slice by
@Brooooooklynin napi-rs/napi-rs#2762Full 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
- fix(napi-derive): generate object key types properly by
@Brooooooklynin napi-rs/napi-rs#2752Full 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
- fix(napi-derive): single parentheses arg is provided in ThreadsafeFunction by
@camc314in napi-rs/napi-rs#2742- style: run clippy on nightly Rust by
@Brooooooklynin napi-rs/napi-rs#2744New Contributors
@camc314made their first contribution in napi-rs/napi-rs#2742Full Changelog: https://github.com/napi-rs/napi-rs/compare/
@napi-rs/cli@3.0.0-alpha.91...napi-derive@3.0.0-beta.10napi-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.9napi-derive@3.0.0-beta.8
What's Changed
- fix(napi-derive): using js_name generating wrong type defs by
@Brooooooklynin napi-rs/napi-rs#2700- fix(napi-derive): panic while creating type definition when Rust comment contains escape syntax by
@Brooooooklynin napi-rs/napi-rs#2701Full 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
- fix: revalidate shared libs if type def not found by
@forehaloin napi-rs/napi-rs#2689
... (truncated)
Commits
0bf30ccci: fix cargo registry token03805d1chore: release (#2788)16dbf68chore(napi): add UnwindSafe and RefUnwindSafe back to AbortSignal and AsyncWo...1ca2badfeat(napi): provide ScopedTask to resolve JsValue with lifetime (#2786)c657665ci: pin release-plz actione12d905ci: add release-crates job (#2787)9aff30fchore: dedupe lockfile9765f62refactor(cli): reuse buffer in@napi-fs/wasm-time/fs (#2782)dec4ffachore(wasm-runtime): bump emnapi to 1.4.5 (#2783)cdbf2bcchore(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
- docs: fix typo in
PKCS_RSA_SHA384doc comment by@Bravo555in rustls/rcgen#367- Fix regression in key usage purpose encoding by
@djcin rustls/rcgen#369
Commits
620e219Bump rcgen to 0.14.313abad2Fix regression in key usage purpose encodingb2d5990docs: 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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, includingserde_json,object_store,rand, and others, to improve functionality and fix bugs.
- Dependencies Updated:
serde_jsonupdated to1.0.141inCargo.tomlandui/app/utils/minijinja/Cargo.toml.object_storeupdated to0.12.3inCargo.toml.randupdated to0.9.2inCargo.tomlandprovider-proxy/Cargo.toml.tracing-opentelemetry-instrumentation-sdkupdated to0.29.1inCargo.toml.rcgenupdated to0.14.3inprovider-proxy/Cargo.toml.napiupdated to3.1.1andnapi-deriveto3.1.0ininternal/tensorzero-node/Cargo.toml.init-tracing-opentelemetryupdated to0.30.0intensorzero-core/Cargo.toml.google-cloud-authupdated to0.22.1intensorzero-core/Cargo.toml.aws-sdk-s3updated to1.97.0intensorzero-core/Cargo.toml.aws-credential-typesupdated to1.2.4intensorzero-core/Cargo.toml.strumandstrum_macrosupdated to0.27.2intensorzero-core/Cargo.toml.aws-sdk-bedrockruntimeupdated to1.96.0intensorzero-core/Cargo.toml.aws-sdk-sagemakerruntimeupdated to1.77.0intensorzero-core/Cargo.toml.This description was created by
for 2739e10c19af2b41ab2bf66d33abf1e380299967. You can customize this summary. It will automatically update as commits are pushed.
Pull Request Statistics
1
6
+111
-85
Package Dependencies
aws-sdk-sagemakerruntime
cargo
1.76.0 → 1.77.0
Minor
init-tracing-opentelemetry
cargo
0.29.0 → 0.30.0
Minor
cargo
0.29.0 → 0.29.1
Patch
Technical Details
| ID: | 3908501 |
| UUID: | 2682822513 |
| Node ID: | PR_kwDOMXNO-86f6J9x |
| Host: | GitHub |
| Repository: | tensorzero/tensorzero |
| Mergeable: | Yes |
| Merge State: | Unstable |