Skip to content

fix(deps): update rust-minor#66

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rust-minor
Open

fix(deps): update rust-minor#66
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rust-minor

Conversation

@renovate

@renovate renovate Bot commented Feb 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
chumsky dependencies minor 0.120.13
clap workspace.dependencies minor 4.5.574.6.1
cucumber dependencies minor 0.220.23
cucumber dev-dependencies minor 0.220.23
extism dependencies minor 1.13.01.30.0
indexmap dependencies minor 2.13.02.14.0
kameo dependencies minor 0.190.21
nbformat dependencies minor 1.0.01.2.2
owo-colors dependencies minor 4.2.34.3.0
starbase workspace.dependencies minor 0.100.12
tempfile (source) dev-dependencies minor 3.24.03.27.0
tempfile (source) dependencies minor 3.24.03.27.0
tokio dependencies minor 1.49.01.52.3
tokio dev-dependencies minor 1.49.01.52.3
usage-lib (source) dependencies minor 3.2.03.5.3
uuid dependencies minor 1.20.01.23.4
wasm-encoder (source) dependencies minor 0.2440.252
wit-bindgen dependencies minor 0.52.00.58.0
zip dependencies minor 8.4.08.6.0

Release Notes

cucumber-rs/cucumber (cucumber)

v0.23.0

Compare Source

Diff | Milestone

BC Breaks
  • Fixed precedence of operations in tag expressions to align with upstream. (gherkin#52, gherkin#51)
Changed
  • Upgraded [gherkin] crate to 0.16 version. (0d544772)
  • Allowed And-like and But-like keywords at the beginning of Scenario, automatically considering them as Given-type steps. (gherkin#53)
Stebalien/tempfile (tempfile)

v3.27.0

Compare Source

This release adds TempPath::try_from_path and deprecates TempPath::from_path.

Prior to this release, TempPath::from_path made no attempts to convert relative paths into absolute paths. The following code would have deleted the wrong file:

let tmp_path = TempPath::from_path("foo")
std::env::set_current_dir("/some/other/path").unwrap();
drop(tmp_path);

Now:

  1. TempPath::from_path will attempt to convert relative paths into absolute paths. However, this isn't always possible as we need to call std::env::current_dir, which can fail. If we fail to convert the relative path to an absolute path, we simply keep the relative path.
  2. The TempPath::try_from_path behaves exactly like TempPath::from_path, except that it returns an error if we fail to convert a relative path into an absolute path (or if the passed path is empty).

Neither function attempt to verify the existence of the file in question.

Thanks to @​meng-xu-cs for reporting this issue.

v3.26.0

v3.25.0

  • Allow getrandom 0.4.x while retaining support for getrandom 0.3.x.
jdx/usage (usage-lib)

v3.5.3

Compare Source

🐛 Bug Fixes
📦️ Dependency Updates

v3.5.2

Compare Source

🔍 Other Changes

v3.5.1

Compare Source

🐛 Bug Fixes
  • (parse) dedupe required flag validation errors by @​jdx in #​685
  • (zsh) isolate generated completion options by @​jdx in #​686
  • allow for variadic arguments to capture unknown flags as well by @​rtpg in #​676
📚 Documentation
🛡️ Security
📦️ Dependency Updates
New Contributors

v3.5.0

Compare Source

🚀 Features
🐛 Bug Fixes
📚 Documentation
🔍 Other Changes
📦️ Dependency Updates
New Contributors

v3.4.0

Compare Source

🚀 Features
🐛 Bug Fixes
🛡️ Security
  • (ci) add zizmor workflow for github actions security analysis by @​jdx in #​633
🔍 Other Changes
📦️ Dependency Updates
New Contributors

v3.3.0

Compare Source

🚀 Features
  • (complete) auto-completion for usage shebang scripts by @​jdx in #​620
🐛 Bug Fixes
  • (docs) stack banner and pin close button on mobile by @​jdx in #​603
📚 Documentation
🔍 Other Changes
📦️ Dependency Updates

v3.2.1

Compare Source

🐛 Bug Fixes
📚 Documentation
📦️ Dependency Updates
New Contributors
uuid-rs/uuid (uuid)

v1.23.4

Compare Source

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.23.3...v1.23.4

v1.23.3

Compare Source

What's Changed

Full Changelog: uuid-rs/uuid@v1.23.2...v1.23.3

v1.23.2

Compare Source

What's Changed

Full Changelog: uuid-rs/uuid@v1.23.1...v1.23.2

v1.23.1

Compare Source

What's Changed

New Contributors

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

v1.23.0

Compare Source

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

v1.22.0

Compare Source

What's Changed

New Contributors

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

v1.21.0

Compare Source

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.20.0...v1.21.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title chore(deps): update rust crate zip to v7.3.0 chore(deps): update rust crate zip to v7.4.0 Feb 6, 2026
@renovate renovate Bot force-pushed the renovate/rust-minor branch 2 times, most recently from fb960b3 to ce7fbc8 Compare February 9, 2026 21:29
@renovate renovate Bot changed the title chore(deps): update rust crate zip to v7.4.0 chore(deps): update rust-minor Feb 9, 2026
@renovate renovate Bot force-pushed the renovate/rust-minor branch from ce7fbc8 to f4c1dd0 Compare February 10, 2026 20:33
@renovate renovate Bot changed the title chore(deps): update rust-minor fix(deps): update rust-minor Feb 10, 2026
@renovate renovate Bot force-pushed the renovate/rust-minor branch 6 times, most recently from d2100c9 to c75ee03 Compare February 18, 2026 18:33
@renovate renovate Bot force-pushed the renovate/rust-minor branch 5 times, most recently from 165a111 to 43d6d37 Compare February 25, 2026 00:43
@renovate renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from 8819e78 to eaed6e8 Compare March 7, 2026 03:02
@renovate renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from 6c431f0 to 2daa52a Compare March 16, 2026 16:55
@renovate renovate Bot force-pushed the renovate/rust-minor branch 3 times, most recently from 7954d80 to 045a745 Compare March 26, 2026 22:33
@renovate renovate Bot force-pushed the renovate/rust-minor branch 2 times, most recently from 46f17e8 to 2c18eec Compare March 31, 2026 21:21
@renovate renovate Bot force-pushed the renovate/rust-minor branch 3 times, most recently from 1b909c6 to 680360b Compare April 17, 2026 18:00
@renovate renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from 3fe95ff to 690ffa9 Compare April 28, 2026 19:10
@renovate renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from d75e119 to b1d76b3 Compare May 8, 2026 14:43
@renovate renovate Bot force-pushed the renovate/rust-minor branch 2 times, most recently from 3aeea73 to c48b3aa Compare May 21, 2026 18:13
@renovate renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from e1c53a9 to 2cd12f9 Compare June 4, 2026 17:08
@renovate renovate Bot force-pushed the renovate/rust-minor branch 7 times, most recently from 5a99c81 to 07807d5 Compare June 14, 2026 22:16
@renovate renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from 4e19bae to 1d5ac9d Compare June 21, 2026 12:43
@renovate renovate Bot force-pushed the renovate/rust-minor branch from 1d5ac9d to 66ceffc Compare June 23, 2026 21:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants