Skip to content

chore(deps): bump the all-other-cargo-deps group across 1 directory with 7 updates#21274

Merged
alamb merged 2 commits intomainfrom
dependabot/cargo/main/all-other-cargo-deps-e9fbdc620e
Mar 31, 2026
Merged

chore(deps): bump the all-other-cargo-deps group across 1 directory with 7 updates#21274
alamb merged 2 commits intomainfrom
dependabot/cargo/main/all-other-cargo-deps-e9fbdc620e

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the all-other-cargo-deps group with 7 updates in the / directory:

Package From To
insta 1.46.3 1.47.2
uuid 1.22.0 1.23.0
blake3 1.8.3 1.8.4
unicode-segmentation 1.12.0 1.13.2
postgres-types 0.2.12 0.2.13
tokio-postgres 0.7.16 0.7.17
wasm-bindgen-test 0.3.64 0.3.66

Updates insta from 1.46.3 to 1.47.2

Release notes

Sourced from insta's releases.

1.47.2

Release Notes

  • Restore Send + Sync on Settings, Redactions, and Redaction by reverting the Arc to Rc change from 1.47.0, which was semver-breaking. #873 #874
  • Add Send + Sync bounds to Comparator trait for consistency with Arc-based storage. #872
  • Add compile-time assertion to prevent future auto-trait regressions.

Install cargo-insta 1.47.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.47.2/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.47.2/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.47.2

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum

1.47.1

Release Notes

  • Revert sorting of sequences in sort_maps. The change in 1.47.0 sorted all Seq values (including Vec), not just non-deterministic collections like HashSet, which was a breaking change. #876

Install cargo-insta 1.47.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.47.1/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

... (truncated)

Changelog

Sourced from insta's changelog.

1.47.2

  • Restore Send + Sync on Settings, Redactions, and Redaction by reverting the Arc to Rc change from 1.47.0, which was semver-breaking. #873 #874
  • Add Send + Sync bounds to Comparator trait for consistency with Arc-based storage. #872
  • Add compile-time assertion to prevent future auto-trait regressions.

1.47.1

  • Revert sorting of sequences in sort_maps. The change in 1.47.0 sorted all Seq values (including Vec), not just non-deterministic collections like HashSet, which was a breaking change. #876

1.47.0

  • Add Comparator trait for customizing how snapshot values are compared. #872 (@​dstu)
  • Sort sequences in sort_maps to fix non-deterministic HashSet snapshots. #876
  • Improve TOML serialization error message for unsupported types, suggesting assert_json_snapshot! or assert_yaml_snapshot! as alternatives. #880
  • Remove unnecessary Send + Sync bounds from Redaction, allowing non-Send closures in dynamic redactions. #874
  • Don't use Arc in Settings unnecessarily. #873 (@​dstu)
  • Upgrade console to 0.16 and MSRV to 1.66. #885
  • Upgrade toml-edit to 0.25. #882 (@​alexanderkjall)
Commits
  • 0ddf1e8 Release 1.47.2 (#894)
  • 094b1cf Revert Arc→Rc change, restore Send + Sync on Settings (#893)
  • 65a5233 Add regression test for sort_maps not sorting Vecs (#892)
  • fdbfc15 Revert sort_maps sequence sorting, release 1.47.1 (#891)
  • 46b6f2a Release 1.47.0 (#889)
  • aa12933 Upgrade console to 0.16, bump MSRV to 1.66 (#885)
  • 98c084c upgrade toml-edit to 0.25 (#882)
  • 4e889b0 the test_glob test depends on both glob and json (#883)
  • 4d738e5 Bump @​tootallnate/once and @​vscode/test-electron in /vscode-insta (#881)
  • 09f2b8b Improve TOML serialization error message for unsupported types (#880)
  • Additional commits viewable in compare view

Updates uuid from 1.22.0 to 1.23.0

Release notes

Sourced from uuid's releases.

v1.23.0

What's Changed

New Contributors

Special thanks

@​meng-xu-cs raised a series of bugs against the timestamp logic in uuid using automated tooling. The issues themselves were reasonably and responsibly presented and the end result is a better uuid library for everyone. Thanks!

Deprecations

This release includes the following deprecations:

  • Context: Renamed to ContextV1
  • Timestamp::from_gregorian: Renamed to Timestamp::from_gregorian_time

Change to Version::Max

Version::Max's u8 representation has changed from 0xff to 0x0f to match the value returned by Uuid::get_version_num.

Change to Uuid::get_version for the max UUID

Uuid::get_version will only return Some(Version::Max) if the UUID is actually the max UUID (all bytes are 0xff). Previously it would return Some if only the version field was 0x0f. This change matches the behaviour of the nil UUID, which only returns Some(Version::Nil) if the UUID is the nil UUID (all bytes are 0x00).

Full Changelog: uuid-rs/uuid@v1.22.0...v1.23.0

Commits
  • 00ab922 Merge pull request #876 from uuid-rs/cargo/v1.23.0
  • 726ba45 prepare for 1.23.0 release
  • 996dade Merge pull request #875 from uuid-rs/fix/context-ordering
  • e140479 simplify a use stmt
  • 8ed9142 reorganize and document more v7 context internals
  • e09a322 use LazyLock to synchronize v1/v6 context initialization
  • 0f260cc Merge pull request #874 from uuid-rs/chore/impl-cleanups
  • 1419e91 clean up and refactor main lib tests
  • ceeaf4b ensure we don't overflow on counters less than 12
  • 63bc8f5 Merge pull request #873 from uuid-rs/fix/error-msg
  • Additional commits viewable in compare view

Updates blake3 from 1.8.3 to 1.8.4

Release notes

Sourced from blake3's releases.

1.8.4

version 1.8.4

Changes since 1.8.3:

  • Updated the digest dependency from v0.10 to v0.11. THIS IS A POTENTIALLY BREAKING CHANGE for callers using the traits-preview Cargo feature. But this is not considered a breaking change for the blake3 crate itself; see the docs for traits-preview.
  • Performance for WASM SIMD targets is improved by ~20% when the wasm32_simd feature is enabled. Contributed by @​lamb356.
Commits
  • b97a24f version 1.8.4
  • 0ebe469 update to new rustcrypto trait releases
  • d4b005a wasm32_simd: use i8x16_shuffle for rot8 and rot16
  • 6eebbbd fix a struct size mismatch in tests
  • fb1411e c: use SIZE_MAX instead of -1 for size_t sentinels, add <stdint.h>
  • See full diff in compare view

Updates unicode-segmentation from 1.12.0 to 1.13.2

Commits

Updates postgres-types from 0.2.12 to 0.2.13

Release notes

Sourced from postgres-types's releases.

postgres-types v0.2.13

Added

  • Added support for bit-vec 0.9 via the with-bit-vec-0_9 feature.

Changed

  • Upgraded to Rust edition 2024, minimum Rust version 1.85.
Commits
  • 64674ba Release postgres-types v0.2.13
  • 40b760d Release postgres-derive v0.4.8
  • 6c92298 Release postgres-protocol v0.6.11
  • e088d7d style(clippy): fix clippy::useless_conversion
  • 19897e8 build(deps): upgrade semver compatible Rust dependencies
  • 2584926 build(deps): upgrade RustCrypto dependencies
  • 10a7724 chore: add bit-vec v0.9 support
  • 2853157 fix: cargo fmt --all
  • c8f8993 feat: add rustfmt.toml for opiniated formatting
  • cf637be fix: clippy
  • Additional commits viewable in compare view

Updates tokio-postgres from 0.7.16 to 0.7.17

Release notes

Sourced from tokio-postgres's releases.

tokio-postgres v0.7.17

Added

  • Added Client::execute_typed method.
  • Added Client::query_typed_one and Client::query_typed_opt methods.
  • Added GenericClient::execute_typed, GenericClient::query_typed_one, and GenericClient::query_typed_opt methods.
  • Added Transaction::execute_typed, Transaction::query_typed_one, and Transaction::query_typed_opt methods.
  • Added support for bit-vec 0.9 via the with-bit-vec-0_9 feature.

Changed

  • Upgraded rand to 0.10.
  • Upgraded to Rust edition 2024, minimum Rust version 1.85.
Commits
  • 35a85bd Release tokio-postgres v0.7.17
  • 64674ba Release postgres-types v0.2.13
  • 40b760d Release postgres-derive v0.4.8
  • 6c92298 Release postgres-protocol v0.6.11
  • e088d7d style(clippy): fix clippy::useless_conversion
  • 19897e8 build(deps): upgrade semver compatible Rust dependencies
  • 2584926 build(deps): upgrade RustCrypto dependencies
  • 10a7724 chore: add bit-vec v0.9 support
  • 2853157 fix: cargo fmt --all
  • c8f8993 feat: add rustfmt.toml for opiniated formatting
  • Additional commits viewable in compare view

Updates wasm-bindgen-test from 0.3.64 to 0.3.66

Commits

@github-actions github-actions bot added sqllogictest SQL Logic Tests (.slt) functions Changes to functions implementation labels Mar 31, 2026
@comphead
Copy link
Copy Markdown
Contributor

@dependabot rebase

@comphead
Copy link
Copy Markdown
Contributor

https://github.com/dependabot recreate

@comphead
Copy link
Copy Markdown
Contributor

@dependabot recreate

Bumps the all-other-cargo-deps group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [insta](https://github.com/mitsuhiko/insta) | `1.46.3` | `1.47.2` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.22.0` | `1.23.0` |
| [blake3](https://github.com/BLAKE3-team/BLAKE3) | `1.8.3` | `1.8.4` |
| [unicode-segmentation](https://github.com/unicode-rs/unicode-segmentation) | `1.12.0` | `1.13.2` |
| [postgres-types](https://github.com/rust-postgres/rust-postgres) | `0.2.12` | `0.2.13` |
| [tokio-postgres](https://github.com/rust-postgres/rust-postgres) | `0.7.16` | `0.7.17` |
| [wasm-bindgen-test](https://github.com/wasm-bindgen/wasm-bindgen) | `0.3.64` | `0.3.66` |


Updates `insta` from 1.46.3 to 1.47.2
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.46.3...1.47.2)

Updates `uuid` from 1.22.0 to 1.23.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.22.0...v1.23.0)

Updates `blake3` from 1.8.3 to 1.8.4
- [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases)
- [Commits](BLAKE3-team/BLAKE3@1.8.3...1.8.4)

Updates `unicode-segmentation` from 1.12.0 to 1.13.2
- [Commits](unicode-rs/unicode-segmentation@v1.12.0...v1.13.2)

Updates `postgres-types` from 0.2.12 to 0.2.13
- [Release notes](https://github.com/rust-postgres/rust-postgres/releases)
- [Commits](rust-postgres/rust-postgres@postgres-types-v0.2.12...postgres-types-v0.2.13)

Updates `tokio-postgres` from 0.7.16 to 0.7.17
- [Release notes](https://github.com/rust-postgres/rust-postgres/releases)
- [Commits](rust-postgres/rust-postgres@tokio-postgres-v0.7.16...tokio-postgres-v0.7.17)

Updates `wasm-bindgen-test` from 0.3.64 to 0.3.66
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wasm-bindgen/wasm-bindgen/commits)

---
updated-dependencies:
- dependency-name: insta
  dependency-version: 1.47.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-other-cargo-deps
- dependency-name: uuid
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-other-cargo-deps
- dependency-name: blake3
  dependency-version: 1.8.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-other-cargo-deps
- dependency-name: unicode-segmentation
  dependency-version: 1.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-other-cargo-deps
- dependency-name: postgres-types
  dependency-version: 0.2.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-other-cargo-deps
- dependency-name: tokio-postgres
  dependency-version: 0.7.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-other-cargo-deps
- dependency-name: wasm-bindgen-test
  dependency-version: 0.3.66
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-other-cargo-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot changed the title chore(deps): bump the all-other-cargo-deps group with 7 updates chore(deps): bump the all-other-cargo-deps group across 1 directory with 7 updates Mar 31, 2026
@dependabot dependabot bot force-pushed the dependabot/cargo/main/all-other-cargo-deps-e9fbdc620e branch from b4ba818 to 22b97f1 Compare March 31, 2026 16:18
Copy link
Copy Markdown
Contributor

@alamb alamb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good to me -- thanks @dependabot and @comphead

@alamb alamb added this pull request to the merge queue Mar 31, 2026
Merged via the queue into main with commit f3e8291 Mar 31, 2026
59 checks passed
@alamb alamb deleted the dependabot/cargo/main/all-other-cargo-deps-e9fbdc620e branch March 31, 2026 20:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto-dependencies functions Changes to functions implementation sqllogictest SQL Logic Tests (.slt)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants