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 all group with 8 updates #4079

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the all group with 8 updates:

Package From To
sha2 0.9.9 0.10.8
itertools 0.12.1 0.14.0
async-tungstenite 0.13.1 0.28.2
downcast-rs 1.2.1 2.0.1
standback 0.2.17 0.4.4
tungstenite 0.13.0 0.24.0
uint 0.9.5 0.10.0
zerocopy 0.7.35 0.8.14

Updates sha2 from 0.9.9 to 0.10.8

Commits

Updates itertools from 0.12.1 to 0.14.0

Changelog

Sourced from itertools's changelog.

0.14.0

Breaking

  • Increased MSRV to 1.63.0 (#960)
  • Removed generic parameter from cons_tuples (#988)

Added

  • Added array_combinations (#991)
  • Added k_smallest_relaxed and variants (#925)
  • Added next_array and collect_array (#560)
  • Implemented DoubleEndedIterator for FilterOk (#948)
  • Implemented DoubleEndedIterator for FilterMapOk (#950)

Changed

  • Allow Q: ?Sized in Itertools::contains (#971)
  • Improved hygiene of chain! (#943)
  • Improved into_group_map_by documentation (#1000)
  • Improved tree_reduce documentation (#955)
  • Improved discoverability of merge_join_by (#966)
  • Improved discoverability of take_while_inclusive (#972)
  • Improved documentation of find_or_last and find_or_first (#984)
  • Prevented exponentially large type sizes in tuple_combinations (#945)
  • Added track_caller attr for asser_equal (#976)

Notable Internal Changes

  • Fixed clippy lints (#956, #987, #1008)
  • Addressed warnings within doctests (#964)
  • CI: Run most tests with miri (#961)
  • CI: Speed up "cargo-semver-checks" action (#938)
  • Changed an instance of default_features in Cargo.toml to default-features (#985)

0.13.0

Breaking

  • Removed implementation of DoubleEndedIterator for ConsTuples (#853)
  • Made MultiProduct fused and fixed on an empty iterator (#835, #834)
  • Changed iproduct! to return tuples for maxi one iterator too (#870)
  • Changed PutBack::put_back to return the old value (#880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#878)
  • Removed TakeWhileInclusive::new (#912)

Added

  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#654, #885)
  • Added Itertools::tail (#899)
  • Implemented DoubleEndedIterator for ProcessResults (#910)
  • Implemented Debug for FormatWith (#931)
  • Added Itertools::get (#891)

Changed

  • Deprecated Itertools::group_by (renamed chunk_by) (#866, #879)

... (truncated)

Commits
  • a015a68 Add next_array and collect_array
  • a1213e1 Prepare v0.14.0 release
  • ff0c942 fix clippy lints
  • f80883b Fix into_group_map_by documentation errors
  • b793238 Add track_caller for asser_equal
  • 5d4056b default_features is deprecated - switch it to default-features
  • a447b68 doc for added trait
  • d0479b0 "nitpicks"
  • 35c78ce IndexMut -> BorrowMut<slice>
  • deb53ba refactored to share code
  • Additional commits viewable in compare view

Updates async-tungstenite from 0.13.1 to 0.28.2

Changelog

Sourced from async-tungstenite's changelog.

[0.28.2] - 2024-12-15

Fixed

  • Add alloc feature to futures_task dependency to make sure futures-task::ArcWake is available.

[0.28.1] - 2024-12-10

Added

  • Added WebSocketStream::send() and make the Sink impl and futures_util dependency optional.

Changed

  • Update MSRV to 1.64
  • Revert workaround from 0.26.2 for futures_task::ArcWake, which is fixed in 0.3.31.

[0.28.0] - 2024-09-04

Changed

  • Update to tungstenite 0.24.
  • Update to rustls-native-certs 0.8.
  • Update MRSV to 1.63.

[0.27.0] - 2024-07-17

Changed

  • Update glib / gio dependencies to 0.20.

[0.26.2] - 2024-06-17

Fixed

  • Work around bug related to futures_task::ArcWake, which causes busy looping because of spurious waker "changes" caused by creating the same waker with different vtables.

[0.26.1] - 2024-06-06

Added

  • New url feature that maps to the corresponding feature from tungstenite and allows connecting directly to ws / wss URLs.

[0.26.0] - 2024-06-02

Changed

  • Update to tungstenite 0.23.
  • Don't include default features for various dependencies.

[0.25.1] - 2024-04-03

Fixed

  • Fix tokio support for async-tls.

[0.25.0] - 2024-02-09

Changed

  • Update to glib/gio 0.19.
  • Update to async-tls 0.13.

[0.24.0] - 2023-12-08

Changed

... (truncated)

Commits
  • eae2efa Release 0.28.2
  • 760b512 fix: waker_ref and ArcWake only available on alloc
  • 84dda8b Release 0.28.1
  • 1e0baad Use futures_task::ArcWake again now that it's fixed
  • b78f952 Add a simple WebSocketStream::send method to replace Sink trait usage
  • ce58323 Additional Documentation of IntoClientRequest on connect_async
  • ab43c0a Update MSRV CI to 1.63 too
  • caa4427 Update CHANGELOG.md for 0.28.0
  • a83de2d Update to rustls-native-certs 0.8
  • 39de6ce Release 0.28.0
  • Additional commits viewable in compare view

Updates downcast-rs from 1.2.1 to 2.0.1

Changelog

Sourced from downcast-rs's changelog.

2.0.1 - 2025-01-06

Change

2.0.0 - 2025-01-06

Added

  • Gated the sync/Arc downcasting functionality behind a new sync feature that is enabled by default.
  • Added a new DowncastSend trait to support downcasting to Box<Any + Send> and made DowncastSync extend this trait.
  • Added downcasting support to Box<Any + Send + Sync> to DowncastSync.

Change

  • Updated minimum supported rust version 1.56 to enforce the rustdoc::bare_urls lint (1.53) and switch to edition 2021 (1.56).
Commits
  • ed30509 Refine the trait and method documentation.
  • 4a140f9 Minor update to README to remove fully-qualified path for macro invocation.
  • 30b5bb2 Change crates document to use feature-conditional code instead of feature-con...
  • e7f6511 Update version to 2.0.0 and update CHANGELOG.md.
  • 7e801af Add an intermediate DowncastSend that DowncastSync extends.
  • 974f237 Updated to 2021 edition, added dyn to all trait objects, and changed min ve...
  • 26927b6 Specify edition and suppress dead-code warnings in compilation tests.
  • 430f220 Update README.md with cargo readme >! README.md.
  • 208ec3a Get rid of authors in Cargo.toml in favor of Github's built-in contributors ...
  • 9ad1dfb Make DowncastSync Optional
  • Additional commits viewable in compare view

Updates standback from 0.2.17 to 0.4.4

Commits

Updates tungstenite from 0.13.0 to 0.24.0

Changelog

Sourced from tungstenite's changelog.

0.24.0

  • Raised MSRV to 1.63 to match tokio-tungstenite.
  • Connecting to WSS URL without TLS features specified results in a better error.
  • Handshake will now flush after completion to be safe (works better with buffered streams).

0.23.0

  • Disable default features for rustls giving the user more flexibility.

0.22.0

  • Make url optional.
  • Add a builder for convenient headers and subprotocols construction.
  • Update rustls dependency.

0.21.0

  • Fix read-predominant auto pong responses not flushing when hitting WouldBlock errors.
  • Improve FrameHeader::format write correctness.
  • Update rustls to 0.22.
  • Update webpki-roots to 0.26.
  • Update rustls-native-certs to 0.7.
  • Update http to 1.0.0.

0.20.1

0.20.0

  • Remove many implicit flushing behaviours. In general reading and writing messages will no longer flush until calling flush. An exception is automatic responses (e.g. pongs) which will continue to be written and flushed when reading and writing. This allows writing a batch of messages and flushing once, improving performance.
  • Add WebSocket::read, write, send, flush. Deprecate read_message, write_message, write_pending.
  • Add FrameSocket::read, write, send, flush. Remove read_frame, write_frame, write_pending. Note: Previous use of write_frame may be replaced with send.
  • Add WebSocketContext::read, write, flush. Remove read_message, write_message, write_pending. Note: Previous use of write_message may be replaced with write + flush.
  • Remove send_queue, replaced with using the frame write buffer to achieve similar results.
    • Add WebSocketConfig::max_write_buffer_size. Deprecate max_send_queue.
    • Add Error::WriteBufferFull. Remove Error::SendQueueFull. Note: WriteBufferFull returns the message that could not be written as a Message::Frame.
  • Add ability to buffer multiple writes before writing to the underlying stream, controlled by WebSocketConfig::write_buffer_size (default 128 KiB). Improves batch message write performance.
  • Panic on receiving invalid WebSocketConfig.

0.19.0

  • Update TLS dependencies.
  • Exchanging base64 for data-encoding.

0.18.0

... (truncated)

Commits

Updates uint from 0.9.5 to 0.10.0

Commits

Updates zerocopy from 0.7.35 to 0.8.14

Release notes

Sourced from zerocopy's releases.

v0.8.14

What's Changed

New Contributors

Full Changelog: google/zerocopy@v0.8.13...v0.8.14

v0.8.13

What's Changed

Full Changelog: google/zerocopy@v0.8.12...v0.8.13

v0.8.12

What's Changed

Full Changelog: google/zerocopy@v0.8.11...v0.8.12

v0.8.11

What's Changed

Full Changelog: google/zerocopy@v0.8.10...v0.8.11

v0.8.10

What's Changed

New Contributors

... (truncated)

Commits

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 all group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [sha2](https://github.com/RustCrypto/hashes) | `0.9.9` | `0.10.8` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.14.0` |
| [async-tungstenite](https://github.com/sdroege/async-tungstenite) | `0.13.1` | `0.28.2` |
| [downcast-rs](https://github.com/marcianx/downcast-rs) | `1.2.1` | `2.0.1` |
| [standback](https://github.com/jhpratt/standback) | `0.2.17` | `0.4.4` |
| [tungstenite](https://github.com/snapview/tungstenite-rs) | `0.13.0` | `0.24.0` |
| [uint](https://github.com/paritytech/parity-common) | `0.9.5` | `0.10.0` |
| [zerocopy](https://github.com/google/zerocopy) | `0.7.35` | `0.8.14` |


Updates `sha2` from 0.9.9 to 0.10.8
- [Commits](RustCrypto/hashes@sha2-v0.9.9...sha2-v0.10.8)

Updates `itertools` from 0.12.1 to 0.14.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.14.0)

Updates `async-tungstenite` from 0.13.1 to 0.28.2
- [Changelog](https://github.com/sdroege/async-tungstenite/blob/main/CHANGELOG.md)
- [Commits](sdroege/async-tungstenite@0.13.1...0.28.2)

Updates `downcast-rs` from 1.2.1 to 2.0.1
- [Changelog](https://github.com/marcianx/downcast-rs/blob/master/CHANGELOG.md)
- [Commits](marcianx/downcast-rs@v1.2.1...v2.0.1)

Updates `standback` from 0.2.17 to 0.4.4
- [Release notes](https://github.com/jhpratt/standback/releases)
- [Commits](jhpratt/standback@v0.2.17...v0.4.4)

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

Updates `uint` from 0.9.5 to 0.10.0
- [Commits](paritytech/parity-common@uint-v0.9.5...uint-v0.10.0)

Updates `zerocopy` from 0.7.35 to 0.8.14
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.7.35...v0.8.14)

---
updated-dependencies:
- dependency-name: sha2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: async-tungstenite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: downcast-rs
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: standback
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tungstenite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: uint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: zerocopy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from ss-es as a code owner January 24, 2025 03:54
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 24, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 27, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 27, 2025
@dependabot dependabot bot deleted the dependabot/cargo/all-ea6e61632b branch January 27, 2025 04:05
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