Skip to content

Bump the dependencies group across 1 directory with 9 updates #155

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 12, 2025

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

Package From To
clap 4.5.35 4.5.44
anyhow 1.0.97 1.0.99
serde_json 1.0.140 1.0.142
nom 7.1.3 8.0.0
thiserror 2.0.12 2.0.14
dioxus 0.4.3 0.6.3
dioxus-web 0.4.3 0.6.3
getrandom 0.2.15 0.2.16
dioxus-logger 0.4.1 0.6.2

Updates clap from 4.5.35 to 4.5.44

Release notes

Sourced from clap's releases.

v4.5.44

[4.5.44] - 2025-08-11

Features

  • Add Command::mut_subcommands

v4.5.43

[4.5.43] - 2025-08-06

Fixes

  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

v4.5.42

[4.5.42] - 2025-07-30

Fixes

  • Include subcommand visible long aliases in --help

v4.5.39

[4.5.39] - 2025-05-27

Fixes

  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

v4.5.38

[4.5.38] - 2025-05-11

Fixes

  • (help) When showing aliases, include leading -- or -

v4.5.37

[4.5.37] - 2025-04-18

Features

  • Added ArgMatches::try_clear_id()

v4.5.36

[4.5.36] - 2025-04-11

Fixes

  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now
Changelog

Sourced from clap's changelog.

[4.5.44] - 2025-08-11

Features

  • Add Command::mut_subcommands

[4.5.43] - 2025-08-06

Fixes

  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

[4.5.42] - 2025-07-30

Fixes

  • Include subcommand visible long aliases in --help

[4.5.41] - 2025-07-09

Features

  • Add Styles::context and Styles::context_value to customize the styling of [default: value] like notes in the --help

[4.5.40] - 2025-06-09

Features

  • Support quoted ids in arg!() macro (e.g. arg!("check-config": ...))

[4.5.39] - 2025-05-27

Fixes

  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

[4.5.38] - 2025-05-11

Fixes

  • (help) When showing aliases, include leading -- or -

[4.5.37] - 2025-04-18

Features

  • Added ArgMatches::try_clear_id()

[4.5.36] - 2025-04-11

... (truncated)

Commits
  • 8e2c2c5 chore: Release
  • 427d4fc docs: Update changelog
  • 3b99593 Merge pull request #5896 from epage/env
  • f5fc765 feat(complete): Provide a way to disable env completions
  • c4105bd chore: Release
  • a029b20 docs: Update changelog
  • cf15d48 Merge pull request #5893 from 8LWXpg/patch-2
  • 7e54542 Merge pull request #5892 from 8LWXpg/patch-1
  • 6ffc88f fix(complete): Check if help string is empty
  • 7d8470e fix(complete): Fix single quote escaping in PowerShell
  • Additional commits viewable in compare view

Updates anyhow from 1.0.97 to 1.0.99

Release notes

Sourced from anyhow's releases.

1.0.99

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#420)

1.0.98

Commits
  • f2b963a Release 1.0.99
  • 2c64c15 Merge pull request #420 from dtolnay/enotempty
  • 8cf66f7 Allow build-script cleanup failure with NFSv3 output directory to be non-fatal
  • f5e145c Revert "Pin nightly toolchain used for miri job"
  • 1d7ef1d Update ui test suite to nightly-2025-06-30
  • 6929572 Update ui test suite to nightly-2025-06-18
  • 37224e3 Ignore mismatched_lifetime_syntaxes lint
  • 11f0e81 Pin nightly toolchain used for miri job
  • d04c999 Raise required compiler for backtrace feature to rust 1.82
  • 219d163 Update test suite to nightly-2025-05-01
  • Additional commits viewable in compare view

Updates serde_json from 1.0.140 to 1.0.142

Release notes

Sourced from serde_json's releases.

v1.0.142

v1.0.141

Commits
  • 1731167 Release 1.0.142
  • e51c814 Touch up PR 1265
  • 84abbdb Merge pull request #1265 from aatifsyed/master
  • 6843c36 Release 1.0.141
  • 6e2c210 Touch up PR 1273
  • 623d9b4 Merge pull request #1273 from conradludgate/optimise-string-escaping
  • de70b7d use unreachable_unchecked for escape table. use a second match to roundtrip E...
  • f2d940d replace start index with bytes slice reference
  • 9206cc0 feat: impl Default for &Value
  • cd55b5a Ignore mismatched_lifetime_syntaxes lint
  • Additional commits viewable in compare view

Updates nom from 7.1.3 to 8.0.0

Changelog

Sourced from nom's changelog.

8.0.0 2025-01-25

This version represents a significant refactoring of nom to reduce the amount of code generated by parsers, and reduce the API surface. As such, it comes with some breaking changes, mostly around the move from closure based combinators to trait based ones. In practice, it means that instead of writing combinator(arg)(input), we now write combinator(arg).parse(input).

This release also marks the introduction of the nom-language crate, which will hold tools more focused on language parsing than the rest of nom, like the VerboseError type and the newly added precedence parsing combinators.

Thanks

... (truncated)

Commits

Updates thiserror from 2.0.12 to 2.0.14

Release notes

Sourced from thiserror's releases.

2.0.14

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#426)

2.0.13

  • Documentation improvements
Commits
  • eea6799 Release 2.0.14
  • a2aa6d7 Merge pull request #426 from dtolnay/enotempty
  • f00ebc5 Allow build-script cleanup failure with NFSv3 output directory to be non-fatal
  • 61f28da Release 2.0.13
  • 89872e3 Unindent crate-level markdown links
  • aee87e5 Wrap PR 425 to 80 columns
  • 0f94e99 Merge pull request #425 from Kriskras99/feat/doc_links
  • f1eb081 Add links to more items
  • f301423 Revert "Pin nightly toolchain used for miri job"
  • 7a5fbc6 Update ui test suite to nightly-2025-07-30
  • Additional commits viewable in compare view

Updates dioxus from 0.4.3 to 0.6.3

Release notes

Sourced from dioxus's releases.

Dioxus v0.6.3

This release fixes a number of bugs and cleans up the internal implementations of a few APIs.

Notably

  • Fixes in dx html -> rsx translation
  • Fixes for bundling .exe on windows
  • Proper handling of gitignored manganis assets
  • Support for android device hot-reloading over adb
  • Fixes to template partialeq that enable view transitions in the router

To upgrade:

  • run cargo update
  • install the new CLI with cargo binstall dioxus-cli --force

What's Changed

... (truncated)

Commits

Updates dioxus-web from 0.4.3 to 0.6.3

Release notes

Sourced from dioxus-web's releases.

Dioxus v0.6.3

This release fixes a number of bugs and cleans up the internal implementations of a few APIs.

Notably

  • Fixes in dx html -> rsx translation
  • Fixes for bundling .exe on windows
  • Proper handling of gitignored manganis assets
  • Support for android device hot-reloading over adb
  • Fixes to template partialeq that enable view transitions in the router

To upgrade:

  • run cargo update
  • install the new CLI with cargo binstall dioxus-cli --force

What's Changed

... (truncated)

Commits

Updates getrandom from 0.2.15 to 0.2.16

Changelog

Sourced from getrandom's changelog.

[0.2.16] - 2025-04-22

Added

  • Cygwin support (backport of #626) #654

#654: rust-random/getrandom#654

Commits

Updates dioxus-logger from 0.4.1 to 0.6.2

Release notes

Sourced from dioxus-logger's releases.

Dioxus v0.6.2

Dioxus 0.6.2: Bug fixes and quality-of-life features

This patch release fixes a number of issues during the 1st month of Dioxus 0.6 release.

Make sure you update your dioxus-cli!

cargo binstall dioxus-cli --version 0.6.2 --force

Also make sure to run cargo update to take advantage of the fixes in your app itself.

What's new?

Features:

  • iPadOS support for dx serve
  • Cache-busting for .wasm files
  • Serving on 0.0.0.0 for device hot-reload support
  • out_dir support for dx bundle
  • per-app session cache for storing temp values during dx serve
  • Cuter dx serve extra info panel

Notable Fixes:

  • Hashing of executables in dx serve
  • Fix using o to open files
  • Fix expression autocompelte in rsx!
  • Fix some issues with minification dropping function names and classes
  • Use your android sdk's adb
  • Fix some dx translate class translation issues
  • Fix a number of issues with dx bundle

What's Changed

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

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

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.35` | `4.5.44` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.97` | `1.0.99` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.142` |
| [nom](https://github.com/rust-bakery/nom) | `7.1.3` | `8.0.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.12` | `2.0.14` |
| [dioxus](https://github.com/DioxusLabs/dioxus) | `0.4.3` | `0.6.3` |
| [dioxus-web](https://github.com/DioxusLabs/dioxus) | `0.4.3` | `0.6.3` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.15` | `0.2.16` |
| [dioxus-logger](https://github.com/dioxuslabs/dioxus) | `0.4.1` | `0.6.2` |



Updates `clap` from 4.5.35 to 4.5.44
- [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.35...clap_complete-v4.5.44)

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

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

Updates `nom` from 7.1.3 to 8.0.0
- [Changelog](https://github.com/rust-bakery/nom/blob/main/CHANGELOG.md)
- [Commits](rust-bakery/nom@7.1.3...8.0.0)

Updates `thiserror` from 2.0.12 to 2.0.14
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.12...2.0.14)

Updates `dioxus` from 0.4.3 to 0.6.3
- [Release notes](https://github.com/DioxusLabs/dioxus/releases)
- [Commits](DioxusLabs/dioxus@v0.4.3...v0.6.3)

Updates `dioxus-web` from 0.4.3 to 0.6.3
- [Release notes](https://github.com/DioxusLabs/dioxus/releases)
- [Commits](DioxusLabs/dioxus@v0.4.3...v0.6.3)

Updates `getrandom` from 0.2.15 to 0.2.16
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.15...v0.2.16)

Updates `dioxus-logger` from 0.4.1 to 0.6.2
- [Release notes](https://github.com/dioxuslabs/dioxus/releases)
- [Commits](DioxusLabs/dioxus@v0.4.1...v0.6.2)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: anyhow
  dependency-version: 1.0.99
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: serde_json
  dependency-version: 1.0.142
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: nom
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: thiserror
  dependency-version: 2.0.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: dioxus
  dependency-version: 0.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: dioxus-web
  dependency-version: 0.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: getrandom
  dependency-version: 0.2.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: dioxus-logger
  dependency-version: 0.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: 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 Aug 12, 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.

0 participants