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

Bump the patch group across 1 directory with 12 updates #70

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 28, 2025

Bumps the patch group with 7 updates in the / directory:

Package From To
async-graphql 7.0.13 7.0.14
async-graphql-axum 7.0.13 7.0.14
cpufeatures 0.2.16 0.2.17
rustix 0.38.43 0.38.44
ryu 1.0.18 1.0.19
unicode-ident 1.0.14 1.0.16
winnow 0.6.24 0.6.25

Updates async-graphql from 7.0.13 to 7.0.14

Changelog

Sourced from async-graphql's changelog.

[7.0.14] 2025-01-22

  • Update error messages for character length validation #1657
  • Upgrade to axum v0.8 #1653
  • Fix position calculator for unicode symbols #1648
Commits

Updates async-graphql-axum from 7.0.13 to 7.0.14

Changelog

Sourced from async-graphql-axum's changelog.

[7.0.14] 2025-01-22

  • Update error messages for character length validation #1657
  • Upgrade to axum v0.8 #1653
  • Fix position calculator for unicode symbols #1648
Commits

Updates async-graphql-derive from 7.0.13 to 7.0.14

Changelog

Sourced from async-graphql-derive's changelog.

[7.0.14] 2025-01-22

  • Update error messages for character length validation #1657
  • Upgrade to axum v0.8 #1653
  • Fix position calculator for unicode symbols #1648
Commits

Updates async-graphql-parser from 7.0.13 to 7.0.14

Changelog

Sourced from async-graphql-parser's changelog.

[7.0.14] 2025-01-22

  • Update error messages for character length validation #1657
  • Upgrade to axum v0.8 #1653
  • Fix position calculator for unicode symbols #1648
Commits

Updates async-graphql-value from 7.0.13 to 7.0.14

Changelog

Sourced from async-graphql-value's changelog.

[7.0.14] 2025-01-22

  • Update error messages for character length validation #1657
  • Upgrade to axum v0.8 #1653
  • Fix position calculator for unicode symbols #1648
Commits

Updates cpufeatures from 0.2.16 to 0.2.17

Commits

Updates rustix from 0.38.43 to 0.38.44

Commits

Updates ryu from 1.0.18 to 1.0.19

Release notes

Sourced from ryu's releases.

