Skip to content

chore(deps): update rust crate regex to v1.13.1#80

Open
renovate[bot] wants to merge 1 commit into
devfrom
renovate/regex-1.x-lockfile
Open

chore(deps): update rust crate regex to v1.13.1#80
renovate[bot] wants to merge 1 commit into
devfrom
renovate/regex-1.x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Feb 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
regex dependencies minor 1.12.21.13.1
regex dependencies minor 1.12.31.13.1

Release Notes

rust-lang/regex (regex)

v1.13.1

Compare Source

===================
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.

v1.13.0

Compare Source

===================
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.

v1.12.4

Compare Source

===================
This release includes a performance optimization for compilation of regexes
with very large character classes.

Improvements:

  • #​1308:
    Avoid re-canonicalizing the entire interval set when pushing new class ranges.

v1.12.3

Compare Source

===================
This release excludes some unnecessary things from the archive published to
crates.io. Specifically, fuzzing data and various shell scripts are now
excluded. If you run into problems, please file an issue.

Improvements:

  • #​1319:
    Switch from a Cargo exclude list to an include list, and exclude some
    unnecessary stuff.

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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • 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 commented Feb 4, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: crates/bolt-load/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/bolt-load/Cargo.toml --package regex@1.12.2 --precise 1.13.1
error: package ID specification `regex@1.12.2` did not match any packages
help: there are similar package ID specifications:

  regex@1.13.1

@renovate
renovate Bot force-pushed the renovate/regex-1.x-lockfile branch from 043d2b7 to 342e897 Compare March 13, 2026 19:07
@renovate
renovate Bot force-pushed the renovate/regex-1.x-lockfile branch from 342e897 to c61e238 Compare June 9, 2026 18:05
@renovate renovate Bot changed the title chore(deps): update rust crate regex to v1.12.3 chore(deps): update rust crate regex to v1.12.4 Jun 9, 2026
@renovate
renovate Bot force-pushed the renovate/regex-1.x-lockfile branch from c61e238 to 7ecc288 Compare July 9, 2026 12:40
@renovate renovate Bot changed the title chore(deps): update rust crate regex to v1.12.4 chore(deps): update rust crate regex to v1.13.0 Jul 9, 2026
@renovate
renovate Bot force-pushed the renovate/regex-1.x-lockfile branch from 7ecc288 to 184ca69 Compare July 15, 2026 21:50
@renovate renovate Bot changed the title chore(deps): update rust crate regex to v1.13.0 chore(deps): update rust crate regex to v1.13.1 Jul 15, 2026
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