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 the prod group across 1 directory with 6 updates #9200

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 4, 2025

Bumps the prod group with 6 updates in the / directory:

Package From To
bytes 1.9.0 1.10.0
clap 4.5.27 4.5.28
metrics-exporter-prometheus 0.16.1 0.16.2
pin-project 1.1.8 1.1.9
syn 2.0.96 2.0.98
tower 0.4.13 0.5.2

Updates bytes from 1.9.0 to 1.10.0

Release notes

Sourced from bytes's releases.

Bytes v1.10.0

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)
Changelog

Sourced from bytes's changelog.

1.10.0 (February 3rd, 2025)

Added

  • Add feature to support platforms without atomic CAS (#467)
  • try_get_* methods for Buf trait (#753)
  • Implement Buf::chunks_vectored for Take (#617)
  • Implement Buf::chunks_vectored for VecDeque<u8> (#708)

Fixed

  • Remove incorrect guarantee for chunks_vectored (#754)
  • Ensure that tests pass under panic=abort (#749)
Commits
  • e0f3a25 chore: prepare bytes v1.10.0 (#766)
  • 16fd473 Add feature to support platforms without atomic CAS (#467)
  • 71824b0 ci: test AArch64 and run tests instead of build in cross job (#763)
  • 7a87660 Use [lints] to address unexpected_cfgs lint (#762)
  • 3ab876f Try get methods for Buf trait (#753)
  • a1b1208 Disable test_bytes_vec_alloc test on miri (#755)
  • aae4969 Add specialized Buf::chunks_vectored for Take (#617)
  • 103d7bf Remove incorrect guarantee for chunks_vectored (#754)
  • 16cc574 Implement Buf::chunks_vectored for VecDeque\<u8> (#708)
  • 0e9e4fc Expand Buf tests (#747)
  • Additional commits viewable in compare view

Updates clap from 4.5.27 to 4.5.28

Release notes

Sourced from clap's releases.

v4.5.28

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown
Changelog

Sourced from clap's changelog.

[4.5.28] - 2025-02-03

Features

  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown
Commits

Updates metrics-exporter-prometheus from 0.16.1 to 0.16.2

Commits
  • 56936bf chore: Release
  • 7f3f0d3 update CHANGELOG
  • 440e505 fix dangling character
  • fd74d2c fix: use configured unit suffix for histogram sum/count lines as well
  • 1e68f09 chore: Release
  • 587fccc adjust payload size limit per transport + change default flush interval per a...
  • 1ce169e clean up/unify Cargo metadata + prep metrics-exporter-dogstatsd for release
  • b12f4d0 docs: remove redundant paragraph (#549)
  • c63386b chore: Release
  • f153e3f changelog
  • Additional commits viewable in compare view

Updates pin-project from 1.1.8 to 1.1.9

Release notes

Sourced from pin-project's releases.

1.1.9

  • Suppress clippy::missing_const_for_fn lint in generated code.
Changelog

Sourced from pin-project's changelog.

[1.1.9] - 2025-02-03

  • Suppress clippy::missing_const_for_fn lint in generated code.
Commits
  • e224413 Release 1.1.9
  • 1003f80 Suppress clippy::missing_const_for_fn lint in generated code
  • c6d2ebc Ignore clippy::doc_overindented_list_items lint
  • f33d7eb tools: Update tidy.sh and related configs/markers
  • 63c0e8e ci: Update reusable workflows
  • 970d0c3 ci: Use taiki-e/github-actions/.github/workflows/test.yml reusable workflow
  • 00b79e2 tests: Add todo comment
  • ebed0a3 ci: Disable buggy dependabot grouped update
  • ee924ee tools: Format shell scripts with indent_size = 2 to match scripts in CI config
  • b8e1b16 tests: Update lint test
  • Additional commits viewable in compare view

Updates syn from 2.0.96 to 2.0.98

Release notes

Sourced from syn's releases.

2.0.98

  • Allow lifetimes in function pointer return values in ParseStream::call and Punctuated parsers (#1847)

2.0.97

  • Documentation improvements
Commits
  • 71f3808 Release 2.0.98
  • f0c57ee Merge pull request #1847 from dtolnay/lifetimes
  • 4307f64 Allow lifetimes in function pointer return values
  • d15bdea Release 2.0.97
  • bf672a9 Merge pull request #1846 from dtolnay/surroundcfg
  • f0ee7e9 Fix missing doc cfg on <$Delimiter>::surround
  • e0e40cf Resolve unnecessary_semicolon pedantic clippy lint
  • 6ebd966 Resolve sliced_string_as_bytes clippy lint
  • a09b650 More precise gitignore patterns
  • 42601b9 Resolve needless_continue pedantic clippy lint
  • Additional commits viewable in compare view

Updates tower from 0.4.13 to 0.5.2

Release notes

Sourced from tower's releases.

tower 0.5.2

Added

  • util: Add BoxCloneSyncService which is a Clone + Send + Sync boxed Service (#777)
  • util: Add BoxCloneSyncServiceLayer which is a Clone + Send + Sync boxed Layer (#802)

tower 0.5.1

  • Fix minimum version of tower-layer dependency (#787)

#787: tower-rs/tower#787

tower 0.5.0

Fixed

  • util: BoxService is now Sync (#702)

Changed

  • util: Removed deprecated ServiceExt::ready_and method and ReadyAnd future (#652)
  • retry: Breaking Change retry::Policy::retry now accepts &mut Req and &mut Res instead of the previous mutable versions. This increases the flexibility of the retry policy. To update, update your method signature to include mut for both parameters. (#584)
  • retry: Breaking Change Change Policy to accept &mut self (#681)
  • retry: Add generic backoff utilities (#685)
  • retry: Add Budget trait. This allows end-users to implement their own budget and bucket implementations. (#703)
  • reconnect: Breaking Change Remove unused generic parameter from Reconnect::new (#755)
  • ready-cache: Allow iteration over ready services (#700)
  • discover: Implement Clone for Change (#701)
  • util: Add a BoxCloneServiceLayer (#708)
  • rng: use a simpler random 2-sampler (#716)
  • filter: Derive Clone for AsyncFilterLayer (#731)
  • general: Update IndexMap (#741)
  • MSRV: Increase MSRV to 1.63.0 (#741)

#702: tower-rs/tower#702 #652: tower-rs/tower#652 #584: tower-rs/tower#584 #681: tower-rs/tower#681 #685: tower-rs/tower#685 #703: tower-rs/tower#703 #755: tower-rs/tower#755 #700: tower-rs/tower#700 #701: tower-rs/tower#701 #708: tower-rs/tower#708 #716: tower-rs/tower#716 #731: tower-rs/tower#731 #741: tower-rs/tower#741

Commits
  • 7dc533e tower v0.5.2
  • a09fd97 chore: fix dead code warning for 'Sealed' trait and 'sample_floyd2' func (#799)
  • f57e31b Add util::BoxCloneSyncServiceLayer (#802)
  • da24532 Add util::BoxCloneSyncService (#777)
  • 6283f3a Upgrade http and sync_wrapper dependencies (#788)
  • 7155101 Prepare release of v0.5.1 (#791)
  • b2c48b4 Bump dependency on tower-layer (#787)
  • fec9e55 tower-layer: drop versions from dev dependencies (#782)
  • 646804d chore: prepare to release tower-0.5.0, tower-layer-0.3.3, tower-service-0.3.3...
  • 7202cfe chore: fix a few typos (#780)
  • Additional commits viewable 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

Bumps the prod group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bytes](https://github.com/tokio-rs/bytes) | `1.9.0` | `1.10.0` |
| [clap](https://github.com/clap-rs/clap) | `4.5.27` | `4.5.28` |
| [metrics-exporter-prometheus](https://github.com/metrics-rs/metrics) | `0.16.1` | `0.16.2` |
| [pin-project](https://github.com/taiki-e/pin-project) | `1.1.8` | `1.1.9` |
| [syn](https://github.com/dtolnay/syn) | `2.0.96` | `2.0.98` |
| [tower](https://github.com/tower-rs/tower) | `0.4.13` | `0.5.2` |



Updates `bytes` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.9.0...v1.10.0)

Updates `clap` from 4.5.27 to 4.5.28
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.27...clap_complete-v4.5.28)

Updates `metrics-exporter-prometheus` from 0.16.1 to 0.16.2
- [Changelog](https://github.com/metrics-rs/metrics/blob/main/release.toml)
- [Commits](metrics-rs/metrics@metrics-exporter-prometheus-v0.16.1...metrics-exporter-prometheus-v0.16.2)

Updates `pin-project` from 1.1.8 to 1.1.9
- [Release notes](https://github.com/taiki-e/pin-project/releases)
- [Changelog](https://github.com/taiki-e/pin-project/blob/main/CHANGELOG.md)
- [Commits](taiki-e/pin-project@v1.1.8...v1.1.9)

Updates `syn` from 2.0.96 to 2.0.98
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.96...2.0.98)

Updates `tower` from 0.4.13 to 0.5.2
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-0.4.13...tower-0.5.2)

---
updated-dependencies:
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: metrics-exporter-prometheus
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: pin-project
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: tower
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner February 4, 2025 03:37
@dependabot dependabot bot added A-dependencies Area: Dependency file updates A-rust Area: Updates to Rust code C-trivial Category: A trivial change that is not worth mentioning in the CHANGELOG labels Feb 4, 2025
@dependabot dependabot bot removed the request for review from a team February 4, 2025 03:37
@dependabot dependabot bot requested a review from upbqdn February 4, 2025 03:37
@oxarbitrage oxarbitrage added the do-not-merge Tells Mergify not to merge this PR label Feb 4, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 4, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@oxarbitrage oxarbitrage removed the do-not-merge Tells Mergify not to merge this PR label Feb 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-dependencies Area: Dependency file updates A-rust Area: Updates to Rust code C-trivial Category: A trivial change that is not worth mentioning in the CHANGELOG P-Low ❄️
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant