Skip to content

chore(deps): bump the major group across 1 directory with 6 updates#295

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/major-1897abc933
Closed

chore(deps): bump the major group across 1 directory with 6 updates#295
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/major-1897abc933

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 26, 2026

Bumps the major group with 6 updates in the / directory:

Package From To
annotate-snippets 0.11.5 0.12.10
flume 0.11.1 0.12.0
nix 0.30.1 0.31.1
rune-modules 0.13.4 0.14.1
sysinfo 0.37.2 0.38.0
miniz_oxide 0.8.9 0.9.0

Updates annotate-snippets from 0.11.5 to 0.12.10

Changelog

Sourced from annotate-snippets's changelog.

[0.12.10] - 2025-12-01

Fixed

  • Render all removed lines when multiple Patch remove lines #353

[0.12.9] - 2025-11-15

Fixes

  • Prefer exact prefix/suffix matches when trimming replacements #345

[0.12.8] - 2025-10-28

Fixes

  • No longer panic when annotating leading whitespace #334

[0.12.7] - 2025-10-24

Fixes

  • Correctly calculate annotation offsets when trimming unicode characters #331

[0.12.6] - 2025-10-22

Changed

  • Upgraded unicode-width to 0.2.2 #326
    • This update adds support for Unicode 16 and 17, and can affect character width calculations
  • Use straight arrows for standalone Origin #327

Fixes

  • Correctly calculate line numbers for trimmed multi-line suggestions #321
  • Respect .fold(false) when set on suggestions #322
  • Properly calculate the max line number width for suggestions #323
  • Show full line when Patch span points to line end #324

[0.12.5] - 2025-10-14

Fixes

  • Highlight the correct span for duplicated diff lines #318

[0.12.4] - 2025-09-11

Fixes

  • Removed implicit padding with report starting with secondary title #310

... (truncated)

Commits
  • 7563662 Merge pull request #354 from Muscraft/v0.12.10
  • a85b734 chore: Release annotate-snippets version 0.12.10
  • dea51de Merge pull request #353 from Muscraft/fix-multiple-line-removals
  • e164aa4 fix: Show multiple line removals in Diff format
  • 5b355ce test: Multiple line removals
  • e4c7105 Merge pull request #352 from rust-lang/renovate/actions-checkout-6.x
  • c19fcc0 chore(deps): Update actions/checkout action to v6
  • 75dd059 Merge pull request #348 from Muscraft/trusted-publishing
  • 0f88844 chore: Remove cargo-release config file
  • cbd6c26 chore: Add trusted publishing workflow
  • Additional commits viewable in compare view

Updates flume from 0.11.1 to 0.12.0

Changelog

Sourced from flume's changelog.

[0.12.0] - 2025-12-08

Added

  • fastrand feature

Removed

  • nanorand feature

Fixed

  • Panic when using Duration::MAX as timeout
Commits

Updates nix from 0.30.1 to 0.31.1

Changelog

Sourced from nix's changelog.

[0.31.1] - 2026-01-23

