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

rust: bump the rust group across 1 directory with 12 updates #5924

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the rust group with 12 updates in the / directory:

Package From To
serde 1.0.210 1.0.214
serde_json 1.0.128 1.0.132
anyhow 1.0.89 1.0.91
thiserror 1.0.64 1.0.65
tokio 1.40.0 1.41.0
tendermint 0.39.1 0.40.0
tendermint-proto 0.39.1 0.40.0
tendermint-light-client 0.39.1 0.40.0
tendermint-rpc 0.39.1 0.40.0
libc 0.2.159 0.2.161
tendermint-testgen 0.39.1 0.40.0
rustls 0.23.14 0.23.16

Updates serde from 1.0.210 to 1.0.214

Release notes

Sourced from serde's releases.

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)

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
  • 4180621 Release 1.0.214
  • 210373b Merge pull request #2568 from Mingun/into_deserializer-for-deserializers
  • 9cda015 Implement IntoDeserializer for all Deserializers in serde::de::value module
  • 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
  • Additional commits viewable in compare view

Updates serde_json from 1.0.128 to 1.0.132

Release notes

Sourced from serde_json's releases.

1.0.132

  • Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#1205)
  • Improve performance of JSON array and JSON object deserialization by about 8% (#1206)

1.0.131

  • Implement Deserializer and IntoDeserializer for Map<String, Value> and &Map<String, Value> (#1135, thanks @​swlynch99)

1.0.130

  • Support converting and deserializing Number from i128 and u128 (#1141, thanks @​druide)

1.0.129

Commits
  • 86d933c Release 1.0.132
  • f45b422 Merge pull request #1206 from dtolnay/hasnext
  • f2082d2 Clearer order of comparisons
  • 0f54a1a Handle early return sooner on eof in seq or map
  • 2a4cb44 Rearrange 'match peek'
  • 4cb90ce Merge pull request #1205 from dtolnay/hasnext
  • b71ccd2 Reduce duplicative instantiation of logic in SeqAccess and MapAccess
  • a810ba9 Release 1.0.131
  • 0d084c5 Touch up PR 1135
  • b4954a9 Merge pull request #1135 from swlynch99/map-deserializer
  • Additional commits viewable in compare view

Updates anyhow from 1.0.89 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)

1.0.90

  • Documentation improvements
Commits
  • 6c52daa Release 1.0.91
  • 4986853 Merge pull request #388 from dtolnay/outdir
  • f130b76 Clean up dep-info files from OUT_DIR
  • a0b868a Release 1.0.90
  • 0f74169 Improve rendering of inline code in macros documentation
  • 8ce4560 Ignore needless_lifetimes clippy lint
  • be64707 Resolve used_underscore_items pedantic clippy lint
  • See full diff 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 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 tendermint from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates tendermint-proto from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint-proto's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint-proto's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates tendermint-light-client from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint-light-client's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint-light-client's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates tendermint-rpc from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint-rpc's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint-rpc's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates libc from 0.2.159 to 0.2.161

Release notes

Sourced from libc's releases.

0.2.161

Fixed

0.2.160

Added

Changed

Fixed

Other

Changelog

Sourced from libc's changelog.

0.2.161 - 2024-10-17

Fixed

0.2.160 - 2024-10-17

Added

Changed

Fixed

Other

... (truncated)

Commits
  • 63b4a64 chore: release v0.2.161
  • 49f1ad7 Merge pull request #3984 from tgross35/backport-bsd-fix
  • ed784c3 unbreak OpenBSD after #3937
  • b72e9bc Merge pull request #3943 from rust-lang/release-plz-2024-09-25T01-38-49Z
  • bf6680d chore: release v0.2.160
  • a367628 Merge pull request #3982 from tgross35/backport-basil
  • 35f31f8 Sort linux-musl.txt
  • 1b22329 Add fnmatch.h
  • 31f746a Merge pull request #3980 from tgross35/backport-squash
  • f39e871 VxWorks Sched_param renamed, pthread functions and constants added
  • Additional commits viewable in compare view

Updates tendermint-testgen from 0.39.1 to 0.40.0

Release notes

Sourced from tendermint-testgen's releases.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Changelog

Sourced from tendermint-testgen's changelog.

v0.40.0

October 23rd, 2024

This release adds a new dialect for CometBFT v0.38.x, enabling the correct serialization of misbehavior Evidence. This improvement ensures compatibility with CometBFT v0.38.x, addressing specific issues in evidence handling for this version.

BREAKING CHANGES

  • [tendermint-rpc] Add new dialect for CometBFT v0.38.x (#1467)

BUG FIXES

  • [tendermint-rpc] Fix serialization of misbehaviour Evidence on CometBFT v0.38.x using the newly introduced dialect (#1467)
Commits

Updates rustls from 0.23.14 to 0.23.16

Commits
  • 276eb74 Bump version to 0.23.16 (#2183)
  • e07bdc9 Don't warn on UserCanceled alerts
  • a5d6350 chore(deps): lock file maintenance
  • 75e5503 builder: expose ConfigBuilder::crypto_provider()
  • aebe2c3 builder: store providers directly into ConfigBuilder
  • 121d813 Avoid feature unification for bogo
  • eb2a1c4 Move from kyber768 to ML-KEM768
  • 6264243 fix(deps): update rust crate asn1 to 0.18
  • 28ec955 ci: loosen lychee-action version
  • f7c9c30 ci: move lychee step before dir mv
  • 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 rust group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.214` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.128` | `1.0.132` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.89` | `1.0.91` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `1.0.65` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.41.0` |
| [tendermint](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [tendermint-proto](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [tendermint-light-client](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [tendermint-rpc](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.159` | `0.2.161` |
| [tendermint-testgen](https://github.com/informalsystems/tendermint-rs) | `0.39.1` | `0.40.0` |
| [rustls](https://github.com/rustls/rustls) | `0.23.14` | `0.23.16` |



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

Updates `serde_json` from 1.0.128 to 1.0.132
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@1.0.128...1.0.132)

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

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 `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 `tendermint` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `tendermint-proto` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `tendermint-light-client` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `tendermint-rpc` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `libc` from 0.2.159 to 0.2.161
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.161/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.159...0.2.161)

Updates `tendermint-testgen` from 0.39.1 to 0.40.0
- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)
- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)
- [Commits](informalsystems/tendermint-rs@v0.39.1...v0.40.0)

Updates `rustls` from 0.23.14 to 0.23.16
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.14...v/0.23.16)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint-proto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint-light-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tendermint-rpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tendermint-testgen
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: rustls
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link

netlify bot commented Oct 29, 2024

Deploy Preview for oasisprotocol-oasis-core canceled.

Name Link
🔨 Latest commit 7be15ba
🔍 Latest deploy log https://app.netlify.com/sites/oasisprotocol-oasis-core/deploys/672093d75bd2c50008637dfd

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 1, 2024

Superseded by #5925.

@dependabot dependabot bot closed this Nov 1, 2024
@dependabot dependabot bot deleted the dependabot/cargo/rust-4cb39e1bf6 branch November 1, 2024 07:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c:deps Category: external dependencies rust
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants