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

chore(deps): bump the minor group across 1 directory with 8 updates #594

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minor group with 8 updates in the / directory:

Package From To
async-trait 0.1.85 0.1.86
pin-project 1.1.8 1.1.9
uuid 1.12.1 1.13.1
dyn-clone 1.0.17 1.0.18
spider 2.27.27 2.27.36
aws-sdk-bedrockruntime 1.72.0 1.73.0
deadpool 0.12.1 0.12.2
syn 2.0.96 2.0.98

Updates async-trait from 0.1.85 to 0.1.86

Release notes

Sourced from async-trait's releases.

0.1.86

  • Documentation improvements
Commits
  • 46a70c0 Release 0.1.86
  • 0e43f29 Merge pull request #286 from dtolnay/dyncomp
  • c49cbcb Update 'object safe' -> 'dyn compatible' naming in tests
  • 87316f9 Merge pull request #285 from dtolnay/dyncomp
  • eb69fb3 Delete section on dyn compatibility of default implementations
  • ec9665a Update example error message in docs
  • f1b4d3c Update ui test suite to nightly-2025-02-01
  • b33a4b2 More precise gitignore patterns
  • 9d09210 Remove **/*.rs.bk from project-specific gitignore
  • 3f11674 Update ui test suite to nightly-2025-01-23
  • See full diff 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 uuid from 1.12.1 to 1.13.1

Release notes

Sourced from uuid's releases.

1.13.1

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.13.0...1.13.1

1.13.0

⚠️ Potential Breakage

This release updates our version of getrandom to 0.3 and rand to 0.9. It is a potentially breaking change for the following users:

no-std users who enable the rng feature

uuid still uses getrandom by default on these platforms. Upgrade your version of getrandom and follow its new docs on configuring a custom backend.

wasm32-unknown-unknown users who enable the rng feature without the js feature

Upgrade your version of getrandom and follow its new docs on configuring a backend.

You'll also need to enable the rng-getrandom or rng-rand feature of uuid to force it to use getrandom as its backend:

[dependencies.uuid]
version = "1.13.0"
- features = ["v4"]
+ features = ["v4", "rng-getrandom"]
[dependencies.getrandom]
version = "0.3"

If you're on wasm32-unknown-unknown and using the js feature of uuid you shouldn't see any breakage. We've kept this behavior by vendoring in getrandom's web-based backend when the js feature is enabled.

What's Changed

Full Changelog: uuid-rs/uuid@1.12.1...1.13.0

Commits
  • 5421417 Merge pull request #799 from uuid-rs/cargo/1.13.1
  • df58674 prepare for 1.13.1 release
  • f175242 Merge pull request #797 from bushrat011899/wasm32_atomics
  • 65c31b3 Include CI Update
  • 17673a1 Fix wasm32 with atomics
  • 1cf1433 Merge pull request #795 from uuid-rs/cargo/1.13.0
  • ded7a1e prepare for 1.13.0 release
  • 6494c4b Merge pull request #794 from uuid-rs/feat/getrandom-wasm32
  • 9e7300c fix some warnings on various feature enablement
  • 6c155b4 work around lack of dep:x and x/y feature support in 1.63
  • Additional commits viewable in compare view

Updates dyn-clone from 1.0.17 to 1.0.18

Release notes

Sourced from dyn-clone's releases.

1.0.18

  • Documentation improvements
Commits
  • 551e400 Release 1.0.18
  • e605512 Merge pull request #29 from dtolnay/dyncomp
  • ec9d867 Update 'object safe' -> 'dyn compatible' wording
  • 187ff58 More precise gitignore patterns
  • 2ee12af Remove **/*.rs.bk from project-specific gitignore
  • 37a3878 Update ui test suite to nightly-2024-10-30
  • 115fb98 Fill in ignore reasons in all #[ignore] attributes
  • e6a94d1 Revert "Temporarily disable miri on doctests"
  • 297380e Update ui test suite to nightly-2024-03-31
  • 56081d5 Temporarily disable miri on doctests
  • Additional commits viewable in compare view

Updates spider from 2.27.27 to 2.27.36

Commits

Updates aws-sdk-bedrockruntime from 1.72.0 to 1.73.0

Commits

Updates deadpool from 0.12.1 to 0.12.2

Changelog

Sourced from deadpool's changelog.

[0.12.2] - 2025-02-02

  • Update itertools dependency to version 0.13.0
  • Change predicate parameter of Pool::retain method to FnMut
  • Add RetainResult as return value of Pool::retain method
  • Fix panic in Pool::resize method caused by shrinking and growing the pool in quick succession.
Commits
  • 69f10e2 Release deadpool 0.12.2
  • bc0c222 Move all resizing-based tests to the same test module
  • 272a253 Fix panic in Pool::resize method
  • 9b78bb0 Add test for reproducing panics on resize
  • 24673ad Fix clippy warnings
  • 77642f5 Update devcontainer to latest Ubuntu and Rust version
  • 387f9e2 chore: Update redis dependency to version 0.28
  • eb8b0e0 Fix clippy warnings
  • 7b2f616 Add RetainResult as return value of Pool::retain method
  • 5890f7c Update CHANGELOG
  • 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

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 minor group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.85` | `0.1.86` |
| [pin-project](https://github.com/taiki-e/pin-project) | `1.1.8` | `1.1.9` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.12.1` | `1.13.1` |
| [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.17` | `1.0.18` |
| [spider](https://github.com/spider-rs/spider) | `2.27.27` | `2.27.36` |
| [aws-sdk-bedrockruntime](https://github.com/awslabs/aws-sdk-rust) | `1.72.0` | `1.73.0` |
| [deadpool](https://github.com/bikeshedder/deadpool) | `0.12.1` | `0.12.2` |
| [syn](https://github.com/dtolnay/syn) | `2.0.96` | `2.0.98` |



Updates `async-trait` from 0.1.85 to 0.1.86
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.85...0.1.86)

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 `uuid` from 1.12.1 to 1.13.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.12.1...1.13.1)

Updates `dyn-clone` from 1.0.17 to 1.0.18
- [Release notes](https://github.com/dtolnay/dyn-clone/releases)
- [Commits](dtolnay/dyn-clone@1.0.17...1.0.18)

Updates `spider` from 2.27.27 to 2.27.36
- [Release notes](https://github.com/spider-rs/spider/releases)
- [Changelog](https://github.com/spider-rs/spider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/spider-rs/spider/commits)

Updates `aws-sdk-bedrockruntime` from 1.72.0 to 1.73.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `deadpool` from 0.12.1 to 0.12.2
- [Changelog](https://github.com/bikeshedder/deadpool/blob/master/CHANGELOG.md)
- [Commits](deadpool-rs/deadpool@deadpool-v0.12.1...deadpool-v0.12.2)

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)

---
updated-dependencies:
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: pin-project
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: dyn-clone
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: spider
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: aws-sdk-bedrockruntime
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: deadpool
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 5, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 6, 2025

Superseded by #595.

@dependabot dependabot bot closed this Feb 6, 2025
@dependabot dependabot bot deleted the dependabot/cargo/minor-6751befd53 branch February 6, 2025 07:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants