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: regex-syntax-0.8.10
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: regex-syntax-0.8.11
Choose a head ref
  • 5 commits
  • 5 files changed
  • 4 contributors

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
Loading