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: gruhn/regex-utils
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.6.0
Choose a base ref
...
head repository: gruhn/regex-utils
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.6.1
Choose a head ref
  • 7 commits
  • 17 files changed
  • 1 contributor

Commits on Jul 20, 2025

  1. Configuration menu
    Copy the full SHA
    2f458ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    14a6ef5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    25f5d69 View commit details
    Browse the repository at this point in the history
  4. fix(ast): postfix operator of epsilon

    When a postfix operator (e.g. `?`, `*`, `+`, ...) is applied to epsilon
    (aka. the empty string) then we should not render the operator.
    Otherwise we can create invalid expressions. For example,
     - /aε*/ would become /a*/ which changes the meaning of the expression.
     - /ε*/ would become /*/ which is not a valid expression at all and
       throws an error on construction.
    gruhn committed Jul 20, 2025
    Configuration menu
    Copy the full SHA
    2ce7b0e View commit details
    Browse the repository at this point in the history
  5. test: Arbitrary for RegExpAST

    gruhn committed Jul 20, 2025
    Configuration menu
    Copy the full SHA
    541b579 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0918203 View commit details
    Browse the repository at this point in the history
  7. docs(README): fix link

    gruhn committed Jul 20, 2025
    Configuration menu
    Copy the full SHA
    80b31c4 View commit details
    Browse the repository at this point in the history
Loading