chore(deps): update rust crate regex to v1.12.1
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
regex | dependencies | minor |
1.11.3 -> 1.12.1
|
Release Notes
rust-lang/regex (regex)
v1.12.1
===================
This release makes a bug fix in the new regex::Captures::get_match
API
introduced in 1.12.0
. There was an oversight with the lifetime parameter
for the Match
returned. This is technically a breaking change, but given
that it was caught almost immediately and I've yanked the 1.12.0
release,
I think this is fine.
v1.12.0
===================
This release contains a smattering of bug fixes, a fix for excessive memory
consumption in some cases and a new regex::Captures::get_match
API.
Improvements:
-
FEATURE #1146:
Add
Capture::get_match
for returning the overall match withoutunwrap()
.
Bug fixes:
- BUG #1083: Fixes a panic in the lazy DFA (can only occur for especially large regexes).
-
BUG #1116:
Fixes a memory usage regression for large regexes (introduced in
regex 1.9
). - BUG #1195: Fix universal start states in sparse DFA.
- BUG #1295: Fixes a panic when deserializing a corrupted dense DFA.
-
BUG 8f5d9479:
Make
regex_automata::meta::Regex::find
consistently returnNone
whenWhichCaptures::None
is used.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.