Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2025

Bumps the patch-updates group with 12 updates:

Package From To
anyhow 1.0.97 1.0.98
half 2.5.0 2.6.0
petgraph 0.8.0 0.8.1
cc 1.2.18 1.2.19
clap 4.5.35 4.5.36
clap_builder 4.5.35 4.5.36
data-encoding 2.8.0 2.9.0
jiff 0.2.5 0.2.8
jiff-static 0.2.5 0.2.8
sys_traits 0.1.8 0.1.9
winnow 0.7.4 0.7.6
xml-rs 0.8.25 0.8.26

Updates anyhow from 1.0.97 to 1.0.98

Release notes

Sourced from anyhow's releases.

1.0.98

Commits
  • 709fe86 Release 1.0.98
  • cbc1ad2 Merge pull request #415 from dtolnay/intodyn
  • e1a2017 Add 2 different conversions to Box<dyn Error + Send + Sync + 'static>
  • 29f2edd Merge pull request #416 from dtolnay/oldnostd
  • 2244db8 Omit unused object_boxed from vtable in old no-std rustc
  • 213a9c2 Merge pull request #414 from dtolnay/nightly
  • 02aa6b6 Make all nightly go through the module that was probed
  • See full diff in compare view

Updates half from 2.5.0 to 2.6.0

Release notes

Sourced from half's releases.

2.6.0

Changed

  • Fixed some incorrect minimum supported versions of dependencies that weren't caught due to improper Cargo.lock:
    • num-traits 0.2.14 -> 0.2.16
    • zerocopy 0.8.0 -> 0.8.23
    • arbitrary 1.3.2 -> 1.4.1

Added

  • f16 and bf16 now implement Immutable and KnownLayout for zerocopy crate. By [@​usamoi].
Changelog

Sourced from half's changelog.

[2.6.0] - 2024-04-08

Changed

  • Fixed some incorrect minimum supported versions of dependencies that weren't caught due to improper Cargo.lock:
    • num-traits 0.2.14 -> 0.2.16
    • zerocopy 0.8.0 -> 0.8.23
    • arbitrary 1.3.2 -> 1.4.1

Added

  • f16 and bf16 now implement Immutable and KnownLayout for zerocopy crate. By [@​usamoi].
Commits

Updates petgraph from 0.8.0 to 0.8.1

Release notes

Sourced from petgraph's releases.

petgraph-v0.8.1

This patch release re-adds a missing VisitMap implementation that was dropped in the 0.8.0 release, improves error messaging in panicking functions, and adds capacity management methods to UnionFind.

