Bump the rust-dependencies group across 1 directory with 14 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 2
(about 1 year ago)
(about 1 year ago)
rust dependencies
Bumps the rust-dependencies group with 14 updates in the / directory:
| Package | From | To |
|---|---|---|
| reqwest | 0.12.15 |
0.12.18 |
| uuid | 1.16.0 |
1.17.0 |
| tokio | 1.45.0 |
1.45.1 |
| clap | 4.5.38 |
4.5.39 |
| aws-sdk-bedrockruntime | 1.89.0 |
1.91.0 |
| backon | 1.5.0 |
1.5.1 |
| aws-sdk-sagemakerruntime | 1.71.0 |
1.73.0 |
| opentelemetry_sdk | 0.29.0 |
0.30.0 |
| opentelemetry | 0.29.1 |
0.30.0 |
| opentelemetry-otlp | 0.29.0 |
0.30.0 |
| opentelemetry-semantic-conventions | 0.29.0 |
0.30.0 |
| aws-sdk-s3 | 1.87.0 |
1.89.0 |
| hyper-util | 0.1.12 |
0.1.13 |
| tree-sitter | 0.25.4 |
0.25.5 |
Updates reqwest from 0.12.15 to 0.12.18
Release notes
Sourced from reqwest's releases.
v0.12.18
What's Changed
- Fix compilation when
socksenabled without TLS.v0.12.17
What's Changed
- build: Fix compilation issues on macOS by
@0x676e67in seanmonstar/reqwest#2696v0.12.16
Highlights
- Add
ClientBuilder::http3_congestion_bbr()to enable BBR congestion control.- Add
ClientBuilder::http3_send_grease()to configure whether to send use QUIC grease.- Add
ClientBuilder::http3_max_field_section_size()to configure the maximum response headers.- Add
ClientBuilder::tcp_keepalive_interval()to configure TCP probe interval.- Add
ClientBuilder::tcp_keepalive_retries()to configure TCP probe count.- Add
Proxy::headers()to add extra headers that should be sent to a proxy.- Fix
redirect::Policy::limit()which had an off-by-1 error, allowing 1 more redirect than specified.- Fix HTTP/3 to support streaming request bodies.
- (wasm) Fix null bodies when calling
Response::bytes_stream().What's Changed
- Clarify that
Response::content_length()is not derived from aContent-Lengthheader in docs by@babolivierin seanmonstar/reqwest#2588- docs: link to
char::REPLACEMENT_CHARACTERby@marcospb19in seanmonstar/reqwest#1880- feat: add H3 client config support by
@smalls0098in seanmonstar/reqwest#2609- chore: update brotli to v7 by
@nyurikin seanmonstar/reqwest#2620- Do not pull in an entirely different DEFLATE implementation just for tests by
@Shnatselin seanmonstar/reqwest#2625- chore: fix some typos in comment by
@xixishidibeiin seanmonstar/reqwest#2628- fix(wasm): handle null body in bytes_stream by
@alongubkinin seanmonstar/reqwest#2632ClientBuilder::interfaceon macOS/Solarish OSes by@hawkwin seanmonstar/reqwest#2623- ci: use ubuntu-latest in nightly job by
@seanmonstarin seanmonstar/reqwest#2646- feat: BBR congestion control for http3 by
@threeninesixsevenin seanmonstar/reqwest#2642- feat: Add extentions for Request by
@Xuanwoin seanmonstar/reqwest#2647- refactor: Store request timeout in request extensions instead by
@Xuanwoin seanmonstar/reqwest#2650- chore: make ci pass by
@linyihaiin seanmonstar/reqwest#2666- update h3 dependencys by
@Ruben2424in seanmonstar/reqwest#2670- Document reqwest can make TLS and cookie requests with Wasm by
@nickbabcockin seanmonstar/reqwest#2661- fix(redirect): make the number of redirects of policy matches its maximum limit. by
@linyihaiin seanmonstar/reqwest#2664- Exposed hyper tcp keepalive interval and retries parameters by
@macklietin seanmonstar/reqwest#2675- refactor: use hyper-util's proxy::Matcher by
@seanmonstarin seanmonstar/reqwest#2681- Support streaming request body in HTTP/3 by
@ducaalein seanmonstar/reqwest#2673- refactor: use hyper-util
Tunnelby@seanmonstarin seanmonstar/reqwest#2684- Upgrade webpki-roots to 1 by
@djcin seanmonstar/reqwest#2688- refactor: remove
futures-utilunless usingstream/multipart/compression/blockingby@paolobarboliniin seanmonstar/reqwest#2692- chore: replace rustls-pemfile with rustls-pki-types by
@tottotoin seanmonstar/reqwest#2541- Ensure H3ResponseFuture Implements Sync by
@ducaalein seanmonstar/reqwest#2685- feat(redirect): Using
FollowRedirectfromtower-httpto handle theredirectloop by@linyihaiin seanmonstar/reqwest#2617- feat: add customizable headers in proxy mode by
@chanbengzin seanmonstar/reqwest#2600
... (truncated)
Changelog
Sourced from reqwest's changelog.
v0.12.18
- Fix compilation when
socksenabled without TLS.v0.12.17
- Fix compilation on macOS.
v0.12.16
- Add
ClientBuilder::http3_congestion_bbr()to enable BBR congestion control.- Add
ClientBuilder::http3_send_grease()to configure whether to send use QUIC grease.- Add
ClientBuilder::http3_max_field_section_size()to configure the maximum response headers.- Add
ClientBuilder::tcp_keepalive_interval()to configure TCP probe interval.- Add
ClientBuilder::tcp_keepalive_retries()to configure TCP probe count.- Add
Proxy::headers()to add extra headers that should be sent to a proxy.- Fix
redirect::Policy::limit()which had an off-by-1 error, allowing 1 more redirect than specified.- Fix HTTP/3 to support streaming request bodies.
- (wasm) Fix null bodies when calling
Response::bytes_stream().
Commits
595c80bv0.12.18f279ad1fix compilation if socks is enabled without tlsfed6bc6ci: add a feature powerset check job56ed35bv0.12.17f0bf46bbuild: Fix compilation issues on macOS (#2696)99259cbv0.12.1657670acfeat: add customizable headers forreqwest::Proxy(#2600)d9cf60erefactor: UsingFollowRedirectfromtower-httpto handle theredirectl...75f62f2fix: ensure H3ResponseFuture is sync (#2685)0e1d188chore: replace rustls-pemfile with rustls-pki-types (#2541)- Additional commits viewable in compare view
Updates uuid from 1.16.0 to 1.17.0
Release notes
Sourced from uuid's releases.
v1.17.0
What's Changed
- Added convenience implementation TryFrom for std by
@Nahuel-Min uuid-rs/uuid#819- Update OSX builds to arm by
@KodrAusin uuid-rs/uuid#825- Replace derive(Hash) with manual impl in Uuid by
@diopoexin uuid-rs/uuid#824- Add
wasm32v1-noneSupport by@bushrat011899in uuid-rs/uuid#828- Prepare for 1.17.0 release by
@KodrAusin uuid-rs/uuid#829New Contributors
@Nahuel-Mmade their first contribution in uuid-rs/uuid#819@diopoexmade their first contribution in uuid-rs/uuid#824Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0
Commits
2fd9b61Merge pull request #829 from uuid-rs/cargo/v1.17.0ed0d385prepare for 1.17.0 releasec54cadcMerge pull request #828 from bushrat011899/wasm32v1-none625d769Fix typo in MVP Web CI9d638e0Add MVP Web CI Task83dc528Addwasm32v1-nonesupport5fbd843Merge pull request #824 from diopoex/main6635ae4Merge pull request #825 from uuid-rs/ci/aarch64-apple-darwinb2370f2update toolchain for outdated jobc74ad33update OSX builds to arm- Additional commits viewable in compare view
Updates tokio from 1.45.0 to 1.45.1
Release notes
Sourced from tokio's releases.
Tokio v1.45.1
1.45.1 (May 24th, 2025)
This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to
Instant::now()started failing. This is due to the stabilization of the first time-based metric.Fixed
- Disable time-based metrics on wasm32-unknown-unknown (#7322)
Commits
Updates clap from 4.5.38 to 4.5.39
Release notes
Sourced from clap's releases.
v4.5.39
[4.5.39] - 2025-05-27
Fixes
- (help) Show short flag aliases before long
- (help) Merge the short and long flag alias lists
Changelog
Sourced from clap's changelog.
[4.5.39] - 2025-05-27
Fixes
- (help) Show short flag aliases before long
- (help) Merge the short and long flag alias lists
Commits
ed2360fchore: Release196a14bdocs: Update changelogcd622abMerge pull request #5846 from ribru17/alias_fn_dedup48ff72bfix(complete): Deduplicate bash subcmd casesb1b6f17Merge pull request #5843 from epage/link5900216fix(derive): Update link for derive attributesfde45f9chore: Release45d5d7edocs: Update changelog4b82b97chore: Releasea982adfdocs: Update changelog- Additional commits viewable in compare view
Updates aws-sdk-bedrockruntime from 1.89.0 to 1.91.0
Commits
- See full diff in compare view
Updates backon from 1.5.0 to 1.5.1
Release notes
Sourced from backon's releases.
v1.5.1
What's Changed
- docs: add wasm32 demo by
@XmchxUpin Xuanwo/backon#196- fix no sleeper feature can't set sleeper in retry with context by
@Sherlock-Holoin Xuanwo/backon#199- Bump to version 1.5.1 by
@Xuanwoin Xuanwo/backon#200New Contributors
@Sherlock-Holomade their first contribution in Xuanwo/backon#199Full Changelog: https://github.com/Xuanwo/backon/compare/v1.5.0...v1.5.1
Commits
Updates aws-sdk-sagemakerruntime from 1.71.0 to 1.73.0
Commits
- See full diff in compare view
Updates opentelemetry_sdk from 0.29.0 to 0.30.0
Changelog
Sourced from opentelemetry_sdk's changelog.
Release Notes 0.30
OpenTelemetry Rust 0.30 introduces a few breaking changes to the
opentelemetry_sdkcrate in themetricsfeature. These changes were essential to drive the Metrics SDK towards stability. With this release, the Metrics SDK is officially declared stable. The Metrics API was declared stable last year, and previously, the Logs API, SDK, and OTel-Appender-Tracing were also marked stable. Importantly, no breaking changes have been introduced to components already marked as stable.It is worth noting that the
opentelemetry-otlpcrate remains in a Release-Candidate state and is not yet considered stable. With the API and SDK for Logs and Metrics now stable, the focus will shift towards further refining and stabilizing the OTLP Exporters in upcoming releases. Additionally, Distributed Tracing is expected to progress towards stability, addressing key interoperability challenges.For detailed changelogs of individual crates, please refer to their respective changelog files. This document serves as a summary of the main changes.
Key Changes
Metrics SDK Improvements
Stabilized "view" features: Previously under an experimental feature flag, views can now be used to modify the name, unit, description, and cardinality limit of a metric. Advanced view capabilities, such as changing aggregation or dropping attributes, remain under the experimental feature flag.
Cardinality capping: Introduced the ability to cap cardinality and configure limits using views.
Polished public API: Refined the public API to hide implementation details from exporters, enabling future internal optimizations and ensuring consistency. Some APIs related to authoring custom metric readers have been moved behind experimental feature flags. These advanced use cases require more time to finalize the API surface before being included in the stable release.
Context-Based Suppression
Added the ability to suppress telemetry based on Context. This feature prevents telemetry-induced-telemetry scenarios and addresses a long-standing issue. Note that suppression relies on proper context propagation. Certain libraries used in OTLP Exporters utilize
tracingbut do not adopt OpenTelemetry's context propagation. As a result, not all telemetry is automatically suppressed with this feature. Improvements in this area are expected in future releases.Next Release
... (truncated)
Commits
c811cdechore: Prepare release 0.30.0 (#2999)200885afix: fix trace id in logs when using set_parent nested in a trace span (#2924)c24369echore: Update metric sdk to stable status (#2996)bf22aebfix: Remove pub fields and replace with getter method consistently across … (...4be1a32fix: remove cardinality capping via instrument advice (#2995)3d04c16docs: Add metric doc (#2946)2018959fix: Fix validation in Metric stream (#2991)8c29ca7chore: leverage fallback resolver for MSRV check (#2993)4b3a383chore: add required features to benches (#2990)ebbebf5fix: Further trim public API on views (#2989)- Additional commits viewable in compare view
Updates opentelemetry from 0.29.1 to 0.30.0
Release notes
Sourced from opentelemetry's releases.
0.30.0 Release
See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.30.0 for this release).
This release also upgrades Metrics-SDK to stable!
See summary of release notes: https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md
Changelog
Sourced from opentelemetry's changelog.
Release Notes 0.30
OpenTelemetry Rust 0.30 introduces a few breaking changes to the
opentelemetry_sdkcrate in themetricsfeature. These changes were essential to drive the Metrics SDK towards stability. With this release, the Metrics SDK is officially declared stable. The Metrics API was declared stable last year, and previously, the Logs API, SDK, and OTel-Appender-Tracing were also marked stable. Importantly, no breaking changes have been introduced to components already marked as stable.It is worth noting that the
opentelemetry-otlpcrate remains in a Release-Candidate state and is not yet considered stable. With the API and SDK for Logs and Metrics now stable, the focus will shift towards further refining and stabilizing the OTLP Exporters in upcoming releases. Additionally, Distributed Tracing is expected to progress towards stability, addressing key interoperability challenges.For detailed changelogs of individual crates, please refer to their respective changelog files. This document serves as a summary of the main changes.
Key Changes
Metrics SDK Improvements
Stabilized "view" features: Previously under an experimental feature flag, views can now be used to modify the name, unit, description, and cardinality limit of a metric. Advanced view capabilities, such as changing aggregation or dropping attributes, remain under the experimental feature flag.
Cardinality capping: Introduced the ability to cap cardinality and configure limits using views.
Polished public API: Refined the public API to hide implementation details from exporters, enabling future internal optimizations and ensuring consistency. Some APIs related to authoring custom metric readers have been moved behind experimental feature flags. These advanced use cases require more time to finalize the API surface before being included in the stable release.
Context-Based Suppression
Added the ability to suppress telemetry based on Context. This feature prevents telemetry-induced-telemetry scenarios and addresses a long-standing issue. Note that suppression relies on proper context propagation. Certain libraries used in OTLP Exporters utilize
tracingbut do not adopt OpenTelemetry's context propagation. As a result, not all telemetry is automatically suppressed with this feature. Improvements in this area are expected in future releases.Next Release
... (truncated)
Commits
c811cdechore: Prepare release 0.30.0 (#2999)200885afix: fix trace id in logs when using set_parent nested in a trace span (#2924)c24369echore: Update metric sdk to stable status (#2996)bf22aebfix: Remove pub fields and replace with getter method consistently across … (...4be1a32fix: remove cardinality capping via instrument advice (#2995)3d04c16docs: Add metric doc (#2946)2018959fix: Fix validation in Metric stream (#2991)8c29ca7chore: leverage fallback resolver for MSRV check (#2993)4b3a383chore: add required features to benches (#2990)ebbebf5fix: Further trim public API on views (#2989)- Additional commits viewable in compare view
Updates opentelemetry-otlp from 0.29.0 to 0.30.0
Release notes
Sourced from opentelemetry-otlp's releases.
0.30.0 Release
See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.30.0 for this release).
This release also upgrades Metrics-SDK to stable!
See summary of release notes: https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md
Changelog
Sourced from opentelemetry-otlp's changelog.
Release Notes 0.30
OpenTelemetry Rust 0.30 introduces a few breaking changes to the
opentelemetry_sdkcrate in themetricsfeature. These changes were essential to drive the Metrics SDK towards stability. With this release, the Metrics SDK is officially declared stable. The Metrics API was declared stable last year, and previously, the Logs API, SDK, and OTel-Appender-Tracing were also marked stable. Importantly, no breaking changes have been introduced to components already marked as stable.It is worth noting that the
opentelemetry-otlpcrate remains in a Release-Candidate state and is not yet considered stable. With the API and SDK for Logs and Metrics now stable, the focus will shift towards further refining and stabilizing the OTLP Exporters in upcoming releases. Additionally, Distributed Tracing is expected to progress towards stability, addressing key interoperability challenges.For detailed changelogs of individual crates, please refer to their respective changelog files. This document serves as a summary of the main changes.
Key Changes
Metrics SDK Improvements
Stabilized "view" features: Previously under an experimental feature flag, views can now be used to modify the name, unit, description, and cardinality limit of a metric. Advanced view capabilities, such as changing aggregation or dropping attributes, remain under the experimental feature flag.
Cardinality capping: Introduced the ability to cap cardinality and configure limits using views.
Polished public API: Refined the public API to hide implementation details from exporters, enabling future internal optimizations and ensuring consistency. Some APIs related to authoring custom metric readers have been moved behind experimental feature flags. These advanced use cases require more time to finalize the API surface before being included in the stable release.
Context-Based Suppression
Added the ability to suppress telemetry based on Context. This feature prevents telemetry-induced-telemetry scenarios and addresses a long-standing issue. Note that suppression relies on proper context propagation. Certain libraries used in OTLP Exporters utilize
tracingbut do not adopt OpenTelemetry's context propagation. As a result, not all telemetry is automatically suppressed with this feature. Improvements in this area are expected in future releases.Next Release
... (truncated)
Commits
c811cdechore: Prepare release 0.30.0 (#2999)200885afix: fix trace id in logs when using set_parent nested in a trace span (#2924)c24369echore: Update metric sdk to stable status (#2996)bf22aebfix: Remove pub fields and replace with getter method consistently across … (...4be1a32fix: remove cardinality capping via instrument advice (#2995)3d04c16docs: Add metric doc (#2946)2018959fix: Fix validation in Metric stream (#2991)8c29ca7chore: leverage fallback resolver for MSRV check (#2993)4b3a383chore: add required features to benches (#2990)ebbebf5fix: Further trim public API on views (#2989)- Additional commits viewable in compare view
Updates opentelemetry-semantic-conventions from 0.29.0 to 0.30.0
Release notes
Sourced from opentelemetry-semantic-conventions's releases.
0.30.0 Release
See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.30.0 for this release).
This release also upgrades Metrics-SDK to stable!
See summary of release notes: https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.30.md
Changelog
Sourced from opentelemetry-semantic-conventions's changelog.
Release Notes 0.30
OpenTelemetry Rust 0.30 introduces a few breaking changes to the
opentelemetry_sdkcrate in themetricsfeature. These changes were essential to drive the Metrics SDK towards stability. With this release, the Metrics SDK is officially declared stable. The Metrics API was declared stable last year, and previously, the Logs API, SDK, and OTel-Appender-Tracing were also marked stable. Importantly, no breaking changes have been introduced to components already marked as stable.It is worth noting that the
opentelemetry-otlpcrate remains in a Release-Candidate state and is not yet considered stable. With the API and SDK for Logs and Metrics now stable, the focus will shift towards further refining and stabilizing the OTLP Exporters in upcoming releases. Additionally, Distributed Tracing is expected to progress towards stability, addressing key interoperability challenges.For detailed changelogs of individual crates, please refer to their respective changelog files. This document serves as a summary of the main changes.
Key Changes
Metrics SDK Improvements
Stabilized "view" features: Previously under an experimental feature flag, views can now be used to modify the name, unit, description, and cardinality limit of a metric. Advanced view capabilities, such as changing aggregation or dropping attributes, remain under the experimental feature flag.
Cardinality capping: Introduced the ability to cap cardinality and configure limits using views.
Polished public API: Refined the public API to hide implementation details from exporters, enabling future internal optimizations and ensuring consistency. Some APIs related to authoring custom metric readers have been moved behind experimental feature flags. These advanced use cases require more time to finalize the API surface before being included in the stable release.
Context-Based Suppression
Added the ability to suppress telemetry based on Context. This feature prevents telemetry-induced-telemetry scenarios and addresses a long-standing issue. Note that suppression relies on proper context propagation. Certain libraries used in OTLP Exporters utilize
tracingbut do not adopt OpenTelemetry's context propagation. As a result, not all telemetry is automatically suppressed with this feature. Improvements in this area are expected in future releases.Next Release
... (truncated)
Commits
c811cdechore: Prepare release 0.30.0 (#2999)200885afix: fix trace id in logs when using set_parent nested in a trace span (#2924)c24369echore: Update metric sdk to stable status (#2996)bf22aebfix: Remove pub fields and replace with getter method consistently across … (...4be1a32fix: remove cardinality capping via instrument advice (#2995)3d04c16docs: Add metric doc (#2946)2018959fix: Fix validation in Metric stream (#2991)8c29ca7chore: leverage fallback resolver for MSRV check (#2993)4b3a383chore: add required features to benches (#2990)ebbebf5fix: Further trim public API on views (#2989)- Additional commits viewable in compare view
Updates aws-sdk-s3 from 1.87.0 to 1.89.0
Commits
- See full diff in compare view
Updates hyper-util from 0.1.12 to 0.1.13
Release notes
Sourced from hyper-util's releases.
v0.1.13
tl;dr
- Fix
HttpConnectorto always prefer IPv6 addresses first, if happy eyeballs is enabled.- Fix
legacy::Clientto return better errors if available on the connection.What's Changed
- fix(client): prefer IPv6 addresses before IPv4 even if resolver ordered differently by
@seanmonstarin hyperium/hyper-util#194- chore(test): make proxy test robust wrt IPv4/v6 by
@Fabian-Gruenbichlerin hyperium/hyper-util#195- refactor: limit dependency futures-util to tests and client-legacy by
@hanna-kruppein hyperium/hyper-util#192- Fix some clippy lints by
@jplattein hyperium/hyper-util#196- ConnectErrors improvements by
@seanmonstarin hyperium/hyper-util#197- fix(client): race in connection errors propagation by
@dare3pathin hyperium/hyper-util#184New Contributors
@Fabian-Gruenbichlermade their first contribution in hyperium/hyper-util#195@hanna-kruppemade their first contribution in hyperium/hyper-util#192@jplattemade their first contribution in hyperium/hyper-util#196@dare3pathmade their first contribution in hyperium/hyper-util#184Full Changelog: https://github.com/hyperium/hyper-util/compare/v0.1.12...v0.1.13
Changelog
Sourced from hyper-util's changelog.
0.1.13 (2025-05-27)
- Fix
HttpConnectorto always prefer IPv6 addresses first, if happy eyeballs is enabled.- Fix
legacy::Clientto return better errors if available on the connection.
Commits
2c3c55fv0.1.13a01e6b2fix(client): improve client errors details if available (#184)fc1d699refactor(client): add socket addr to ConnectError0959d46refactor(client): return the first connect error, not the last6328823refactor(client): don't allocate for ConnectError messages3a971c9Fix some clippy lints (#196)2b2c352refactor: limit dependency futures-util to tests and client-legacy (#192)1bcd489chore(test): make proxy test robust wrt IPv4/v6 (#195)d3b8440fix(client): prefer IPv6 addresses before IPv4 even if resolver ordered diffe...- See full diff in compare view
Updates tree-sitter from 0.25.4 to 0.25.5
Release notes
Sourced from tree-sitter's releases.
v0.25.5
What's Changed
- illumos has endian.h by
@tree-sitter-ci-botin tree-sitter/tree-sitter#4451- fix: wasi has endian.h by
@tree-sitter-ci-botin tree-sitter/tree-sitter#4464- Fix crash w/ goto_previous_sibling when parent node has leading extra child by
@tree-sitter-ci-botin tree-sitter/tree-sitter#4473Full Changelog: https://github.com/tree-sitter/tree-sitter/compare/v0.25.4...v0.25.5
Commits
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
Pull Request Statistics
0
0
+0
-0
Package Dependencies
opentelemetry-semantic-conventions
cargo
0.29.0 → 0.30.0
Minor
aws-sdk-sagemakerruntime
cargo
1.71.0 → 1.73.0
Minor
Technical Details
| ID: | 1339061 |
| UUID: | 3101090789 |
| Node ID: | PR_kwDOMXNO-86YKccq |
| Host: | GitHub |
| Repository: | tensorzero/tensorzero |