Added

  • termios: Add definition for IUCLC to supported platforms (#2702)
  • termios: Add definition for XCASE for supported platforms (#2703)

[0.31.0] - 2026-01-22

Added

  • Added the UDP GSO/GRO socket options and CMsgs on Android. This includes the following types:

    • UdpGsoSegment
    • UdpGroSegment
    • ControlMessage::UdpGsoSegments
    • ControlMessageOwned::UdpGroSegments

    (#2666)

  • Define errno EWOULDBLOCK as an alias of EAGAIN to match the AIX libc definition. (#2692)

  • Enable module ifaddrs on GNU Hurd (#2697)

  • Add termios OutputFlags::OFILL for Linux, Android, Aix, Cygwin, Fuchsia, Haiku, GNU/Hurd, Nto, Redox, Illumos, Solaris and Apple OSes. (#2701)

  • add sync() for cygwin (#2708)

Changed

Fixed

  • Fixed nix::sys::ptrace::syscall_info, which was not setting the data argument properly, causing garbage values to be returned. (#2653)
  • Cast the 'addr' argument of 'madvise()' to '*mut u8' on AIX to match the signature in the AIX libc. (#2655)
  • Fixed the Dir module on NTO, Solaris, Hurd, and possibly other platforms. The

... (truncated)

Commits

Updates rune-modules from 0.13.4 to 0.14.1

Release notes

Sourced from rune-modules's releases.

0.14.0

What's Changed

... (truncated)

Commits

Updates sysinfo from 0.37.2 to 0.38.0

Changelog

Sourced from sysinfo's changelog.

0.38.0

  • Add NetBSD support.
  • Windows: Fix unsoundness for a function used in Motherboard and Product.
  • Linux: Improve CPU info parsing.
  • Fix serde serialization of MacAddr and of Disk::file_system.
Commits
  • 4124381 Update CHANGELOG for 0.38.0
  • 98a3141 Merge pull request #1617 from GuillaumeGomez/updat
  • 7197638 Update crate version to 0.38.0
  • f69a2b9 Fix typos and make Motherboard::new return None on NetBSD
  • 791face Merge pull request #1616 from GuillaumeGomez/netbsd-root
  • b564d9a Add Process::root support for NetBSD
  • 7b324db Merge pull request #1615 from GuillaumeGomez/netbsd
  • ae044ef Implement Process::open_files on NetBSD
  • 8c5cd19 Merge pull request #1609 from notable-equivalent/feature/cgroup-access-from-c
  • 464968f Add C interface for accessing cgroup info
  • Additional commits viewable in compare view

Updates miniz_oxide from 0.8.9 to 0.9.0

Changelog

Sourced from miniz_oxide's changelog.

0.9.0 - 2026-01-12

Version bump due to a minor API break for having to add enum variants. Many enums have been made non_exhaustive to make it easier to avoid API breaks in the future. The minimum rust version is now 1.60.

Bug Fixes

  • (deflate) simplify stored compression, fixes to updating compresson level after start - (c5a7662) - oyvindln
  • (deflate) make more stuff non_exhaustive, reduce deflate stack usage a tiny bit - (cd2d14f) - oyvindln
  • (miniz_oxide) make tdeflflush and compressionstrategy non exhaustive - (130d51d) - oyvindln
  • fix flush test, make new simpler init function for compressoroxide and make flag creation function const - (3bb0d51) - oyvindln
  • make more funtions const and make tinflstatus non_exhaustive - (84a94e8) - oyvindln

Documentation

  • (inflate) add documentation and doctest for decompress_slice_iter_to_slice - (97465ca) - oyvindln

Features

  • feat(deflate): add window_bits feature for deflate, don't set wbits - (e70e395) - oyvindln

Other

  • Implement support for partial flushes (#179) - (2ede365) - Jonathan Behrens
  • Add decompress_with_limit to handle ring buffers (#183) - (bac1abe) - peckpeck
  • Flush improvements (#185) - (0d276ac) - Jim Peters
  • Fix flush_block to always insert zlib header correctly (#187) - (414d9b8) - Jim Peters

Commits
  • 86d92e8 bump c api dep version
  • ca942a7 bump version and changelog
  • cd2d14f fix(deflate): make more stuff non_exhaustive, reduce deflate stack usage a ti...
  • e70e395 feat(deflate): add window_bits feature for deflate, don't set wbits
  • 298569d fix: handle non_exhaustive tinfl return status in c API
  • 84a94e8 fix: make more funtions const and make tinflstatus non_exhaustive
  • 3bb0d51 fix: fix flush test, make new simpler init function for compressoroxide and m...
  • b4bc0f6 Make flush test bail out in case of problems rather than run forever (#186)
  • 414d9b8 Fix flush_block to always insert zlib header correctly (#187)
  • 130d51d fix(miniz_oxide): make tdeflflush and compressionstrategy non exhaustive
  • 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

@dependabot dependabot bot added A-dependencies Area: Pull requests that update a dependency file D-rust Dependabot: Pull requests that update Rust code labels Jan 26, 2026
@dependabot dependabot bot force-pushed the dependabot/cargo/major-1897abc933 branch 2 times, most recently from d961299 to 7e9d499 Compare February 9, 2026 03:28
Bumps the major group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [annotate-snippets](https://github.com/rust-lang/annotate-snippets-rs) | `0.11.5` | `0.12.10` |
| [flume](https://github.com/zesterer/flume) | `0.11.1` | `0.12.0` |
| [nix](https://github.com/nix-rust/nix) | `0.30.1` | `0.31.1` |
| [rune-modules](https://github.com/rune-rs/rune) | `0.13.4` | `0.14.1` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.37.2` | `0.38.0` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.8.9` | `0.9.0` |



Updates `annotate-snippets` from 0.11.5 to 0.12.10
- [Release notes](https://github.com/rust-lang/annotate-snippets-rs/releases)
- [Changelog](https://github.com/rust-lang/annotate-snippets-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/annotate-snippets-rs@0.11.5...0.12.10)

Updates `flume` from 0.11.1 to 0.12.0
- [Changelog](https://github.com/zesterer/flume/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zesterer/flume/commits/0.12)

Updates `nix` from 0.30.1 to 0.31.1
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](nix-rust/nix@v0.30.1...v0.31.1)

Updates `rune-modules` from 0.13.4 to 0.14.1
- [Release notes](https://github.com/rune-rs/rune/releases)
- [Commits](https://github.com/rune-rs/rune/commits)

Updates `sysinfo` from 0.37.2 to 0.38.0
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.37.2...v0.38.0)

Updates `miniz_oxide` from 0.8.9 to 0.9.0
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.8.9...0.9.0)

---
updated-dependencies:
- dependency-name: annotate-snippets
  dependency-version: 0.12.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major
- dependency-name: flume
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major
- dependency-name: nix
  dependency-version: 0.31.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major
- dependency-name: rune-modules
  dependency-version: 0.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major
- dependency-name: sysinfo
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major
- dependency-name: miniz_oxide
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/major-1897abc933 branch from 7e9d499 to bb83f5d Compare February 16, 2026 03:27
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 23, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 23, 2026
@dependabot dependabot bot deleted the dependabot/cargo/major-1897abc933 branch February 23, 2026 03:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-dependencies Area: Pull requests that update a dependency file D-rust Dependabot: Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants