Skip to content

chore(deps): bump the dependencies group across 1 directory with 8 updates#433

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/dependencies-11f2598e48
Open

chore(deps): bump the dependencies group across 1 directory with 8 updates#433
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/dependencies-11f2598e48

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 13, 2026

Bumps the dependencies group with 8 updates in the / directory:

Package From To
toml 1.0.2+spec-1.1.0 1.0.6+spec-1.1.0
anyhow 1.0.101 1.0.102
console 0.16.2 0.16.3
clap 4.5.59 4.6.0
clap_complete 4.5.66 4.6.0
tempfile 3.25.0 3.27.0
testcontainers 0.23.3 0.24.0
testcontainers-modules 0.11.6 0.12.1

Updates toml from 1.0.2+spec-1.1.0 to 1.0.6+spec-1.1.0

Commits

Updates anyhow from 1.0.101 to 1.0.102

Release notes

Sourced from anyhow's releases.

1.0.102

Commits
  • 5c657b3 Release 1.0.102
  • e737fb6 Merge pull request #442 from dtolnay/backtrace
  • 7fe62b5 Further simply backtrace conditional compilation
  • c8cb5ca Merge pull request #441 from dtolnay/backtrace
  • de27df7 Delete CI use of --features=backtrace
  • 9b67e5d Merge pull request #440 from dtolnay/backtrace
  • efdb11a Simplify std_backtrace conditional code
  • b8a9a70 Merge pull request #439 from dtolnay/backtrace
  • a42fc2c Remove feature = "backtrace" conditional code
  • 2a2a3ce Re-word backtrace feature comment
  • Additional commits viewable in compare view

Updates console from 0.16.2 to 0.16.3

Release notes

Sourced from console's releases.

0.16.3

What's Changed

Commits

Updates clap from 4.5.59 to 4.6.0

Release notes

Sourced from clap's releases.

v4.5.60

[4.5.60] - 2026-02-19

Fixes

  • (help) Quote empty default values, possible values
Changelog

Sourced from clap's changelog.

[4.6.0] - 2026-03-12

Compatibility

  • Update MSRV to 1.85

[4.5.61] - 2026-03-12

Internal

  • Update dependencies

[4.5.60] - 2026-02-19

Fixes

  • (help) Quote empty default values, possible values
Commits

Updates clap_complete from 4.5.66 to 4.6.0

Changelog

Sourced from clap_complete's changelog.

[4.6.0] - 2026-03-12

Compatibility

  • Update MSRV to 1.85

[4.5.61] - 2026-03-12

Internal

  • Update dependencies

[4.5.60] - 2026-02-19

Fixes

  • (help) Quote empty default values, possible values

[4.5.59] - 2026-02-16

Fixes

  • Command::ignore_errors no longer masks help/version on subcommands

[4.5.58] - 2026-02-11

[4.5.57] - 2026-02-03

Fixes

  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)

[4.5.56] - 2026-01-29

Fixes

  • On conflict error, don't show conflicting arguments in the usage

[4.5.55] - 2026-01-27

Fixes

  • Fix inconsistency in precedence between positionals with a value_terminator("--") and escapes (--) where ./foo -- bar means the first arg is empty, rather than escaping future args

[4.5.54] - 2026-01-02

Fixes

  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

... (truncated)

Commits

Updates tempfile from 3.25.0 to 3.27.0

Changelog

Sourced from tempfile's changelog.

3.27.0

This release adds TempPath::try_from_path and deprecates TempPath::from_path.

Prior to this release, TempPath::from_path made no attempts to convert relative paths into absolute paths. The following code would have deleted the wrong file:

let tmp_path = TempPath::from_path("foo")
std::env::set_current_dir("/some/other/path").unwrap();
drop(tmp_path);

Now:

  1. TempPath::from_path will attempt to convert relative paths into absolute paths. However, this isn't always possible as we need to call std::env::current_dir, which can fail. If we fail to convert the relative path to an absolute path, we simply keep the relative path.
  2. The TempPath::try_from_path behaves exactly like TempPath::from_path, except that it returns an error if we fail to convert a relative path into an absolute path (or if the passed path is empty).

Neither function attempt to verify the existence of the file in question.

Thanks to @​meng-xu-cs for reporting this issue.

3.26.0

Commits

Updates testcontainers from 0.23.3 to 0.24.0

Release notes

Sourced from testcontainers's releases.

v0.24.0

Details