1.0.19

  • Update rand dev dependency to 0.9 (#58)
Commits
  • 81d9ec4 Release 1.0.19
  • 7bb6da1 Merge pull request #58 from dtolnay/rand
  • 7e4b85e Update rand crate to 0.9
  • d12f8d0 More precise gitignore patterns
  • 631e145 Remove **/*.rs.bk from project-specific gitignore
  • d3f7415 Prevent upload-artifact step from causing CI failure
  • 5be6db4 Upload CI Cargo.lock for reproducing failures
  • 8234c4d Fill in ignore reasons in all #[ignore] attributes
  • 92fbde0 Merge pull request #57 from dtolnay/exhaustive
  • 55825b3 Mark exhaustive test #[ignore] in non-cfg(exhaustive)
  • Additional commits viewable in compare view

Updates tokio-tungstenite from 0.24.0 to 0.26.1

Changelog

Sourced from tokio-tungstenite's changelog.

0.26.1

  • Update tungstenite to address an issue that might cause UB in certain cases.

0.26.0

0.25.0

Commits

Updates tungstenite from 0.24.0 to 0.26.1

Changelog

Sourced from tungstenite's changelog.

0.26.1

  • Fix/revert unsoundness that could lead to UB with dodgy Read stream implementations.

0.26.0

  • Simplify Message to use Bytes payload directly with simpler Utf8Bytes for text.
  • Change CloseFrame to use Utf8Bytes for reason.
  • Re-export Bytes.

0.25.0

  • New Payload type for Message that allows sending messages with a payload that can be cheaply cloned (Bytes). Long standing issue solved!
  • Add WebSocketConfig::read_buffer_size default 128 KiB.
  • Make WebSocketConfig non-exhaustive & add builder style construction fns.
  • Remove deprecated WebSocketConfig::max_send_queue.
  • Trim spaces on Sec-WebSocket-Protocol header.
  • Eliminate data copies when reading complete messages & optimise read buffer. Improves performance.
  • Update thiserror to 2.
Commits
  • 1b4adde Bump version
  • e81886c Revert "Use set-len when reading into buffer"
  • ec442e6 message: fix documentation on Message::binary()
  • fb9c154 Bump version
  • 441f29f Use set-len when reading into buffer
  • 99bef17 Use shorter import in doc tests
  • 63db5e9 re-export Utf8Bytes, Bytes at root
  • 6505e51 always shout about SAFETY
  • 9f52eda cargo fmt
  • 6825fec Add Utf8Bytes str-like PartialEq impls
  • Additional commits viewable in compare view

Updates unicode-ident from 1.0.14 to 1.0.16

Release notes

Sourced from unicode-ident's releases.

1.0.16

  • Update rand dev dependency to 0.9 (#29)

1.0.15

  • Documentation improvements
Commits
  • 7183516 Release 1.0.16
  • 4c75cc8 Merge pull request #29 from dtolnay/rand
  • 3d6a431 Update rand crate to 0.9 in benchmark
  • 1e2c8c9 Release 1.0.15
  • 42b547d Update benchmark table
  • c322e39 Remove mention of criterion's legacy real_blackbox feature
  • 242d719 More precise gitignore patterns
  • 8837414 Uncapitalize Unicode license link in readme
  • See full diff in compare view

Updates winnow from 0.6.24 to 0.6.25

Changelog

Sourced from winnow's changelog.

[0.6.25] - 2025-01-27

Compatibility

  • Deprecated PResult in favor of ModalResult: v0.7 will make ErrMode optional and PResult will no longer be descriptive enough
  • Deprecate IResult in favor of PResult<(I, O)>

Documentation

  • Update comparison with nom

Fixes

  • Ensure we append errors in repeat(_).fold(1..)
Commits
  • 08f08cc chore: Release
  • 5fb7bf9 docs: Update changelog
  • 89c268b docs: Migrate IResult deprecation to ModalResult
  • 898c65e docs: Fix deprecation timing
  • e19d2b2 Merge pull request #719 from epage/cherry
  • 4f9239c docs(examples): Remove cut_err from dispatch example
  • 59a8b66 docs(topics): Discuss nom's use of GATs
  • f8409ec docs(topics): Centralize nom design discussions
  • e18ec54 docs(topics): Discuss Stream::Slice diff from nom
  • e4b6d99 docs(topic): Clarify streaming/complete API change
  • 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 patch group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [async-graphql](https://github.com/async-graphql/async-graphql) | `7.0.13` | `7.0.14` |
| [async-graphql-axum](https://github.com/async-graphql/async-graphql) | `7.0.13` | `7.0.14` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.16` | `0.2.17` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.43` | `0.38.44` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.18` | `1.0.19` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.14` | `1.0.16` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.6.24` | `0.6.25` |



Updates `async-graphql` from 7.0.13 to 7.0.14
- [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md)
- [Commits](https://github.com/async-graphql/async-graphql/commits)

Updates `async-graphql-axum` from 7.0.13 to 7.0.14
- [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md)
- [Commits](https://github.com/async-graphql/async-graphql/commits)

Updates `async-graphql-derive` from 7.0.13 to 7.0.14
- [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md)
- [Commits](https://github.com/async-graphql/async-graphql/commits)

Updates `async-graphql-parser` from 7.0.13 to 7.0.14
- [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md)
- [Commits](https://github.com/async-graphql/async-graphql/commits)

Updates `async-graphql-value` from 7.0.13 to 7.0.14
- [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md)
- [Commits](https://github.com/async-graphql/async-graphql/commits)

Updates `cpufeatures` from 0.2.16 to 0.2.17
- [Commits](RustCrypto/utils@cpufeatures-v0.2.16...cpufeatures-v0.2.17)

Updates `rustix` from 0.38.43 to 0.38.44
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/rustix@v0.38.43...v0.38.44)

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

Updates `tokio-tungstenite` from 0.24.0 to 0.26.1
- [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md)
- [Commits](snapview/tokio-tungstenite@v0.24.0...v0.26.1)

Updates `tungstenite` from 0.24.0 to 0.26.1
- [Changelog](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md)
- [Commits](snapview/tungstenite-rs@v0.24.0...v0.26.1)

Updates `unicode-ident` from 1.0.14 to 1.0.16
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.14...1.0.16)

Updates `winnow` from 0.6.24 to 0.6.25
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.6.24...v0.6.25)

---
updated-dependencies:
- dependency-name: async-graphql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: async-graphql-axum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: async-graphql-derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: async-graphql-parser
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: async-graphql-value
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: cpufeatures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: ryu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: tokio-tungstenite
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: tungstenite
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 28, 2025
@tpoliaw
Copy link
Collaborator

tpoliaw commented Jan 28, 2025

axum and async-graphql need to be updated together. Will sort manually. The remaining patch releases can be rolled over to next week.

@tpoliaw tpoliaw closed this Jan 28, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 28, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/cargo/patch-c406a3ade9 branch January 28, 2025 11:13
@tpoliaw
Copy link
Collaborator

tpoliaw commented Jan 28, 2025

async-graphql updated in #71

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant