Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 15, 2025

Bumps the production-dependencies group with 10 updates in the / directory:

Package From To
clap 4.5.45 4.5.47
config 0.15.14 0.15.15
chrono 0.4.41 0.4.42
minijinja 2.11.0 2.12.0
serde 1.0.219 1.0.223
serde_json 1.0.142 1.0.145
tantivy 0.24.2 0.25.0
regex 1.11.1 1.11.2
idna 1.0.3 1.1.0
tempfile 3.20.0 3.22.0

Updates clap from 4.5.45 to 4.5.47

Release notes

Sourced from clap's releases.

v4.5.47

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

v4.5.46

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str
Changelog

Sourced from clap's changelog.

[4.5.47] - 2025-09-02

Features

  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible

Fixes

  • (derive) Update runtime error text to match clap

[4.5.46] - 2025-08-26

Features

  • Expose StyledStr::push_str
Commits
  • f046ca6 chore: Release
  • 436949d docs: Update changelog
  • 1ddab84 Merge pull request #5954 from epage/tests
  • 8a66dbf test(complete): Add more native cases
  • 76465cf test(complete): Make things more consistent
  • 232cedb test(complete): Remove redundant index
  • 02244a6 Merge pull request #5949 from krobelus/option-name-completions-after-positionals
  • 2e13847 fix(complete): Missing options in multi-val arg
  • 74388d7 test(complete): Multi-valued, unbounded positional
  • 5b3d45f refactor(complete): Extract function for options
  • Additional commits viewable in compare view

Updates config from 0.15.14 to 0.15.15

Changelog

Sourced from config's changelog.

[0.15.15] - 2025-08-29

Fixes

  • (json5) Correctly deserialize null (regressed in 0.15.14)
Commits
  • 3931f4c chore: Release config version 0.15.15
  • 1e85483 docs: Update changelog
  • 63ef7c7 fix(format): Correctly deserialize json5 (#690)
  • ea823c1 fix(format): Correctly deserialize json5
  • b4bc68f test(format): Verify null where supported
  • 35bafb9 refactor(file): Minor clean up to file discovery (#688)
  • e6e3fcf fix(file): Switch error to user-facing terms
  • daf02c8 refactor(file): Clarify we are dealing with a path, not a name
  • fd28355 refactor(format): Simplify extension mapping
  • b154785 refactor(file): Pull out extension lookup
  • Additional commits viewable in compare view

Updates chrono from 0.4.41 to 0.4.42

Release notes

Sourced from chrono's releases.

0.4.42

What's Changed

Commits
  • f3fd15f Bump version to 0.4.42
  • 5cf5603 strftime: add regression test case
  • a623170 strftime: simplify error handling
  • 36fbfb1 strftime: move specifier handling out of match to reduce rightward drift
  • 7f413c3 strftime: yield None early
  • 9d5dfe1 strftime: outline constants
  • e5f6be7 strftime: move error() method below caller
  • d516c27 strftime: merge impl blocks
  • 0ee2172 strftime: re-order items to keep impls together
  • 757a8b0 Upgrade to windows-bindgen 0.63
  • Additional commits viewable in compare view

Updates minijinja from 2.11.0 to 2.12.0

Release notes

Sourced from minijinja's releases.

2.12.0

Release Notes

  • Item or attribute lookup will no longer swallow all errors in Python. #814
  • Added |zip filter. #818
  • Fix break_on_hyphens for the |wordwrap filter. #823
  • Prefer error message from unknown_method_callback. #824
  • Ignore .jinja and .jinja2 as extensions in auto escape. #832

Install minijinja-cli 2.12.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/minijinja/releases/download/2.12.0/minijinja-cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/mitsuhiko/minijinja/releases/download/2.12.0/minijinja-cli-installer.ps1 | iex"

Download minijinja-cli 2.12.0

File Platform Checksum
minijinja-cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
minijinja-cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
minijinja-cli-i686-pc-windows-msvc.zip x86 Windows checksum
minijinja-cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
minijinja-cli-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
minijinja-cli-i686-unknown-linux-gnu.tar.xz x86 Linux checksum
minijinja-cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
minijinja-cli-aarch64-unknown-linux-musl.tar.xz ARM64 MUSL Linux checksum
minijinja-cli-i686-unknown-linux-musl.tar.xz x86 MUSL Linux checksum
minijinja-cli-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog

Sourced from minijinja's changelog.

2.12.0

  • Item or attribute lookup will no longer swallow all errors in Python. #814
  • Added |zip filter. #818
  • Fix break_on_hyphens for the |wordwrap filter. #823
  • Prefer error message from unknown_method_callback. #824
  • Ignore .jinja and .jinja2 as extensions in auto escape. #832
Commits
  • 50d24fb 2.12.0
  • b6e0417 Switch to regular cargo-dist
  • b808ef9 Added .jinja and .jinja2 as ignored extensions (#832)
  • 27b1d0e fix: mixed up example names, "object-using-async" and "function-using-async" ...
  • 891aa60 Improve documentation of 'trim' filter (#829)
  • 16cfc39 Add changelog entry
  • 5c91137 Prefer error message from unknown_method_callback (#824)
  • 7ebd538 Fix WASI doctest failure in Object trait (#830)
  • 31331bb Fix some clippy warnings
  • 513f6f2 fix: wrong slicing with negative indices which overflow range bounds (#822)
  • Additional commits viewable in compare view

Updates serde from 1.0.219 to 1.0.223

Release notes

Sourced from serde's releases.

v1.0.223

  • Fix serde_core documentation links (#2978)

v1.0.222

  • Make serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @​aytey)

v1.0.221

  • Documentation improvements (#2973)
  • Deprecate serde_if_integer128! macro (#2975)

v1.0.220

Commits
  • 6c316d7 Release 1.0.223
  • a4ac0c2 Merge pull request #2978 from dtolnay/htmlrooturl
  • ed76364 Change serde_core's html_root_url to docs.rs/serde_core
  • 57e21a1 Release 1.0.222
  • bb58726 Merge pull request #2950 from aytey/fix_lifetime_issue_2024
  • 3f69251 Delete unneeded field of MapDeserializer
  • fd4decf Merge pull request #2976 from dtolnay/content
  • 00b1b6b Move Content's Deserialize impl from serde_core to serde
  • cf141aa Move Content's Clone impl from serde_core to serde
  • ff3aee4 Release 1.0.221
  • Additional commits viewable in compare view

Updates serde_json from 1.0.142 to 1.0.145

Release notes

Sourced from serde_json's releases.

v1.0.145

  • Raise serde version requirement to >=1.0.220

v1.0.144

  • Switch serde dependency to serde_core (#1285)

v1.0.143

Commits
  • efa66e3 Release 1.0.145
  • 23679e2 Add serde version constraint
  • fc27baf Release 1.0.144
  • caef3c6 Ignore uninlined_format_args pedantic clippy lint
  • 81ba3aa Merge pull request #1285 from dtolnay/serdecore
  • d21e8ce Switch serde dependency to serde_core
  • 6beb6cd Merge pull request #1286 from dtolnay/up
  • 1dbc803 Raise required compiler to Rust 1.61
  • 0bf5d87 Enforce trybuild >= 1.0.108
  • d12e943 Update actions/checkout@v4 -> v5
  • Additional commits viewable in compare view

Updates tantivy from 0.24.2 to 0.25.0

Release notes

Sourced from tantivy's releases.

Tantivy v0.25

What's Changed

New Contributors

Full Changelog: quickwit-oss/tantivy@0.24...0.25.0

Changelog

Sourced from tantivy's changelog.

Tantivy 0.25

Bugfixes

Features/Improvements

Commits
  • b4139bc chore: Release
  • 8676a1f prepare release: update Changelog (#2685)
  • 021ff2a move bench to binggan (#2684)
  • 39e0276 per field size details (#2679)
  • a1d65c3 test stable ordering with pagination (#2683)
  • 2e4615c Merge pull request #2678 from Darkheir/feat/query_grammar_space_between_field...
  • 610091e feat: Applies PR review suggestion
  • c301e7b Merge pull request #2673 from paradedb/stuhood.fix-order-by-dup-string
  • d9eb093 Attempt to clarify sorted_ords_to_term_cb.
  • d4b0901 feat: Support spaces between field name and value
  • Additional commits viewable in compare view

Updates regex from 1.11.1 to 1.11.2

Changelog

Sourced from regex's changelog.

1.11.2 (2025-08-24)

This is a new patch release of regex with some minor fixes. A larger number of typo or lint fix patches were merged. Also, we now finally recommend using std::sync::LazyLock.

Improvements:

Bug fixes:

Commits

Updates idna from 1.0.3 to 1.1.0

Commits

Updates tempfile from 3.20.0 to 3.22.0

Changelog

Sourced from tempfile's changelog.

3.22.0

  • Updated windows-sys requirement to allow version 0.61.x
  • Remove unstable-windows-keep-open-tempfile feature.

3.21.0

  • Updated windows-sys requirement to allow version 0.60.x
Commits
  • f720dbe chore: release 3.22.0
  • 55d742c chore: remove deprecated unstable feature flag
  • bc41a0b build(deps): update windows-sys requirement from >=0.52, <0.61 to >=0.52, <0....
  • 3c55387 test: make sure we don't drop tempdirs early (#373)
  • 17bf644 doc(builder): clarify permissions (#372)
  • c7423f1 doc(env): document the alternative to setting the tempdir (#371)
  • 5af60ca test(wasi): run a few tests that shouldn't have been disabled (#370)
  • 6c0c561 fix(doc): temp_dir doesn't check if writable
  • 48bff5f test(tempdir): configure tempdir on wasi
  • 704a1d2 test(tempdir): cleanup tempdir tests and run more tests on wasi
  • Additional commits viewable in compare view

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

…y with 10 updates

Bumps the production-dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.45` | `4.5.47` |
| [config](https://github.com/rust-cli/config-rs) | `0.15.14` | `0.15.15` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.41` | `0.4.42` |
| [minijinja](https://github.com/mitsuhiko/minijinja) | `2.11.0` | `2.12.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.223` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.142` | `1.0.145` |
| [tantivy](https://github.com/quickwit-oss/tantivy) | `0.24.2` | `0.25.0` |
| [regex](https://github.com/rust-lang/regex) | `1.11.1` | `1.11.2` |
| [idna](https://github.com/servo/rust-url) | `1.0.3` | `1.1.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.20.0` | `3.22.0` |



Updates `clap` from 4.5.45 to 4.5.47
- [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.45...clap_complete-v4.5.47)

Updates `config` from 0.15.14 to 0.15.15
- [Changelog](https://github.com/rust-cli/config-rs/blob/main/CHANGELOG.md)
- [Commits](rust-cli/config-rs@v0.15.14...v0.15.15)

Updates `chrono` from 0.4.41 to 0.4.42
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.41...v0.4.42)

Updates `minijinja` from 2.11.0 to 2.12.0
- [Release notes](https://github.com/mitsuhiko/minijinja/releases)
- [Changelog](https://github.com/mitsuhiko/minijinja/blob/main/CHANGELOG.md)
- [Commits](mitsuhiko/minijinja@2.11.0...2.12.0)

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

Updates `serde_json` from 1.0.142 to 1.0.145
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.142...v1.0.145)

Updates `tantivy` from 0.24.2 to 0.25.0
- [Release notes](https://github.com/quickwit-oss/tantivy/releases)
- [Changelog](https://github.com/quickwit-oss/tantivy/blob/main/CHANGELOG.md)
- [Commits](quickwit-oss/tantivy@0.24.2...0.25.0)

Updates `regex` from 1.11.1 to 1.11.2
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.11.1...1.11.2)

Updates `idna` from 1.0.3 to 1.1.0
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/commits)

Updates `tempfile` from 3.20.0 to 3.22.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.20.0...v3.22.0)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.47
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: config
  dependency-version: 0.15.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: chrono
  dependency-version: 0.4.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: minijinja
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: serde
  dependency-version: 1.0.223
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde_json
  dependency-version: 1.0.145
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tantivy
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: regex
  dependency-version: 1.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: idna
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tempfile
  dependency-version: 3.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 15, 2025
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.

1 participant