Skip to content

chore(deps): bump the minor group across 1 directory with 3 updates#191

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/minor-ebeb8c8bf9
Open

chore(deps): bump the minor group across 1 directory with 3 updates#191
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/minor-ebeb8c8bf9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 3 updates in the / directory: bitflags, regex and zbus.

Updates bitflags from 2.11.1 to 2.13.1

Release notes

Sourced from bitflags's releases.

2.13.1

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.13.0...2.13.1

2.13.0

What's Changed

Full Changelog: bitflags/bitflags@2.12.1...2.13.0

2.12.1

What's Changed

Full Changelog: bitflags/bitflags@2.12.0...2.12.1

2.12.0

Yanked

This release has been yanked because the #[flag_name] processing noticeably increases macro recursion, hitting the default limit in cases that are already close to it.

What's Changed

Full Changelog: bitflags/bitflags@2.11.1...2.12.0

Changelog

Sourced from bitflags's changelog.

2.13.1

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.13.0...2.13.1

2.13.0

What's Changed

Full Changelog: bitflags/bitflags@2.12.1...2.13.0

2.12.1

What's Changed

Full Changelog: bitflags/bitflags@2.12.0...2.12.1

2.12.0

Yanked

This release has been yanked because the #[flag_name] processing noticeably increases macro recursion, hitting the default limit in cases that are already close to it.

What's Changed

Full Changelog: bitflags/bitflags@2.11.1...2.12.0

Commits
  • f92a292 Merge pull request #493 from bitflags/cargo/2.13.1
  • c1271c5 prepare for 2.13.1 release
  • e077c4a Merge pull request #492 from bolshoytoster/main
  • 75d1be4 Bless compile fail stderr
  • 7813d71 Support the MSRV
  • d8f8234 Remove unused variable warning with empty bitflags
  • 2e27d6a Fix const _ = !0;
  • dd8beda Fix Self in flags
  • dbc0ce1 Lower the LLVM IR output of the generated output
  • 9253889 prepare for 2.13.0 release
  • Additional commits viewable in compare view

Updates regex from 1.12.3 to 1.13.1

Changelog

Sourced from regex's changelog.

1.13.1 (2026-07-15)

This is a release that fixes a bug where incorrect regex match offsets could be reported. Note that this doesn't impact whether a match occurs or not, just where it occurs. The match offsets are still valid for slicing, they just may not refer to the correct leftmost-first match. See #1364 for (many) more details.

Bug fixes:

  • #1354: Fixes previously unsound reverse suffix and inner optimizations.

1.13.0 (2026-07-09)

This release includes a new API, a regex! macro, for lazy compilation of a regex from a string literal. If you use regexes a lot, it's likely you've already written one exactly like it. The new macro can be used like this:

use regex::regex;
fn is_match(line: &str) -> bool {
// The regex will be compiled approximately once and reused automatically.
// This avoids the footgun of using Regex::new here, which would
// guarantee that it would be compiled every time this routine is called.
// This would likely make this routine much slower than it needs to be.
regex!(r"bar|baz").is_match(line)
}
let hay = "
path/to/foo:54:Blue Harvest
path/to/bar:90:Something, Something, Something, Dark Side
path/to/baz:3:It's a Trap!
";
let matches = hay.lines().filter(|line| is_match(line)).count();
assert_eq!(matches, 2);

Improvements:

  • #709: Add a new regex! macro for efficient and automatic reuse of a compiled regex.

1.12.4 (2026-06-09)

This release includes a performance optimization for compilation of regexes

... (truncated)

Commits
  • 2b52759 1.13.1, redux
  • 40e9823 1.13.1
  • 75fcb96 changelog: 1.13.1
  • 64ad0b6 automata: fix bug in reverse suffix/inner optimization
  • fa91c31 automata: fix a bug caught by Codex review
  • 30390ec automata: formatting tweaks
  • 821a8eb automata: refactor reverse suffix/inner search slightly
  • 10afd70 automata: expose the extracted literals for inner literal extraction
  • 8c34f41 automata: avoid reverse suffix optimization for non-leftmost-first
  • 5524f02 test: add regression tests for failed reverse suffix/inner optimizations
  • Additional commits viewable in compare view

Updates zbus from 5.15.0 to 5.18.0

Release notes

Sourced from zbus's releases.

zbus-5.18.0

Added

  • ✨ Add Connection::closed() and is_closed() API.

Documentation

  • 📝 Document ObjectManager-ancestor deadlock in ObjectServer::at.

Other

  • 🚨 Replace manual match-and-return with the ? operator.

Testing

  • ✅ Test registering an interface from a &mut self callback.

zbus_macros-5.18.0

Documentation

  • 📝 Document the Interface impl methods generated by #[interface]. #1542

zbus-5.17.0

Changed

  • ♻️ Move pending method call to separate module.

Other

  • 🧐 Add concurrent method-call benchmark.

Performance

  • ⚡️ Route method replies directly by serial.

zbus_macros-5.17.0

Documentation

  • 📝 Document the Interface impl methods generated by #[interface]. #1542

zbus-5.16.0

Changed

  • 🔧 Restrict vsock features to Linux targets.

Documentation

  • 📝 Replace docs.rs all-features with explicit feature list.

Fixed

  • 🚑️ Fix sendmsg for iOS and other apple OS.

Other

  • 🔊 warn on GetAll error during property cache init. #1325

zbus_macros-5.16.0

Documentation

  • 📝 Document the Interface impl methods generated by #[interface]. #1542
Commits
  • 3948314 Merge pull request #1858 from zeenix/fix-5.18.0-changelog
  • 793a1e1 📝 zb: Add 5.18.0 changelog entries dropped by release-plz
  • 51c3ad4 Merge pull request #1857 from bilelmoussaoui/bilelmoussaoui/new-release
  • e6f3bba 🔖 Fresh releases
  • 0da20a1 Merge pull request #1856 from z-galaxy/renovate/tokio-1.x-lockfile
  • 3452ec3 ⬆️ Update tokio to v1.53.0
  • 70a92c2 Merge pull request #1841 from bilelmoussaoui/bilelmoussaoui/fix-bug
  • 2b049b4 Merge pull request #1855 from z-galaxy/renovate/tokio-1.x-lockfile
  • fab31f6 ⬆️ micro: Update tokio to v1.52.4
  • ae46181 ✨ zb: Add Connection::closed() and is_closed() API
  • Additional commits viewable in compare view

@dependabot @github

dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, rust. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Bumps the minor group with 3 updates in the / directory: [bitflags](https://github.com/bitflags/bitflags), [regex](https://github.com/rust-lang/regex) and [zbus](https://github.com/z-galaxy/zbus).


Updates `bitflags` from 2.11.1 to 2.13.1
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.11.1...2.13.1)

Updates `regex` from 1.12.3 to 1.13.1
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.12.3...1.13.1)

Updates `zbus` from 5.15.0 to 5.18.0
- [Release notes](https://github.com/z-galaxy/zbus/releases)
- [Changelog](https://github.com/z-galaxy/zbus/blob/main/release-plz.toml)
- [Commits](z-galaxy/zbus@zbus-5.15.0...zbus-5.18.0)

---
updated-dependencies:
- dependency-name: bitflags
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: regex
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: zbus
  dependency-version: 5.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/minor-ebeb8c8bf9 branch from ccde93a to b9dda89 Compare July 20, 2026 07:58
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