Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2025

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

Package From To
fancy-regex 0.16.2 0.17.0
serde_json 1.0.145 1.0.148
reqwest 0.12.25 0.12.28
tempfile 3.23.0 3.24.0
clap_complete 4.5.61 4.5.62
dioxus-primitives f165b24 251f298
rfd 0.15.4 0.16.0

Updates fancy-regex from 0.16.2 to 0.17.0

Release notes

Sourced from fancy-regex's releases.

0.17.0

Added

  • Add support for "easy" variable-length lookbehinds (enabled via new feature flag) (#194, #196)
  • Add support for more word boundaries: \b{start}, \b{end}, \b{start-half}, \b{end-half} (#193)
  • Allow {...} repetition syntax after assertions (except in Oniguruma mode) (#193)
  • Add Oniguruma mode flag to playground (#199)

Changed

  • Rewrite Theory section of Readme in a more formal style (#187)
  • Box CompileError in Error enum to reduce size (#204)
  • Bail out early when \G fails to match for increased performance (#198)
  • Handle ignore_whitespace case in parsing escape sequences (#193)
  • Add tests to ensure that Regex is Send and Sync (#195)

Fixed

  • Fix clippy lint warnings (#204)
Changelog

Sourced from fancy-regex's changelog.

[0.17.0] - 2025-12-13

Added

  • Add support for "easy" variable-length lookbehinds (enabled via new feature flag) (#194, #196)
  • Add support for more word boundaries: \b{start}, \b{end}, \b{start-half}, \b{end-half} (#193)
  • Allow {...} repetition syntax after assertions (except in Oniguruma mode) (#193)
  • Add Oniguruma mode flag to playground (#199)

Changed

  • Rewrite Theory section of Readme in a more formal style (#187)
  • Box CompileError in Error enum to reduce size (#204)
  • Bail out early when \G fails to match for increased performance (#198)
  • Handle ignore_whitespace case in parsing escape sequences (#193)
  • Add tests to ensure that Regex is Send and Sync (#195)

Fixed

  • Fix clippy lint warnings (#204)
Commits
  • 1f8a5d1 Version 0.17.0
  • c0b90eb Merge pull request #198 from fancy-regex/min_pos_continue_optimization
  • 6f4ea4f Add documentation for min_pos_in_group
  • 342e5e0 Add tests for various patterns containing \G
  • c97470e track whether inside an alternation
  • 29ff5dd bail out early when \G fails to match
  • 656e1df add benchmarks for \G
  • d38b259 record min position in group
  • 2ee85f9 Merge pull request #203 from fancy-regex/remove_clone_from_insn
  • 6690229 Merge pull request #204 from fancy-regex/fix-large-compile-error
  • Additional commits viewable in compare view

Updates serde_json from 1.0.145 to 1.0.148

Release notes

Sourced from serde_json's releases.

v1.0.148

  • Update zmij dependency to 1.0

v1.0.147

  • Switch float-to-string algorithm from Ryū to Żmij for better f32 and f64 serialization performance (#1304)

v1.0.146

Commits

Updates reqwest from 0.12.25 to 0.12.28

Release notes

Sourced from reqwest's releases.

v0.12.28

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.27...v0.12.28

v0.12.27

tl;dr

  • Add ClientBuilder::windows_named_pipe(name) option that will force all requests over that Windows Named Pipe.

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.26...v0.12.27

v0.12.26

tl;dr

  • Fix sending Accept-Encoding header only with values configured with reqwest, regardless of underlying tower-http config.

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.25...v0.12.26

Changelog

Sourced from reqwest's changelog.

v0.12.28

  • Fix compiling on Windows if TLS and SOCKS features are not enabled.

v0.12.27

  • Add ClientBuilder::windows_named_pipe(name) option that will force all requests over that Windows Named Piper.

v0.12.26

  • Fix sending Accept-Encoding header only with values configured with reqwest, regardless of underlying tower-http config.
Commits

Updates tempfile from 3.23.0 to 3.24.0

Changelog

Sourced from tempfile's changelog.

3.24.0

  • Actually support WASIp2 without the nightly feature. This library is now feature complete on WASIp2 without any additional feature flags.
  • Exclude CI scripts from the published crate.
Commits

Updates clap_complete from 4.5.61 to 4.5.62

Commits
  • ca0aeba chore: Release
  • 44cdcc1 docs: Update changelog
  • 2dc500c Merge pull request #6198 from devjgm/greg/fix-clap-completer-issue-with-fish
  • 2280d48 fix: fix path quoting with dynamic env completer
  • ac1006c Merge pull request #6197 from devjgm/greg/fix-clap-completer-issue-with-fish
  • d495145 clap_complete: add unit test for fish env completer
  • 1a6c0de chore(deps): Update Rust Stable to v1.92 (#6194)
  • 53a6921 Merge pull request #6189 from clap-rs/renovate/actions-checkout-6.x
  • 7cbec58 chore(deps): Update actions/checkout action to v6
  • See full diff in compare view

Updates dioxus-primitives from f165b24 to 251f298

Commits

Updates rfd from 0.15.4 to 0.16.0

Release notes

Sourced from rfd's releases.

0.16.0

What's Changed

New Contributors

Full Changelog: PolyMeilex/rfd@0.15.4...0.16.0

Changelog

Sourced from rfd's changelog.

0.16.0

  • Fix regressions on Wayland due to ashpd upgrade (#255).
  • The pick_file() method of file dialog targeted WASM now can return None correctly when cancelled (#258)
  • Update windows-sys to 0.60.
  • Make ashpd Wayland APIs optional. These are now gated behind the wayland feature, which is enabled by default.

Changed items in the public API

-pub fn AsyncFileDialog::set_parent<W: HasWindowHandle + HasDisplayHandle>(self, parent: &W) -> Self
+pub fn AsyncFileDialog::set_parent<W: HasWindowHandle + HasDisplayHandle + ?Sized>(self, parent: &W) -> Self
-pub fn AsyncMessageDialog::set_parent<W: HasWindowHandle + HasDisplayHandle>(self, parent: &W) -> Self
+pub fn MessageDialog::set_parent<W: HasWindowHandle + HasDisplayHandle + ?Sized>(self, parent: &W) -> Self
-pub fn FileDialog::set_parent<W: HasWindowHandle + HasDisplayHandle>(self, parent: &W) -> Self
+pub fn rfd::FileDialog::set_parent<W: HasWindowHandle + HasDisplayHandle + ?Sized>(self, parent: &W) -> Self
-pub fn MessageDialog::set_parent<W: HasWindowHandle + HasDisplayHandle>(self, parent: &W) -> Self
+pub fn MessageDialog::set_parent<W: HasWindowHandle + HasDisplayHandle + ?Sized>(self, parent: &W) -> Self

0.15.3

  • Update objc2 to v0.6.
  • Update ashpd to 0.11.

0.15.1

  • Update ashpd to 0.10.
  • Fix issue where with no filter added no files are selectable on Windows (#211).

0.15.0

  • Move from objc crates to objc2 crates.
  • Fix AsyncFileDialog blocking the executor on Windows (#191)
  • Add TDF_SIZE_TO_CONTENT to TaskDialogIndirect config so that it can display longer text without truncating/wrapping (80 characters instead of 55) (#202)
  • Fix xdg-portal backend not accepting special characters in message dialogs
  • Make set_parent require HasWindowHandle + HasDisplayHandle
  • Add support for set_parent in XDG Portals
  • Update ashpd to 0.9.
  • Add support for files without an extension in XDG Portal filters
  • Derive Clone for FileHandle

0.14.0

  • i18n for GTK and XDG Portal
  • Use XDG Portal as default
  • Use zenity as a fallback for XDG Portal
  • Update raw-window-handle to 0.6.
  • Update winit in example to 0.29.
  • Update ashpd to 0.8.
  • Update wasm CSS to respect the color scheme (including dark mode)

... (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 cargo group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [fancy-regex](https://github.com/fancy-regex/fancy-regex) | `0.16.2` | `0.17.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.145` | `1.0.148` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.25` | `0.12.28` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.23.0` | `3.24.0` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.61` | `4.5.62` |
| [dioxus-primitives](https://github.com/DioxusLabs/components) | ``f165b24`` | ``251f298`` |
| [rfd](https://github.com/PolyMeilex/rfd) | `0.15.4` | `0.16.0` |



Updates `fancy-regex` from 0.16.2 to 0.17.0
- [Release notes](https://github.com/fancy-regex/fancy-regex/releases)
- [Changelog](https://github.com/fancy-regex/fancy-regex/blob/main/CHANGELOG.md)
- [Commits](fancy-regex/fancy-regex@0.16.2...0.17.0)

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

Updates `reqwest` from 0.12.25 to 0.12.28
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.25...v0.12.28)

Updates `tempfile` from 3.23.0 to 3.24.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.23.0...v3.24.0)

Updates `clap_complete` from 4.5.61 to 4.5.62
- [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.61...clap_complete-v4.5.62)

Updates `dioxus-primitives` from `f165b24` to `251f298`
- [Commits](DioxusLabs/components@f165b24...251f298)

Updates `rfd` from 0.15.4 to 0.16.0
- [Release notes](https://github.com/PolyMeilex/rfd/releases)
- [Changelog](https://github.com/PolyMeilex/rfd/blob/master/CHANGELOG.md)
- [Commits](PolyMeilex/rfd@0.15.4...0.16.0)

---
updated-dependencies:
- dependency-name: fancy-regex
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: serde_json
  dependency-version: 1.0.148
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: reqwest
  dependency-version: 0.12.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tempfile
  dependency-version: 3.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: clap_complete
  dependency-version: 4.5.62
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: dioxus-primitives
  dependency-version: 251f298be04daa1ac5e76d2ebe2846675620bf8b
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: rfd
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
...

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 Dec 29, 2025
@github-actions
Copy link

Code Coverage

Package Line Rate Health
packages/util/src 82%
packages/cli/src/commands 62%
packages/cwl_annotation/src 35%
packages/cwl_execution/src 64%
packages/cli/src 62%
packages/gui/src/components/files 9%
packages/remote_execution/src 0%
packages/core/src/parser 93%
packages/remote_execution/src/reana 0%
packages/gui/src 27%
packages/cwl_execution/src/runner 65%
packages/gui/src/components 2%
packages/reana/src 79%
packages/cwl_core/src 79%
packages/gui/src/components/graph 0%
packages/repository/src 98%
packages/test_utils 83%
packages/gui/src/components/layout 0%
packages/cwl/src 0%
packages/core/src 72%
Summary 61% (4001 / 6584)

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