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 non-major-versions group with 10 updates #11680

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 14, 2023

Bumps the non-major-versions group with 10 updates:

Package From To
aws-credential-types 0.55.3 0.56.0
aws-smithy-client 0.55.3 0.56.0
aws-smithy-http 0.55.3 0.56.0
aws-smithy-types 0.55.3 0.56.0
google-cloud-googleapis 0.10.0 0.11.0
google-cloud-pubsub 0.17.0 0.19.0
itertools 0.10.5 0.11.0
nix 0.25.1 0.26.2
strum_macros 0.24.3 0.25.2
multimap 0.8.3 0.9.0

Updates aws-credential-types from 0.55.3 to 0.56.0

Commits

Updates aws-smithy-client from 0.55.3 to 0.56.0

Commits

Updates aws-smithy-http from 0.55.3 to 0.56.0

Commits

Updates aws-smithy-types from 0.55.3 to 0.56.0

Commits

Updates google-cloud-googleapis from 0.10.0 to 0.11.0

Commits

Updates google-cloud-pubsub from 0.17.0 to 0.19.0

Commits

Updates itertools from 0.10.5 to 0.11.0

Changelog

Sourced from itertools's changelog.

0.11.0

Breaking

  • Make Itertools::merge_join_by also accept functions returning bool (#704)
  • Implement PeekingNext transitively over mutable references (#643)
  • Change with_position to yield (Position, Item) instead of Position<Item> (#699)

Added

  • Add Itertools::take_while_inclusive (#616)
  • Implement PeekingNext for PeekingTakeWhile (#644)
  • Add EitherOrBoth::{just_left, just_right, into_left, into_right, as_deref, as_deref_mut, left_or_insert, right_or_insert, left_or_insert_with, right_or_insert_with, insert_left, insert_right, insert_both} (#629)
  • Implement Clone for CircularTupleWindows (#686)
  • Implement Clone for Chunks (#683)
  • Add Itertools::process_results (#680)

Changed

  • Use Cell instead of RefCell in Format and FormatWith (#608)
  • CI tweaks (#674, #675)
  • Document and test the difference between stable and unstable sorts (#653)
  • Fix documentation error on Itertools::max_set_by_key (#692)
  • Move MSRV metadata to Cargo.toml (#672)
  • Implement equal with Iterator::eq (#591)
Commits

Updates nix from 0.25.1 to 0.26.2

Changelog

Sourced from nix's changelog.

[0.26.2] - 2023-01-18

Fixed

  • Fix SockaddrIn6 bug that was swapping flowinfo and scope_id byte ordering. (#1964)

[0.26.1] - 2022-11-29

Fixed

  • Fix UB with sys::socket::sockopt::SockType using SOCK_PACKET. (#1821)

[0.26.0] - 2022-11-29

Added

  • Added SockaddrStorage::{as_unix_addr, as_unix_addr_mut} (#1871)
  • Added MntFlags and unmount on all of the BSDs.
  • Added any() and all() to poll::PollFd. (#1877)
  • Add MntFlags and unmount on all of the BSDs. (#1849)
  • Added a Statfs::flags method. (#1849)
  • Added NSFS_MAGIC FsType on Linux and Android. (#1829)
  • Added sched_getcpu on platforms that support it. (#1825)
  • Added sched_getaffinity and sched_setaffinity on FreeBSD. (#1804)
  • Added line_discipline field to Termios on Linux, Android and Haiku (#1805)
  • Expose the memfd module on FreeBSD (memfd was added in FreeBSD 13) (#1808)
  • Added domainname field of UtsName on Android and Linux (#1817)
  • Re-export RLIM_INFINITY from libc (#1831)
  • Added syncfs(2) on Linux (#1833)
  • Added faccessat(2) on illumos (#1841)
  • Added eaccess() on FreeBSD, DragonFly and Linux (glibc and musl). (#1842)
  • Added IP_TOS SO_PRIORITY and IPV6_TCLASS sockopts for Linux (#1853)
  • Added new_unnamed and is_unnamed for UnixAddr on Linux and Android. (#1857)
  • Added SockProtocol::Raw for raw sockets

... (truncated)

Commits

Updates strum_macros from 0.24.3 to 0.25.2

Changelog

Sourced from strum_macros's changelog.

0.25.2 (strum_macros)

  • #289: Enables a previously disabled rustdoc.
  • #287: Fixes a bug in EnumIter code gen so that we produce ::core to avoid issues with shadowing modules.

0.25.1 (strum_macros)

  • #276. Fixes #275 and #281. Not sure exactly why this broke, perhaps incompatibilities between syn 1 and 2. PR fixes the issue by only looking at attributes of the "list" type [attr(item, item)].

0.25.0

Breaking Changes

  • #261 Upgrade syn dependency to version 2. This bumps the msrv to 1.56. It's impractical to maintain a package where a core dependency of the ecosystem has a different msrv than this one.

  • 270 Change the to_string behavior when using default. Now, when using default, the display method will return the display version of the value contained in the enum rather than the name of the variant.

    #[derive(strum::Display)]
    enum Color {
      Red,
      Blue,
      Green,
      #[strum(default)]
      Other(String)
    }
    fn main() {
    // This used to print "Other", now it prints "Purple"
    assert_eq!(Color::Other("Purple".to_string()).to_string(), "Purple");
    }

    If you want the old behavior, you can use the to_string attribute to override this behavior. See the PR for an example.

  • 268 Update the behavior of EnumCount to exclude variants that are disabled. This is a breaking change, but the behavior makes it more consistent with other methods.

New Features

  • #257 This PR adds the EnumIs macro that automatically implements is_{variant_name} methods for each variant.

... (truncated)

Commits

Updates multimap from 0.8.3 to 0.9.0

Commits

You can trigger a rebase of this PR 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> dependency 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> dependency 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 non-major-versions group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [aws-credential-types](https://github.com/awslabs/smithy-rs) | `0.55.3` | `0.56.0` |
| [aws-smithy-client](https://github.com/awslabs/smithy-rs) | `0.55.3` | `0.56.0` |
| [aws-smithy-http](https://github.com/awslabs/smithy-rs) | `0.55.3` | `0.56.0` |
| [aws-smithy-types](https://github.com/awslabs/smithy-rs) | `0.55.3` | `0.56.0` |
| [google-cloud-googleapis](https://github.com/yoshidan/google-cloud-rust) | `0.10.0` | `0.11.0` |
| [google-cloud-pubsub](https://github.com/yoshidan/google-cloud-rust) | `0.17.0` | `0.19.0` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.10.5` | `0.11.0` |
| [nix](https://github.com/nix-rust/nix) | `0.25.1` | `0.26.2` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.24.3` | `0.25.2` |
| [multimap](https://github.com/havarnov/multimap) | `0.8.3` | `0.9.0` |


Updates `aws-credential-types` from 0.55.3 to 0.56.0
- [Release notes](https://github.com/awslabs/smithy-rs/releases)
- [Changelog](https://github.com/awslabs/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-rs/commits)

Updates `aws-smithy-client` from 0.55.3 to 0.56.0
- [Release notes](https://github.com/awslabs/smithy-rs/releases)
- [Changelog](https://github.com/awslabs/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-rs/commits)

Updates `aws-smithy-http` from 0.55.3 to 0.56.0
- [Release notes](https://github.com/awslabs/smithy-rs/releases)
- [Changelog](https://github.com/awslabs/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-rs/commits)

Updates `aws-smithy-types` from 0.55.3 to 0.56.0
- [Release notes](https://github.com/awslabs/smithy-rs/releases)
- [Changelog](https://github.com/awslabs/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-rs/commits)

Updates `google-cloud-googleapis` from 0.10.0 to 0.11.0
- [Release notes](https://github.com/yoshidan/google-cloud-rust/releases)
- [Commits](https://github.com/yoshidan/google-cloud-rust/commits)

Updates `google-cloud-pubsub` from 0.17.0 to 0.19.0
- [Release notes](https://github.com/yoshidan/google-cloud-rust/releases)
- [Commits](https://github.com/yoshidan/google-cloud-rust/commits)

Updates `itertools` from 0.10.5 to 0.11.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.10.5...v0.11.0)

Updates `nix` from 0.25.1 to 0.26.2
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](nix-rust/nix@v0.25.1...v0.26.2)

Updates `strum_macros` from 0.24.3 to 0.25.2
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Peternator7/strum/commits)

Updates `multimap` from 0.8.3 to 0.9.0
- [Commits](https://github.com/havarnov/multimap/commits)

---
updated-dependencies:
- dependency-name: aws-credential-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: aws-smithy-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: aws-smithy-http
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: aws-smithy-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: google-cloud-googleapis
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: google-cloud-pubsub
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: nix
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: strum_macros
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
- dependency-name: multimap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-versions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 14, 2023
@xxchan
Copy link
Member

xxchan commented Aug 14, 2023

This group by semver is problematic 😅

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 14, 2023

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

@dependabot dependabot bot closed this Aug 14, 2023
@dependabot dependabot bot deleted the dependabot/cargo/non-major-versions-54149e2993 branch August 14, 2023 18:29
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