Skip to content

chore(deps)(deps): bump the patch-and-minor group across 1 directory with 3 updates#129

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

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

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the patch-and-minor group with 3 updates in the / directory: ignore, regex and gungraun.

Updates ignore from 0.4.27 to 0.4.28

Commits
  • 324f7ef ignore-0.4.28
  • 241b87b ignore: support GIT_CONFIG_GLOBAL and GIT_CONFIG_SYSTEM for `core.exclude...
  • b6849da ignore/walk: add WalkBuilder::empty and WalkBuilder::from_iter
  • 8bca2eb doc: fix typo in man page
  • 61a9fd8 doc: fix typo
  • e7b0f89 lint: use cloned() or copied() when we can
  • 767086d searcher: hint at sequential memory map reading
  • 9548e86 ignore/types: add PKGBUILD type
  • bc3ad92 ignore/types: add Rocq .v files
  • 93acfe2 ignore/types: add proto for filtering to protobuf files
  • Additional commits viewable in compare view

Updates regex from 1.12.4 to 1.13.0

Changelog

Sourced from regex's changelog.

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.
Commits
  • 926af2e 1.13.0
  • 7d941a9 regex-automata-0.4.15
  • e358341 api: add regex! macro for lazy compilation
  • c420333 automata: disable miri on a couple doc tests
  • b9d2cf7 github: add FUNDING link
  • 0858006 docs: add AI policy for contributors
  • 468fc64 automata: reject dense DFA start states that are match states
  • See full diff in compare view

Updates gungraun from 0.19.3 to 0.19.4

Release notes

Sourced from gungraun's releases.

v0.19.4

[0.19.4] - 2026-07-10

Fixed

  • (#684): Default regression limits were applied if only regression fail-fast was set in Callgrind::fail_fast, Dhat::fail_fast, and Cachegrind::fail_fast.
  • (#688): Update dependencies. Fixes crossbeam-epoch RUSTSEC-2026-0204. Fixes quick-xml (transitive dependency via inferno), RUSTSEC-2026-0194 and RUSTSEC-2026-0195.

#684: gungraun/gungraun#684 #688: gungraun/gungraun#688

Full Changelog: gungraun/gungraun@v0.19.3...v0.19.4

Changelog

Sourced from gungraun's changelog.

[0.19.4] - 2026-07-10

Fixed

  • (#684): Default regression limits were applied if only regression fail-fast was set in Callgrind::fail_fast, Dhat::fail_fast, and Cachegrind::fail_fast.
  • (#688): Update dependencies. Fixes crossbeam-epoch RUSTSEC-2026-0204. Fixes quick-xml (transitive dependency via inferno), RUSTSEC-2026-0194 and RUSTSEC-2026-0195.

#684: gungraun/gungraun#684 #688: gungraun/gungraun#688

Commits
  • f086839 Merge pull request #689 from gamma0987/prepare-release
  • 9fde6cb docs(readme): Make headline work on github and crates.io
  • 199edd8 Bump version 0.19.3 -> 0.19.4
  • 675793f Update CHANGELOG
  • 470f4fb Merge pull request #688 from gamma0987/update-deps
  • b433c12 tests(system): Update drd valgrind suppressions from new rust release
  • 8207153 tests(system): Try running system tests with avx2 enabled
  • b9e9bdf chore(deps): Fix crossbeam-epoch RUSTSEC-2026-0204. Update dependencies
  • c9c88a8 lint: Fix clippy lints from new rust stable version
  • 2c8356d Merge pull request #686 from gungraun/renovate/cc-1.x-lockfile
  • 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 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 dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 10, 2026
…with 3 updates

---
updated-dependencies:
- dependency-name: gungraun
  dependency-version: 0.19.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: ignore
  dependency-version: 0.4.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: regex
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/patch-and-minor-a8e83b926a branch from 3477108 to 6b76f16 Compare July 13, 2026 11:10
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.

0 participants