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 rust-dependencies group with 9 updates #635

Merged
merged 1 commit into from
Oct 28, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 28, 2024

Bumps the rust-dependencies group with 9 updates:

Package From To
tokio 1.40.0 1.41.0
thiserror 1.0.64 1.0.65
anyhow 1.0.90 1.0.91
bytes 1.7.2 1.8.0
regex 1.11.0 1.11.1
serde 1.0.210 1.0.213
tuic v1.3.1 v1.3.2
tuic-quinn v1.3.1 v1.3.2
console-subscriber 0.4.0 0.4.1

Updates tokio from 1.40.0 to 1.41.0

Release notes

Sourced from tokio's releases.

Tokio v1.41.0

1.41.0 (Oct 22th, 2024)

Added

  • metrics: stabilize global_queue_depth (#6854, #6918)
  • net: add conversions for unix SocketAddr (#6868)
  • sync: add watch::Sender::sender_count (#6836)
  • sync: add mpsc::Receiver::blocking_recv_many (#6867)
  • task: stabilize Id apis (#6793, #6891)

Added (unstable)

  • metrics: add H2 Histogram option to improve histogram granularity (#6897)
  • metrics: rename some histogram apis (#6924)
  • runtime: add LocalRuntime (#6808)

Changed

  • runtime: box futures larger than 16k on release mode (#6826)
  • sync: add #[must_use] to Notified (#6828)
  • sync: make watch cooperative (#6846)
  • sync: make broadcast::Receiver cooperative (#6870)
  • task: add task size to tracing instrumentation (#6881)
  • wasm: enable cfg_fs for wasi target (#6822)

Fixed

  • net: fix regression of abstract socket path in unix socket (#6838)

Documented

  • io: recommend OwnedFd with AsyncFd (#6821)
  • io: document cancel safety of AsyncFd methods (#6890)
  • macros: render more comprehensible documentation for join and try_join (#6814, #6841)
  • net: fix swapped examples for TcpSocket::set_nodelay and TcpSocket::nodelay (#6840)
  • sync: document runtime compatibility (#6833)

#6793: tokio-rs/tokio#6793 #6808: tokio-rs/tokio#6808 #6810: tokio-rs/tokio#6810 #6814: tokio-rs/tokio#6814 #6821: tokio-rs/tokio#6821 #6822: tokio-rs/tokio#6822 #6826: tokio-rs/tokio#6826 #6828: tokio-rs/tokio#6828 #6833: tokio-rs/tokio#6833 #6836: tokio-rs/tokio#6836 #6838: tokio-rs/tokio#6838 #6840: tokio-rs/tokio#6840

... (truncated)

Commits
  • 01e04da chore: prepare Tokio v1.41.0 (#6917)
  • 92ccade runtime: fix stability feature flags for docs (#6909)
  • fbfeb9a metrics: rename *_poll_count_* to *_poll_time_* (#6924)
  • da745ff metrics: add H2 Histogram option to improve histogram granularity (#6897)
  • ce1c74f metrics: fix deadlock in injection_queue_depth_multi_thread test (#6916)
  • 28c9a14 metrics: rename injection_queue_depth to global_queue_depth (#6918)
  • 32e0b43 ci: freeze FreeBSD and wasm-unknown-unknown on rustc 1.81 (#6911)
  • 1656d8e sync: add mpsc::Receiver::blocking_recv_many (#6867)
  • c9e998e ci: print the correct sort order of the dictionary on failure (#6905)
  • 512e9de rt: add LocalRuntime (#6808)
  • Additional commits viewable in compare view

Updates thiserror from 1.0.64 to 1.0.65

Release notes

Sourced from thiserror's releases.

1.0.65

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#325)
Commits

Updates anyhow from 1.0.90 to 1.0.91

Release notes

Sourced from anyhow's releases.

1.0.91

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#388)
Commits

Updates bytes from 1.7.2 to 1.8.0

Release notes

Sourced from bytes's releases.

Bytes 1.8.0

1.8.0 (October 21, 2024)

  • Guarantee address in split_off/split_to for empty slices (#740)
Changelog

Sourced from bytes's changelog.

1.8.0 (October 21, 2024)

  • Guarantee address in split_off/split_to for empty slices (#740)
Commits

Updates regex from 1.11.0 to 1.11.1

Changelog

Sourced from regex's changelog.

1.11.1 (2024-10-24)

This is a new patch release of regex that fixes compilation on nightly Rust when the unstable pattern crate feature is enabled. Users on nightly Rust without this feature enabled are unaffected.

Bug fixes:

Commits

Updates serde from 1.0.210 to 1.0.213

Release notes

Sourced from serde's releases.

v1.0.213

  • Fix support for macro-generated with attributes inside a newtype struct (#2847)

v1.0.212

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)

v1.0.211

  • Improve error reporting about mismatched signature in with and default attributes (#2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#2821)
Commits
  • 58a8d22 Release 1.0.213
  • ef0ed22 Merge pull request #2847 from dtolnay/newtypewith
  • 79925ac Ignore dead_code warning in regression test
  • b60e409 Hygiene for macro-generated newtype struct deserialization with 'with' attr
  • fdc36e5 Add regression test for issue 2846
  • 49e11ce Ignore trivially_copy_pass_by_ref pedantic clippy lint in test
  • 7ae1b5f Release 1.0.212
  • 1ac054b Merge pull request #2845 from dtolnay/withlocal
  • 1e36ef5 Fix hygiene of macro-generated local variable accesses in serde(with) wrappers
  • 0058c72 Add regression test for issue 2844
  • Additional commits viewable in compare view

Updates tuic from v1.3.1 to v1.3.2

Release notes

Sourced from tuic's releases.

v1.3.2

🐛 Bug Fixes

  • Panic when restful not set

🛠️ Builds

  • (deps) Bump the rust-dependencies group with 2 updates (#23)
  • (deps) Bump hugo19941994/delete-draft-releases (#24)
  • (deps) Bump the rust-dependencies group with 4 updates (#25)
  • (deps) Bump the rust-dependencies group with 3 updates (#27)
Commits
  • dea187c fix: when restful not set
  • ca3bbfb build(deps): bump the rust-dependencies group with 3 updates (#27)
  • 2bc38db update ci.yml
  • f4e132c Update ci.yml
  • 988f1b2 build(deps): bump the rust-dependencies group with 4 updates (#25)
  • 566bd47 build(deps): bump hugo19941994/delete-draft-releases (#24)
  • c2a6152 build(deps): bump the rust-dependencies group with 2 updates (#23)
  • See full diff in compare view

Updates tuic-quinn from v1.3.1 to v1.3.2

Release notes

Sourced from tuic-quinn's releases.

v1.3.2

🐛 Bug Fixes

  • Panic when restful not set

🛠️ Builds

  • (deps) Bump the rust-dependencies group with 2 updates (#23)
  • (deps) Bump hugo19941994/delete-draft-releases (#24)
  • (deps) Bump the rust-dependencies group with 4 updates (#25)
  • (deps) Bump the rust-dependencies group with 3 updates (#27)
Commits
  • dea187c fix: when restful not set
  • ca3bbfb build(deps): bump the rust-dependencies group with 3 updates (#27)
  • 2bc38db update ci.yml
  • f4e132c Update ci.yml
  • 988f1b2 build(deps): bump the rust-dependencies group with 4 updates (#25)
  • 566bd47 build(deps): bump hugo19941994/delete-draft-releases (#24)
  • c2a6152 build(deps): bump the rust-dependencies group with 2 updates (#23)
  • See full diff in compare view

Updates console-subscriber from 0.4.0 to 0.4.1

Release notes

Sourced from console-subscriber's releases.

console-subscriber-v0.4.1

Added

Commits
  • 2dd6a0d chore: release console-api-v0.8.1, console-subscriber-v0.4.1, tokio-console-v...
  • eff20bd chore: update tokio-console screenshots for v0.1.13 (#591)
  • f4ee0df chore: update dependencies (#590)
  • ae17230 feat(console): add large future lints (#587)
  • d2a9441 chore(deps): bump tonic from 0.12.0 to 0.12.3 (#588)
  • e00097b chore(deps-dev): bump vite from 5.1.7 to 5.4.8 in /console-subscriber/example...
  • cbe5993 chore(deps): bump rollup in /console-subscriber/examples/grpc_web/app (#585)
  • f8e1bee fix(console): correct the grammar issue (#579)
  • 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 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 rust-dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.41.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `1.0.65` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.90` | `1.0.91` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.7.2` | `1.8.0` |
| [regex](https://github.com/rust-lang/regex) | `1.11.0` | `1.11.1` |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.213` |
| [tuic](https://github.com/Itsusinn/tuic) | `v1.3.1` | `v1.3.2` |
| [tuic-quinn](https://github.com/Itsusinn/tuic) | `v1.3.1` | `v1.3.2` |
| [console-subscriber](https://github.com/tokio-rs/console) | `0.4.0` | `0.4.1` |


Updates `tokio` from 1.40.0 to 1.41.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.40.0...tokio-1.41.0)

Updates `thiserror` from 1.0.64 to 1.0.65
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.64...1.0.65)

Updates `anyhow` from 1.0.90 to 1.0.91
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.90...1.0.91)

Updates `bytes` from 1.7.2 to 1.8.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.7.2...v1.8.0)

Updates `regex` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.11.0...1.11.1)

Updates `serde` from 1.0.210 to 1.0.213
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.213)

Updates `tuic` from v1.3.1 to v1.3.2
- [Release notes](https://github.com/Itsusinn/tuic/releases)
- [Commits](Itsusinn/tuic@ac5664f...dea187c)

Updates `tuic-quinn` from v1.3.1 to v1.3.2
- [Release notes](https://github.com/Itsusinn/tuic/releases)
- [Commits](Itsusinn/tuic@ac5664f...dea187c)

Updates `console-subscriber` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/tokio-rs/console/releases)
- [Changelog](https://github.com/tokio-rs/console/blob/main/release-plz.toml)
- [Commits](tokio-rs/console@console-subscriber-v0.4.0...console-subscriber-v0.4.1)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: tuic
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: tuic-quinn
  dependency-type: direct:production
  dependency-group: rust-dependencies
- dependency-name: console-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 28, 2024
@ibigbug ibigbug enabled auto-merge (squash) October 28, 2024 04:09
@ibigbug ibigbug merged commit 98d183b into master Oct 28, 2024
24 checks passed
@ibigbug ibigbug deleted the dependabot/cargo/rust-dependencies-34292c42bf branch October 28, 2024 04:09
Copy link

@zi3m5f zi3m5f left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, they simply didn't update their version ;)
#645 (comment)

In Cargo.lock the source of tuic and tuic-quinn changes as dependabot updates them to git tag v1.3.2 but leaves the version at 1.3.1.
Spotted while reviewing the version bump to 0.7.1 in NixOS (NixOS/nixpkgs#354419) and wondering about the changed source hash.

Comment on lines 6547 to +6548
version = "1.3.1"
source = "git+https://github.com/Itsusinn/tuic.git?tag=v1.3.1#ac5664fe2d02007adcd8e9605a2141f15764fe41"
source = "git+https://github.com/Itsusinn/tuic.git?tag=v1.3.2#dea187c83da1c769668dfe1f1f12c6bf1e3e9521"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like dependabot didn't adjust the version and only changed the tag?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, tuic didn't update the version with the tag:
#645 (comment)

Comment on lines 6560 to +6561
version = "1.3.1"
source = "git+https://github.com/Itsusinn/tuic.git?tag=v1.3.1#ac5664fe2d02007adcd8e9605a2141f15764fe41"
source = "git+https://github.com/Itsusinn/tuic.git?tag=v1.3.2#dea187c83da1c769668dfe1f1f12c6bf1e3e9521"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here 🤷‍♂️

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.

2 participants