Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/regex
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.12.3
Choose a base ref
...
head repository: rust-lang/regex
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.12.4
Choose a head ref
  • 11 commits
  • 8 files changed
  • 5 contributors

Commits on Feb 3, 2026

  1. rure-0.2.5

    BurntSushi committed Feb 3, 2026
    Configuration menu
    Copy the full SHA
    2aaa18d View commit details
    Browse the repository at this point in the history
  2. cargo: also include benches

    This seems to be what `regex-syntax` uses.
    BurntSushi committed Feb 3, 2026
    Configuration menu
    Copy the full SHA
    d8761c0 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2026

  1. syntax: fix negation handling in HIR translation

    Previously, the HIR translation of ClassUnicode ignored the != operator in the ClassUnicodeKind::NamedValue variant as it referred to ClassUnicode::negated, which describes whether the class uses \p or \P.
    
    This commit fixes the issue by calling ClassUnicode::is_negated.
    pandaman64 authored Feb 24, 2026
    Configuration menu
    Copy the full SHA
    c4865a0 View commit details
    Browse the repository at this point in the history
  2. regex-syntax-0.8.10

    BurntSushi committed Feb 24, 2026
    Configuration menu
    Copy the full SHA
    839d16b View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2026

  1. Configuration menu
    Copy the full SHA
    2c7b172 View commit details
    Browse the repository at this point in the history
  2. docs: clarify regex-lite word boundaries

    Fixes #1356
    marko1olo authored and BurntSushi committed Jun 6, 2026
    Configuration menu
    Copy the full SHA
    a7f2ff6 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2026

  1. syntax: avoid re-canonicalizing the entire IntervalSet on push (#1308)

    Canonicalize is taking up a significant amount due to a
    regex with a huge amount of character ranges (generated by
    [lalrpop](https://github.com/lalrpop/lalrpop)'s lexer expanding
    multiple `\w` in a token). While this could perhaps be fixed in
    lalrpop I did notice the TODO in the code and after addressing this
    so we automatically union and compress on each push instead of
    re-canonicalizing on every push and that fixed the performance problem.
    
    I did see the earlier attempt at this in #1051 and it seems like that
    was reverted and regression tests were added so I hope that and the
    existing tests are enough (I don't have a clear idea on what tests
    might be missing).
    
    PR #1308
    Marwes authored Jun 9, 2026
    Configuration menu
    Copy the full SHA
    9825c74 View commit details
    Browse the repository at this point in the history
  2. changelog: 1.12.4

    BurntSushi committed Jun 9, 2026
    Configuration menu
    Copy the full SHA
    d709000 View commit details
    Browse the repository at this point in the history
  3. regex-syntax-0.8.11

    BurntSushi committed Jun 9, 2026
    Configuration menu
    Copy the full SHA
    1401679 View commit details
    Browse the repository at this point in the history
  4. deps: update to regex-syntax 0.8.11

    This brings in the performance optimization as part of the
    `regex 1.12.4` release.
    BurntSushi committed Jun 9, 2026
    Configuration menu
    Copy the full SHA
    7b89cf0 View commit details
    Browse the repository at this point in the history
  5. 1.12.4

    BurntSushi committed Jun 9, 2026
    Configuration menu
    Copy the full SHA
    7b96fdc View commit details
    Browse the repository at this point in the history
Loading