Bug Fixes

  • Bring back VisitMap impl for std HashSet (#764)

New Features

  • Add UnionFind capacity management methods (#736)
  • add #[track_caller] to functions that panic (#748)

Contributors

Changelog

Sourced from petgraph's changelog.

0.8.1 - 2025-04-07

This patch release re-adds a missing VisitMap implementation that was dropped in the 0.8.0 release, improves error messaging in panicking functions, and adds capacity management methods to UnionFind.

Bug Fixes

  • Bring back VisitMap impl for std HashSet (#764)

New Features

  • Add UnionFind capacity management methods (#736)
  • add #[track_caller] to functions that panic (#748)
Commits

Updates cc from 1.2.18 to 1.2.19

Release notes

Sourced from cc's releases.

cc-v1.2.19

Other

  • Fix musl compilation: Add musl as a prefix fallback (#1455)
Changelog

Sourced from cc's changelog.

1.2.19 - 2025-04-11

Other

  • Fix musl compilation: Add musl as a prefix fallback (#1455)
Commits

Updates clap from 4.5.35 to 4.5.36

Release notes

Sourced from clap's releases.

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.36] - 2025-04-11

Fixes

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

Updates clap_builder from 4.5.35 to 4.5.36

Release notes

Sourced from clap_builder's releases.

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_builder's changelog.

[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
Commits

Updates data-encoding from 2.8.0 to 2.9.0

Commits

Updates jiff from 0.2.5 to 0.2.8

Changelog

Sourced from jiff's changelog.

0.2.8 (2025-04-13)

This release fixes a bug where the constructors on SignedDuration for floating point durations could panic (in debug mode) or produce incorrect results (in release mode). This bug only impacts users of the try_from_secs_{f32,f64} and from_secs_{f32,f64} methods on SignedDuration.

Enhancements:

  • #326: Add an alternate Debug impl for SignedDuration that only shows its second and nanosecond components (while using only one component when the other is zero).

Bug fixes:

  • #324: Fix a bug that could produce a panic or incorrect results in SignedDuration::(try_)?from_secs_{f32,f64}.

0.2.7 (2025-04-13)

This release includes a bug fix that changes how an empty but set TZ environment variable is interpreted (as indistinguishable from TZ=UTC). This also includes a new enabled by default create feature, perf-inline, which allows toggling Jiff's use of inline(always). This may help improve compile times or decrease binary size.

Enhancements:

  • #320: Remove some internal uses of generics to mildly improve compile times.
  • #321: Add perf-inline crate feature for controlling inline(always) annotations.

Bug fixes:

  • #311: Make TZ= indistinguishable from TZ=UTC.

0.2.6 (2025-04-07)

This release includes a few bug fixes and support for discovering the IANA Time Zone Database automatically on Illumos.

Enhancements:

... (truncated)

Commits
  • d27af19 0.2.8
  • d1921a8 changelog: 0.2.8
  • 093d6b9 signed_duration: add alternate Debug implementation
  • c939baa signed_duration: fix panic in SignedDuration::try_from_secs_f64
  • 3e32e71 0.2.7
  • 01e2414 changelog: 0.2.7
  • 06b94b5 jiff-static: add perf-inline feature to jiff-static
  • cd4b25e vim: remove most linked projects
  • 058c317 jiff-cli: re-generate shared code in jiff-static
  • 32c4b93 changelog: add recent changes
  • Additional commits viewable in compare view

Updates jiff-static from 0.2.5 to 0.2.8

Changelog

Sourced from jiff-static's changelog.

0.2.8 (2025-04-13)

This release fixes a bug where the constructors on SignedDuration for floating point durations could panic (in debug mode) or produce incorrect results (in release mode). This bug only impacts users of the try_from_secs_{f32,f64} and from_secs_{f32,f64} methods on SignedDuration.

Enhancements:

  • #326: Add an alternate Debug impl for SignedDuration that only shows its second and nanosecond components (while using only one component when the other is zero).

Bug fixes:

  • #324: Fix a bug that could produce a panic or incorrect results in SignedDuration::(try_)?from_secs_{f32,f64}.

0.2.7 (2025-04-13)

This release includes a bug fix that changes how an empty but set TZ environment variable is interpreted (as indistinguishable from TZ=UTC). This also includes a new enabled by default create feature, perf-inline, which allows toggling Jiff's use of inline(always). This may help improve compile times or decrease binary size.

Enhancements:

  • #320: Remove some internal uses of generics to mildly improve compile times.
  • #321: Add perf-inline crate feature for controlling inline(always) annotations.

Bug fixes:

  • #311: Make TZ= indistinguishable from TZ=UTC.

0.2.6 (2025-04-07)

This release includes a few bug fixes and support for discovering the IANA Time Zone Database automatically on Illumos.

Enhancements:

... (truncated)

Commits
  • d27af19 0.2.8
  • d1921a8 changelog: 0.2.8
  • 093d6b9 signed_duration: add alternate Debug implementation
  • c939baa signed_duration: fix panic in SignedDuration::try_from_secs_f64
  • 3e32e71 0.2.7
  • 01e2414 changelog: 0.2.7
  • 06b94b5 jiff-static: add perf-inline feature to jiff-static
  • cd4b25e vim: remove most linked projects
  • 058c317 jiff-cli: re-generate shared code in jiff-static
  • 32c4b93 changelog: add recent changes
  • Additional commits viewable in compare view

Updates sys_traits from 0.1.8 to 0.1.9

Commits

Updates winnow from 0.7.4 to 0.7.6

Changelog

Sourced from winnow's changelog.

[0.7.6] - 2025-04-07

Features

  • Add TokenSlice::previous_tokens

[0.7.5] - 2025-04-07

Features

  • Add Stream::next_slice_unchecked and Stream::peek_slice_unchecked
Commits

Updates xml-rs from 0.8.25 to 0.8.26

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 patch-updates group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.97` | `1.0.98` |
| [half](https://github.com/VoidStarKat/half-rs) | `2.5.0` | `2.6.0` |
| [petgraph](https://github.com/petgraph/petgraph) | `0.8.0` | `0.8.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.18` | `1.2.19` |
| [clap](https://github.com/clap-rs/clap) | `4.5.35` | `4.5.36` |
| [clap_builder](https://github.com/clap-rs/clap) | `4.5.35` | `4.5.36` |
| [data-encoding](https://github.com/ia0/data-encoding) | `2.8.0` | `2.9.0` |
| [jiff](https://github.com/BurntSushi/jiff) | `0.2.5` | `0.2.8` |
| [jiff-static](https://github.com/BurntSushi/jiff) | `0.2.5` | `0.2.8` |
| [sys_traits](https://github.com/dsherret/sys_traits) | `0.1.8` | `0.1.9` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.7.4` | `0.7.6` |
| [xml-rs](https://github.com/kornelski/xml-rs) | `0.8.25` | `0.8.26` |


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

Updates `half` from 2.5.0 to 2.6.0
- [Release notes](https://github.com/VoidStarKat/half-rs/releases)
- [Changelog](https://github.com/VoidStarKat/half-rs/blob/main/CHANGELOG.md)
- [Commits](VoidStarKat/half-rs@v2.5.0...v2.6.0)

Updates `petgraph` from 0.8.0 to 0.8.1
- [Release notes](https://github.com/petgraph/petgraph/releases)
- [Changelog](https://github.com/petgraph/petgraph/blob/master/CHANGELOG.md)
- [Commits](https://github.com/petgraph/petgraph/compare/[email protected]@v0.8.1)

Updates `cc` from 1.2.18 to 1.2.19
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.18...cc-v1.2.19)

Updates `clap` from 4.5.35 to 4.5.36
- [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.36)

Updates `clap_builder` from 4.5.35 to 4.5.36
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.35...v4.5.36)

Updates `data-encoding` from 2.8.0 to 2.9.0
- [Commits](ia0/data-encoding@v2.8.0...v2.9.0)

Updates `jiff` from 0.2.5 to 0.2.8
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.5...jiff-static-0.2.8)

Updates `jiff-static` from 0.2.5 to 0.2.8
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.5...jiff-static-0.2.8)

Updates `sys_traits` from 0.1.8 to 0.1.9
- [Commits](https://github.com/dsherret/sys_traits/commits)

Updates `winnow` from 0.7.4 to 0.7.6
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.7.4...v0.7.6)

Updates `xml-rs` from 0.8.25 to 0.8.26
- [Changelog](https://github.com/kornelski/xml-rs/blob/main/Changelog.md)
- [Commits](kornelski/xml-rs@0.8.25...0.8.26)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-version: 1.0.98
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: half
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: petgraph
  dependency-version: 0.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cc
  dependency-version: 1.2.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap
  dependency-version: 4.5.36
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap_builder
  dependency-version: 4.5.36
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: data-encoding
  dependency-version: 2.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: jiff
  dependency-version: 0.2.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: jiff-static
  dependency-version: 0.2.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: sys_traits
  dependency-version: 0.1.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: winnow
  dependency-version: 0.7.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: xml-rs
  dependency-version: 0.8.26
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

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 Apr 14, 2025
@dependabot dependabot bot requested a review from a team as a code owner April 14, 2025 03:20
@cwfitzgerald cwfitzgerald enabled auto-merge (squash) April 16, 2025 15:23
auto-merge was automatically disabled April 17, 2025 18:36

Pull request was closed

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 17, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/cargo/patch-updates-bb7723d24c branch April 17, 2025 18:36
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