Skip to content

chore(deps): bump the dependencies group across 1 directory with 7 updates#602

Merged
m4tx merged 3 commits into
masterfrom
dependabot/cargo/dependencies-cc5c3131cf
Jul 1, 2026
Merged

chore(deps): bump the dependencies group across 1 directory with 7 updates#602
m4tx merged 3 commits into
masterfrom
dependabot/cargo/dependencies-cc5c3131cf

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 1, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
anyhow 1.0.102 1.0.103
clap_complete 4.6.5 4.6.7
quote 1.0.45 1.0.46
redis 1.2.4 1.3.0
serde_html_form 0.4.0 0.4.1
time 0.3.49 0.3.53
trybuild 1.0.116 1.0.117

Updates anyhow from 1.0.102 to 1.0.103

Release notes

Sourced from anyhow's releases.

1.0.103

  • Fix Stacked Borrows violation (UB) in Error::downcast_mut (#451, #452)
Commits
  • 5bdb0e2 Release 1.0.103
  • e621bd3 Merge pull request #452 from dtolnay/downcast
  • 6e8c000 Eliminate pointer->reference->pointer during downcast
  • 67c4abd Add regression test for issue 451
  • 917a169 Update actions/upload-artifact@v6 -> v7
  • d9dc3fa Update actions/checkout@v6 -> v7
  • 841522b Raise minimum tested compiler to rust 1.85
  • See full diff in compare view

Updates clap_complete from 4.6.5 to 4.6.7

Commits
  • d3e59a9 chore: Release
  • d997f87 docs: Update changelog
  • fb6058c Merge pull request #6409 from heaths/pwsh-support
  • 2310870 test(complete): Add tests for completer_for_path
  • 5967c17 refactor(complete): Move shell detection to Shells
  • 594602b fix(complete): Detect pwsh for PowerShell
  • 3a4f2d0 Merge pull request #6427 from clap-rs/renovate/shlex-2.x
  • 67ebaed Merge pull request #6426 from clap-rs/renovate/actions-checkout-7.x
  • c968b13 chore(deps): Update Rust crate shlex to v2
  • 8f247cb chore(deps): Update actions/checkout action to v7
  • Additional commits viewable in compare view

Updates quote from 1.0.45 to 1.0.46

Release notes

Sourced from quote's releases.

1.0.46

Commits
  • bc4caf2 Release 1.0.46
  • dc0e304 Format with rustfmt
  • 712114c Drop arrow from syntax of quote_spanned_with_expanded_span
  • f93ab8a Eliminate quote_spanned_with_expanded_span_as_expr macro
  • 1ff3951 Eliminate __quote_spanned macro
  • 64e913a Unify quote_spanned definitions
  • 2978e8b Wrap comment to 80 columns
  • 7f311a0 Fix PR 329 fat arrow spacing
  • 313a8a2 Remove unneeded get_span from PR 329
  • 0b33821 Merge pull request #329 from Noratrieb/avoid-repeat-expand
  • Additional commits viewable in compare view

Updates redis from 1.2.4 to 1.3.0

Release notes

Sourced from redis's releases.

redis-1.3.0

Changes & Bug fixes

Add numbered databases support for the cluster client (redis-rs/redis-rs#2146 by @​virratanasangpunth) fix(cluster): clamp retry backoff upper bound after min-wait floor (redis-rs/redis-rs#2158 by @​nihohit) docs/ci: add wasm32-wasip2 build support for tokio-comp (redis-rs/redis-rs#2153 by @​Prashantsinghchouhan) Add Bloom filter support (redis-rs/redis-rs#2117 by @​somechris)

CI & operational improvements

tests/version: Parse all available versions (Valkey, modules, ...) (Version refactor 6/10) (redis-rs/redis-rs#2143 by @​somechris) tests/version: Add disjunctive (OR) and conjunctive (AND) matchers (Version refactor 7/10) (redis-rs/redis-rs#2144 by @​somechris) tests/version: Drop Redis binary version parsing (Version refactor 8/10) (redis-rs/redis-rs#2145 by @​somechris) tests: Drop VERSION from version constants (version refactor 9/10) (redis-rs/redis-rs#2147 by @​somechris) Fix flakey object tests (redis-rs/redis-rs#2160 by @​nihohit) tests: Add test guards for Valkey servers (Version refactor 10/10) (redis-rs/redis-rs#2148 by @​somechris)

New Contributors

Full Changelog: redis-rs/redis-rs@redis-1.2.4...redis-1.3.0

Commits
  • 207cc89 Prepare version (#2166)
  • c34fb33 Add redisbloom's Bloom filter support (#2117)
  • 5c6ca0a tests: Add test guards for Valkey servers (#2148)
  • e891f7f docs/ci: add wasm32-wasip2 build support for tokio-comp (#2153)
  • 7d066c6 Fix flakey object tests (#2160)
  • b571eb1 tests: Clean up version constants (#2147)
  • b9249f6 tests/version: Drop Redis binary version parsing (#2145)
  • 406ad76 tests/version: Add disjunctive (OR) and conjunctive (AND) matchers (#2144)
  • 1372807 feat(redis_test): add new commands after mock redis connection is instantiate...
  • 201d1be fix(cluster): clamp retry backoff upper bound after min-wait floor (#2158)
  • Additional commits viewable in compare view

Updates serde_html_form from 0.4.0 to 0.4.1

Updates time from 0.3.49 to 0.3.53

Release notes

Sourced from time's releases.

v0.3.53

See the changelog for details.

v0.3.52

See the changelog for details.

v0.3.51

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.53 [2026-07-01]

There are no publicly-facing changes in this release. It solely works around the cookie crate relying on an implementation detail of time that was never part of the public API (and thus subject to semver guarantees). The internal API has been reverted to the extent necessary for cookie to compile. This measure is temporary; the internal change will be re-applied in an yet-to-be-determined future release.

0.3.52 [2026-06-30]

Fixed

  • Subsecond values in the time! macro are parsed using the textual representation, ensuring accuracy. Previously, they were parsed using the floating point representation, which could result in a loss of precision and even invalid values.
  • The date! macro could previously create an invalid value that would then panic at compile time. The macro now emits a proper error instead.
  • When parsing an invalid format description, an edge case would inadvertently panic. This now returns an error as intended.

Added

  • Support default values when parsing

0.3.51 [2026-06-22]

Fixed

  • time compiles with macros enabled. This version is otherwise identical to v0.3.50.

0.3.50 [2026-06-22] [YANKED]

This version was yanked because it would not compile when the macros feature was enabled.

Added

  • Timestamp type

Fixed

  • [year] in a runtime-parsed version 3 format description when the large-dates feature is not enabled now succeeds. This previously failed due to a missing #[cfg].

Performance

  • Further gains when parsing with the non-deprecated parts of the RFC 2822 well-known format
  • Gains when formatting with the ISO 8601 well-known format
  • Date arithmetic is improved in common situations
Commits
  • 0ae2f84 v0.3.53 release
  • cea8c96 Avoid issue with cookie crate temporarily
  • 55e1f2b Require private type to properly seal traits
  • 7cf4780 v0.3.52 release
  • 0e5b04f Fix trusted publishing workflow
  • 6e4140a Support default values when parsing
  • 10ac36a Add more doctests to Timestamp
  • 6b0d468 Restore lexer depth on the unclosed-bracket error path
  • 0abc06d Add trusted publishing
  • 43cf0c0 Preferentially group shards by target
  • Additional commits viewable in compare view

Updates trybuild from 1.0.116 to 1.0.117

Release notes

Sourced from trybuild's releases.

1.0.117

  • Better error message when TRYBUILD env var is wrong (#332, thanks @​tisonkun)
Commits
  • 333eb00 Release 1.0.117
  • 820b8a5 Merge pull request #332 from tisonkun/patch-1
  • 7e9d0a6 Update actions/checkout@v6 -> v7
  • 8dd2668 Better error message when TRYBUILD env var is wrong
  • 0ee8f5a Raise required compiler to Rust 1.85
  • 4dec71c Resolve unnecessary_map_or clippy lint
  • 7d7cc4c Raise required compiler to Rust 1.82
  • See full diff in compare view

@dependabot dependabot Bot added the A-deps Area: Dependencies label Jul 1, 2026
@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

🐰 Bencher Report

Branchdependabot/cargo/dependencies-cc5c3131cf
Testbedgithub-ubuntu-latest
Click to view all benchmark results
BenchmarkLatencyBenchmark Result
milliseconds (ms)
(Result Δ%)
Upper Boundary
milliseconds (ms)
(Limit %)
empty_router/empty_router📈 view plot
🚷 view threshold
6.85 ms
(+8.85%)Baseline: 6.29 ms
7.70 ms
(88.93%)
json_api/json_api📈 view plot
🚷 view threshold
1.14 ms
(+4.11%)Baseline: 1.09 ms
1.31 ms
(86.55%)
nested_routers/nested_routers📈 view plot
🚷 view threshold
1.07 ms
(+5.51%)Baseline: 1.01 ms
1.19 ms
(89.85%)
single_root_route/single_root_route📈 view plot
🚷 view threshold
1.03 ms
(+5.17%)Baseline: 0.98 ms
1.16 ms
(88.93%)
single_root_route_burst/single_root_route_burst📈 view plot
🚷 view threshold
17.88 ms
(+1.23%)Baseline: 17.66 ms
21.15 ms
(84.53%)
🐰 View full continuous benchmarking report in Bencher

@dependabot dependabot Bot changed the title chore(deps): bump the dependencies group with 7 updates chore(deps): bump the dependencies group across 1 directory with 7 updates Jul 1, 2026
@dependabot dependabot Bot force-pushed the dependabot/cargo/dependencies-cc5c3131cf branch from 76a1396 to 9e747c9 Compare July 1, 2026 17:36
…dates

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

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.102` | `1.0.103` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.6.5` | `4.6.7` |
| [quote](https://github.com/dtolnay/quote) | `1.0.45` | `1.0.46` |
| [redis](https://github.com/redis-rs/redis-rs) | `1.2.4` | `1.3.0` |
| serde_html_form | `0.4.0` | `0.4.1` |
| [time](https://github.com/time-rs/time) | `0.3.49` | `0.3.53` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.116` | `1.0.117` |



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

Updates `clap_complete` from 4.6.5 to 4.6.7
- [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.6.5...clap_complete-v4.6.7)

Updates `quote` from 1.0.45 to 1.0.46
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.45...1.0.46)

Updates `redis` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-1.2.4...redis-1.3.0)

Updates `serde_html_form` from 0.4.0 to 0.4.1

Updates `time` from 0.3.49 to 0.3.53
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.49...v0.3.53)

Updates `trybuild` from 1.0.116 to 1.0.117
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.116...1.0.117)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-version: 1.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: clap_complete
  dependency-version: 4.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: quote
  dependency-version: 1.0.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: redis
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: serde_html_form
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: time
  dependency-version: 0.3.53
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: trybuild
  dependency-version: 1.0.117
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/cargo/dependencies-cc5c3131cf branch from 9e747c9 to 0098bb6 Compare July 1, 2026 18:06
@github-actions github-actions Bot added the C-cli Crate: cot-cli (issues and Pull Requests related to Cot CLI) label Jul 1, 2026
@codecov

codecov Bot commented Jul 1, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

Flag Coverage Δ
rust 90.26% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@m4tx m4tx enabled auto-merge (squash) July 1, 2026 19:57
@m4tx m4tx merged commit b06e781 into master Jul 1, 2026
40 checks passed
@m4tx m4tx deleted the dependabot/cargo/dependencies-cc5c3131cf branch July 1, 2026 20:21
@cotbot cotbot Bot mentioned this pull request Jul 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-deps Area: Dependencies C-cli Crate: cot-cli (issues and Pull Requests related to Cot CLI)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant