Skip to content

Bump the rust-deps group with 8 updates#6

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/rust-deps-ed9ba3721b
Open

Bump the rust-deps group with 8 updates#6
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/cargo/rust-deps-ed9ba3721b

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 22, 2026

Bumps the rust-deps group with 8 updates:

Package From To
governor 0.8.1 0.10.4
fluent 0.16.1 0.17.0
fluent-bundle 0.15.3 0.16.0
fluent-syntax 0.11.1 0.12.0
jsonwebtoken 9.3.1 10.3.0
rand 0.8.6 0.10.1
sha2 0.10.9 0.11.0
validator 0.18.1 0.20.0

Updates governor from 0.8.1 to 0.10.4

Commits
  • 9f3a79d Merge pull request #291 from boinkor-net/release/governor/0.10.4
  • 9010ee9 Update Changelog
  • 2351660 Release 0.10.4 🎉🎉
  • 61b1754 Merge pull request #290 from boinkor-net/push-pnoqtmytrrpz
  • 1bdc26d Use feature(doc_cfg) instead of feature(doc_auto_cfg) for docsrs
  • 296018b chore: Update ci_rust.yml in governor
  • a29466c chore: Update release_pr_for_crates_io.yml in governor
  • 78a3be2 chore: Update release_to_crates_io.yml in governor
  • 1c5840c Merge pull request #289 from boinkor-net/release/governor/0.10.3
  • fff7f37 Update Changelog for release
  • Additional commits viewable in compare view

Updates fluent from 0.16.1 to 0.17.0

Release notes

Sourced from fluent's releases.

fluent 0.17.0

  • Bump version to reflect breaking changes in re-exported FluentBundle

fluent 0.16.2

  • Cleanup docs
Commits
  • 83e9a45 chore: Bump fluent crate version to reflect breakage in re-exported fluent_bu...
  • f22da4e chore: Bump versions across workspace
  • 1ca071e chore: Correct typo, travelled→traveled
  • 484b6cf chore: Normalize TOML formatting with taplo
  • 3dfa930 chore: Setup cargo-deny
  • 1f08585 deps: Specify tested minor version of rustc-hash dependency
  • be1b1cb chore(fluent-syntax): Fix typos in fixtures (also fixed upstream)
  • 4b6f26d Merge pull request #382 from alerque/release-prep
  • cd5c60c docs: Update changelogs with currently merged changes
  • 16ed702 deps: Move all commmon dependencies to workspace to normalize versions
  • Additional commits viewable in compare view

Updates fluent-bundle from 0.15.3 to 0.16.0

Release notes

Sourced from fluent-bundle's releases.

fluent-bundle 0.16.0

  • Implement NUMBER builtin
  • Improve examples
  • Refactor to remove unnecessary named lifetimes
  • Cleanup docs
  • Satiate Clippy
  • Bump smallvec to 1.13
  • Bump rand to 0.9
  • Bump self_cell to 1.2
  • Bump serde_yaml to 0.9
Commits
  • f22da4e chore: Bump versions across workspace
  • 1ca071e chore: Correct typo, travelled→traveled
  • 484b6cf chore: Normalize TOML formatting with taplo
  • 3dfa930 chore: Setup cargo-deny
  • 1f08585 deps: Specify tested minor version of rustc-hash dependency
  • be1b1cb chore(fluent-syntax): Fix typos in fixtures (also fixed upstream)
  • 4b6f26d Merge pull request #382 from alerque/release-prep
  • cd5c60c docs: Update changelogs with currently merged changes
  • 16ed702 deps: Move all commmon dependencies to workspace to normalize versions
  • c83e5eb style: Normalize sort of derives
  • Additional commits viewable in compare view

Updates fluent-syntax from 0.11.1 to 0.12.0

Release notes

Sourced from fluent-syntax's releases.

fluent-syntax 0.12.0

  • Add module serializer
  • De-ambiguate dependencies vs. features
  • Cleanup docs
  • Satiate Clippy
Commits
  • f22da4e chore: Bump versions across workspace
  • 1ca071e chore: Correct typo, travelled→traveled
  • 484b6cf chore: Normalize TOML formatting with taplo
  • 3dfa930 chore: Setup cargo-deny
  • 1f08585 deps: Specify tested minor version of rustc-hash dependency
  • be1b1cb chore(fluent-syntax): Fix typos in fixtures (also fixed upstream)
  • 4b6f26d Merge pull request #382 from alerque/release-prep
  • cd5c60c docs: Update changelogs with currently merged changes
  • 16ed702 deps: Move all commmon dependencies to workspace to normalize versions
  • c83e5eb style: Normalize sort of derives
  • Additional commits viewable in compare view

Updates jsonwebtoken from 9.3.1 to 10.3.0

Changelog

Sourced from jsonwebtoken's changelog.

10.3.0 (2026-01-27)

  • Export everything needed to define your own CryptoProvider
  • Fix type confusion with exp/nbf when not required

10.2.0 (2025-11-06)

  • Remove Clone bound from decode functions

10.1.0 (2025-10-18)

  • add dangerous::insecure_decode
  • Implement TryFrom &Jwk for DecodingKey

10.0.0 (2025-09-29)

  • BREAKING: now using traits for crypto backends, you have to choose between aws_lc_rs and rust_crypto
  • Add Clone bound to decode
  • Support decoding byte slices
  • Support JWS
Commits

Updates rand from 0.8.6 to 0.10.1

Changelog

Sourced from rand's changelog.

[0.10.1] — 2026-02-11

This release includes a fix for a soundness bug; see #1763.

