Skip to content

Commit

Permalink
Add note for 0.13.0 and backtrack limit (see fancy-regex#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
robinst committed Oct 24, 2024
1 parent ac5c4ac commit c1b8a31
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ with the exception that 0.x versions can break between minor versions.
### Changed
- Switch from regex crate to regex-automata and regex-syntax (lower level APIs)
to simplify internals (#121)
- **Note:** Due to above change, more backtracking is done in fancy-regex itself
instead of regex-automata, and you might get a `BacktrackLimitExceeded` with
some patterns that you didn't get before. You can increase the backtrack limit
using `RegexBuilder::backtrack_limit` to help with that.
- Allow escaping some letters in character classes, e.g. `[\A]` used to error
but now matches the same as `[A]` (for compatibility with Oniguruma)
- MSRV (minimum supported Rust version) is now 1.66.1 (from 1.61.0)
Expand Down

0 comments on commit c1b8a31

Please sign in to comment.