Features

  • Support waiting for commands exit regardless of exit code (#771)
  • Add user configuration for container commands (#784)
  • Add option to stop containers with a timeout (#779)
  • Support pause and unpause container (#785)
  • Allow security_opt and readonly_rootfs to be configured (#787)

Miscellaneous Tasks

  • Update etcetera requirement from 0.8.0 to 0.9.0 (#773)
  • Update etcetera requirement from 0.9.0 to 0.10.0 (#775)
Changelog

Sourced from testcontainers's changelog.

[0.24.0] - 2025-05-04

Details

Features

  • Support waiting for commands exit regardless of exit code (#771)
  • Add user configuration for container commands (#784)
  • Add option to stop containers with a timeout (#779)
  • Support pause and unpause container (#785)
  • Allow security_opt and readonly_rootfs to be configured (#787)

Miscellaneous Tasks

  • Update etcetera requirement from 0.8.0 to 0.9.0 (#773)
  • Update etcetera requirement from 0.9.0 to 0.10.0 (#775)
Commits
  • 547e24e chore(release-plz): disable publish for testimages
  • 81c6406 chore: release v0.24.0 (#788)
  • 7db35a4 feat: allow security_opt and readonly_rootfs to be configured (#787)
  • 040b59f feat: support pause and unpause container (#785)
  • 6d55d23 feat: add option to stop containers with a timeout (#779)
  • 1643442 feat: add user configuration for container commands (#784)
  • 8168a82 build: propagate ring/aws-lc-rs feature flags to bollard (#781)
  • 9121760 chore(deps): update etcetera requirement from 0.9.0 to 0.10.0 (#775)
  • 83e4689 chore(deps): update etcetera requirement from 0.8.0 to 0.9.0 (#773)
  • b86a50c feat: support waiting for commands exit regardless of exit code (#771)
  • See full diff in compare view

Updates testcontainers-modules from 0.11.6 to 0.12.1

Release notes

Sourced from testcontainers-modules's releases.

v0.12.1

Bug Fixes

  • Use HTTP wait strategy (#350)

Features

  • Add scylladb module (#325)
  • Add arrow_flightsql module (#348)
  • Add CrateDB (#353)

Miscellaneous Tasks

  • Update alloy-transport-http requirement from 0.11.1 to 1.0.7 (#351)
  • MSRV 1.82
  • Address clippy lint warnings (#354)

v0.12.0

Bug Fixes

  • Dex config serialization (#290)
  • Lint error (#326)
  • Switch to specified version isntead of hashed stable (#335)

Documentation

  • Correct typo (#333)

Features

  • Implement Dex module (#286)
  • Add Weaviate image (#296)
  • [breaking] Support newest MinIO versions (#303)
  • [breaking] Support surrealdb v2 (#307)
  • Add support for custom config and latest image tag (#315)
  • Add support for Zitadel docker (#328)
  • [breaking] Update testcontainers to 0.24.0 (#336)
  • Add support for Azurite docker (#334)

Miscellaneous Tasks

  • Update redis requirement from 0.27.2 to 0.29.0 (#291)
  • Pin chrono as a dev-dep to fix arrow-arith compilation failure (#304)
  • Update dev dependencies (#306)
  • Update kube requirement from 0.98.0 to 0.99.0 (#316)

Performance

... (truncated)

Changelog

Sourced from testcontainers-modules's changelog.

[0.12.1] - 2025-05-29

Bug Fixes

  • Use HTTP wait strategy (#350)

Features

  • Add scylladb module (#325)
  • Add arrow_flightsql module (#348)
  • Add CrateDB (#353)

Miscellaneous Tasks

  • Update alloy-transport-http requirement from 0.11.1 to 1.0.7 (#351)
  • MSRV 1.82
  • Address clippy lint warnings (#354)

[0.12.0] - 2025-05-05

Bug Fixes

  • Dex config serialization (#290)
  • Lint error (#326)
  • Switch to specified version isntead of hashed stable (#335)

Documentation

  • Correct typo (#333)

Features

  • Implement Dex module (#286)
  • Add Weaviate image (#296)
  • [breaking] Support newest MinIO versions (#303)
  • [breaking] Support surrealdb v2 (#307)
  • Add support for custom config and latest image tag (#315)
  • Add support for Zitadel docker (#328)
  • [breaking] Update testcontainers to 0.24.0 (#336)
  • Add support for Azurite docker (#334)

Miscellaneous Tasks

  • Update redis requirement from 0.27.2 to 0.29.0 (#291)
  • Pin chrono as a dev-dep to fix arrow-arith compilation failure (#304)
  • Update dev dependencies (#306)
  • Update kube requirement from 0.98.0 to 0.99.0 (#316)

Performance

... (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 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

…dates

Bumps the dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [toml](https://github.com/toml-rs/toml) | `1.0.2+spec-1.1.0` | `1.0.6+spec-1.1.0` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.101` | `1.0.102` |
| [console](https://github.com/console-rs/console) | `0.16.2` | `0.16.3` |
| [clap](https://github.com/clap-rs/clap) | `4.5.59` | `4.6.0` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.66` | `4.6.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.25.0` | `3.27.0` |
| [testcontainers](https://github.com/testcontainers/testcontainers-rs) | `0.23.3` | `0.24.0` |
| [testcontainers-modules](https://github.com/testcontainers/testcontainers-rs-modules-community) | `0.11.6` | `0.12.1` |



Updates `toml` from 1.0.2+spec-1.1.0 to 1.0.6+spec-1.1.0
- [Commits](toml-rs/toml@toml-v1.0.2...toml-v1.0.6)

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

Updates `console` from 0.16.2 to 0.16.3
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.16.2...0.16.3)

Updates `clap` from 4.5.59 to 4.6.0
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.59...clap_complete-v4.6.0)

Updates `clap_complete` from 4.5.66 to 4.6.0
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.66...clap_complete-v4.6.0)

Updates `tempfile` from 3.25.0 to 3.27.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Stebalien/tempfile/commits/v3.27.0)

Updates `testcontainers` from 0.23.3 to 0.24.0
- [Release notes](https://github.com/testcontainers/testcontainers-rs/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-rs/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-rs@0.23.3...0.24.0)

Updates `testcontainers-modules` from 0.11.6 to 0.12.1
- [Release notes](https://github.com/testcontainers/testcontainers-rs-modules-community/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-rs-modules-community/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-rs-modules-community@v0.11.6...v0.12.1)

---
updated-dependencies:
- dependency-name: toml
  dependency-version: 1.0.6+spec-1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: anyhow
  dependency-version: 1.0.102
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: console
  dependency-version: 0.16.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: clap
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: clap_complete
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tempfile
  dependency-version: 3.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: testcontainers
  dependency-version: 0.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: testcontainers-modules
  dependency-version: 0.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 13, 2026
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