Changes

  • Document panic behavior of make_rng and add #[track_caller] (#1761)
  • Deprecate feature log (#1763)

#1761: rust-random/rand#1761 #1763: rust-random/rand#1763

[0.10.0] - 2026-02-08

Changes

  • The dependency on rand_chacha has been replaced with a dependency on chacha20. This changes the implementation behind StdRng, but the output remains the same. There may be some API breakage when using the ChaCha-types directly as these are now the ones in chacha20 instead of rand_chacha (#1642).
  • Rename fns IndexedRandom::choose_multiple -> sample, choose_multiple_array -> sample_array, choose_multiple_weighted -> sample_weighted, struct SliceChooseIter -> IndexedSamples and fns IteratorRandom::choose_multiple -> sample, choose_multiple_fill -> sample_fill (#1632)
  • Use Edition 2024 and MSRV 1.85 (#1653)
  • Let Fill be implemented for element types, not sliceable types (#1652)
  • Fix OsError::raw_os_error on UEFI targets by returning Option<usize> (#1665)
  • Replace fn TryRngCore::read_adapter(..) -> RngReadAdapter with simpler struct RngReader (#1669)
  • Remove fns SeedableRng::from_os_rng, try_from_os_rng (#1674)
  • Remove Clone support for StdRng, ReseedingRng (#1677)
  • Use postcard instead of bincode to test the serde feature (#1693)
  • Avoid excessive allocation in IteratorRandom::sample when amount is much larger than iterator size (#1695)
  • Rename os_rng -> sys_rng, OsRng -> SysRng, OsError -> SysError (#1697)
  • Rename Rng -> RngExt as upstream rand_core has renamed RngCore -> Rng (#1717)

Additions

  • Add fns IndexedRandom::choose_iter, choose_weighted_iter (#1632)
  • Pub export Xoshiro128PlusPlus, Xoshiro256PlusPlus prngs (#1649)
  • Pub export ChaCha8Rng, ChaCha12Rng, ChaCha20Rng behind chacha feature (#1659)
  • Fn rand::make_rng() -> R where R: SeedableRng (#1734)

Removals

  • Removed ReseedingRng (#1722)
  • Removed unused feature "nightly" (#1732)
  • Removed feature small_rng (#1732)

#1632: rust-random/rand#1632 #1642: rust-random/rand#1642 #1649: rust-random/rand#1649 #1652: rust-random/rand#1652 #1653: rust-random/rand#1653 #1659: rust-random/rand#1659 #1665: rust-random/rand#1665 #1669: rust-random/rand#1669 #1674: rust-random/rand#1674 #1677: rust-random/rand#1677 #1693: rust-random/rand#1693 #1695: rust-random/rand#1695 #1697: rust-random/rand#1697

... (truncated)

Commits

Updates sha2 from 0.10.9 to 0.11.0

Commits

Updates validator from 0.18.1 to 0.20.0

Changelog

Sourced from validator's changelog.

0.20.0 (2025/01/20)

  • Implement AsRegex for std::sync::LazyLock<Regex>
  • Bug fix for nested issue with custom only running nested if outer passes
  • Support Deserialize for ValidationErrors

0.19.0 (2024/11/03)

  • Swap to using proc-macro-error-2 instead of proc-macro-error for Syn
  • Bumped MSRV to 1.81 because of error naming changes.
  • Add more ValidateRegex impl
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

Bumps the rust-deps group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [governor](https://github.com/boinkor-net/governor) | `0.8.1` | `0.10.4` |
| [fluent](https://github.com/projectfluent/fluent-rs) | `0.16.1` | `0.17.0` |
| [fluent-bundle](https://github.com/projectfluent/fluent-rs) | `0.15.3` | `0.16.0` |
| [fluent-syntax](https://github.com/projectfluent/fluent-rs) | `0.11.1` | `0.12.0` |
| [jsonwebtoken](https://github.com/Keats/jsonwebtoken) | `9.3.1` | `10.3.0` |
| [rand](https://github.com/rust-random/rand) | `0.8.6` | `0.10.1` |
| [sha2](https://github.com/RustCrypto/hashes) | `0.10.9` | `0.11.0` |
| [validator](https://github.com/Keats/validator) | `0.18.1` | `0.20.0` |


Updates `governor` from 0.8.1 to 0.10.4
- [Release notes](https://github.com/boinkor-net/governor/releases)
- [Changelog](https://github.com/boinkor-net/governor/blob/master/release.toml)
- [Commits](boinkor-net/governor@v0.8.1...v0.10.4)

Updates `fluent` from 0.16.1 to 0.17.0
- [Release notes](https://github.com/projectfluent/fluent-rs/releases)
- [Changelog](https://github.com/projectfluent/fluent-rs/blob/main/docs/release-process.md)
- [Commits](https://github.com/projectfluent/fluent-rs/compare/fluent@0.16.1...fluent@0.17.0)

Updates `fluent-bundle` from 0.15.3 to 0.16.0
- [Release notes](https://github.com/projectfluent/fluent-rs/releases)
- [Changelog](https://github.com/projectfluent/fluent-rs/blob/main/docs/release-process.md)
- [Commits](https://github.com/projectfluent/fluent-rs/compare/fluent-bundle@0.15.3...fluent-bundle@0.16.0)

Updates `fluent-syntax` from 0.11.1 to 0.12.0
- [Release notes](https://github.com/projectfluent/fluent-rs/releases)
- [Changelog](https://github.com/projectfluent/fluent-rs/blob/main/docs/release-process.md)
- [Commits](https://github.com/projectfluent/fluent-rs/compare/fluent-syntax@0.11.1...fluent-syntax@0.12.0)

Updates `jsonwebtoken` from 9.3.1 to 10.3.0
- [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](Keats/jsonwebtoken@v9.3.1...v10.3.0)

Updates `rand` from 0.8.6 to 0.10.1
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.6...0.10.1)

Updates `sha2` from 0.10.9 to 0.11.0
- [Commits](RustCrypto/hashes@sha2-v0.10.9...sha2-v0.11.0)

Updates `validator` from 0.18.1 to 0.20.0
- [Changelog](https://github.com/Keats/validator/blob/master/CHANGELOG.md)
- [Commits](Keats/validator@v0.18.1...v0.20.0)

---
updated-dependencies:
- dependency-name: governor
  dependency-version: 0.10.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-deps
- dependency-name: fluent
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-deps
- dependency-name: fluent-bundle
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-deps
- dependency-name: fluent-syntax
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-deps
- dependency-name: jsonwebtoken
  dependency-version: 10.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-deps
- dependency-name: rand
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-deps
- dependency-name: sha2
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-deps
- dependency-name: validator
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-deps
...

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 Apr 22, 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