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 cargo-minor group across 1 directory with 7 updates #19774

Merged
merged 1 commit into from
Mar 11, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 11, 2025

Bumps the cargo-minor group with 7 updates in the / directory:

Package From To
clap 4.5.31 4.5.32
serde 1.0.218 1.0.219
tokio 1.43.0 1.44.0
indexmap 2.7.1 2.8.0
either 1.14.0 1.15.0
syn 2.0.99 2.0.100
env_logger 0.11.6 0.11.7

Updates clap from 4.5.31 to 4.5.32

Release notes

Sourced from clap's releases.

v4.5.32

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

  • Update pulldown-cmark
Changelog

Sourced from clap's changelog.

[4.5.32] - 2025-03-10

Features

  • Add Error::remove

Documentation

  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional

Internal

  • Update pulldown-cmark
Commits
  • 81b9db2 chore: Release
  • d3d7a17 chore: Merge branch 'master' into upstream/master
  • 361114e chore: Release
  • b693fc0 docs: Update changelog
  • 7100091 Merge pull request #5765 from epage/complete
  • e90b2da refactor(complete): Pull our registration writing
  • 95e99ef refactor(complete): Pull out shell lookup
  • 4af0cd6 fix(complete): Loosen requirements on Command factory
  • f40b37f chore: Release
  • 63bfe1a docs: Update changelog
  • Additional commits viewable in compare view

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates tokio from 1.43.0 to 1.44.0

Release notes

Sourced from tokio's releases.

Tokio v1.44.0

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.

Added

  • coop: add task::coop module (#7116)
  • process: add Command::get_kill_on_drop() (#7086)
  • sync: add broadcast::Sender::closed (#6685, #7090)
  • sync: add broadcast::WeakSender (#7100)
  • sync: add oneshot::Receiver::is_empty() (#7153)
  • sync: add oneshot::Receiver::is_terminated() (#7152)

Fixed

  • fs: empty reads on File should not start a background read (#7139)
  • process: calling start_kill on exited child should not fail (#7160)
  • signal: fix CTRL_CLOSE, CTRL_LOGOFF, CTRL_SHUTDOWN on windows (#7122)
  • sync: properly handle panic during mpsc drop (#7094)

Changes

  • runtime: clean up magic number in registration set (#7112)
  • coop: make coop yield using waker defer strategy (#7185)
  • macros: make select! budget-aware (#7164)
  • net: panic when passing a blocking socket to from_std (#7166)
  • io: clean up buffer casts (#7142)

Changes to unstable APIs

  • rt: add before and after task poll callbacks (#7120)
  • tracing: make the task tracing API unstable public (#6972)

Documented

  • docs: fix nesting of sections in top-level docs (#7159)
  • fs: rename symlink and hardlink parameter names (#7143)
  • io: swap reader/writer in simplex doc test (#7176)
  • macros: docs about select! alternatives (#7110)
  • net: rename the argument for send_to (#7146)
  • process: add example for reading Child stdout (#7141)
  • process: clarify Child::kill behavior (#7162)
  • process: fix grammar of the ChildStdin struct doc comment (#7192)
  • runtime: consistently use worker_threads instead of core_threads (#7186)

#6685: tokio-rs/tokio#6685 #6972: tokio-rs/tokio#6972 #7086: tokio-rs/tokio#7086 #7090: tokio-rs/tokio#7090

... (truncated)

Commits

Updates indexmap from 2.7.1 to 2.8.0

Changelog

Sourced from indexmap's changelog.

2.8.0 (2025-03-10)

  • Added indexmap_with_default! and indexset_with_default! to be used with alternative hashers, especially when using the crate without std.
  • Implemented PartialEq between each Slice and []/arrays.
  • Removed the internal rustc-rayon feature and dependency.
Commits
  • dd06e57 Merge pull request #381 from cuviper/release-2.8.0
  • ab5c2df Release 2.8.0
  • b10b273 Merge pull request #380 from iajoiner/feat/macros-no-std
  • 5fd8971 feat: add indexmap_with_default and indexset_with_default macros
  • 5b133ae Merge pull request #376 from cuviper/slice-eq
  • b56f035 Merge pull request #378 from cuviper/indexes
  • e7e4de4 Correct "indexes" to "indices" in Keys doc
  • a34d7ae Merge pull request #377 from waywardmonkeys/update-to-rand-0.9
  • b8bdead Upgrade dev-dependency rand to 0.9
  • 3c1aa95 Make slice PartialEq more generic
  • Additional commits viewable in compare view

Updates either from 1.14.0 to 1.15.0

Commits

Updates syn from 2.0.99 to 2.0.100

Release notes

Sourced from syn's releases.

2.0.100

  • Add Visit::visit_token_stream, VisitMut::visit_token_stream_mut, Fold::fold_token_stream for processing TokenStream during syntax tree traversals (#1852)
Commits
  • 5357c8f Release 2.0.100
  • 78a1efb Merge pull request #1852 from dtolnay/tokenstream
  • 01a9e6d Visit TokenStream in generated syntax tree traversals
  • 22bd069 Bypass instantiating Span-specific visit functions
  • bf0a11d Generalize proc_macro2 path to other terminal types
  • c38857a Simplify reference-to-references
  • 90381ea Sort TERMINAL_TYPES alphabetically
  • 6a860b0 Update test suite to nightly-2025-03-08
  • aed58d1 Update test suite to nightly-2025-03-05
  • See full diff in compare view

Updates env_logger from 0.11.6 to 0.11.7

Release notes

Sourced from env_logger's releases.

v0.11.7

[0.11.7] - 2025-03-10

Internal

  • Replaced humantime with jiff
Changelog

Sourced from env_logger's changelog.

[0.11.7] - 2025-03-10

Internal

  • Replaced humantime with jiff
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

…ates

Bumps the cargo-minor group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.31` | `4.5.32` |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.44.0` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.7.1` | `2.8.0` |
| [either](https://github.com/rayon-rs/either) | `1.14.0` | `1.15.0` |
| [syn](https://github.com/dtolnay/syn) | `2.0.99` | `2.0.100` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.6` | `0.11.7` |



Updates `clap` from 4.5.31 to 4.5.32
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.31...clap_complete-v4.5.32)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

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

Updates `indexmap` from 2.7.1 to 2.8.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.7.1...2.8.0)

Updates `either` from 1.14.0 to 1.15.0
- [Commits](rayon-rs/either@1.14.0...1.15.0)

Updates `syn` from 2.0.99 to 2.0.100
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.99...2.0.100)

Updates `env_logger` from 0.11.6 to 0.11.7
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.6...v0.11.7)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: either
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added A-deps Area: Dependencies T-chore Type: Chore (like updating a dependency, it's gotta be done) labels Mar 11, 2025
@torokati44 torokati44 merged commit a2c3d5e into master Mar 11, 2025
22 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/cargo-minor-649a95168c branch March 11, 2025 13:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-deps Area: Dependencies T-chore Type: Chore (like updating a dependency, it's gotta be done)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant