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.10.4
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.10.5
Choose a head ref
  • 15 commits
  • 25 files changed
  • 8 contributors

Commits on Mar 26, 2024

  1. syntax: accept {,n} as an equivalent to {0,n}

    Most regular expression engines don't accept the `{,n}` syntax, but
    some other do it (namely Python's `re` library). This introduces a new
    parser configuration option that enables the `{,n}` syntax.
    
    PR #1086
    plusvic authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    f5d0b69 View commit details
    Browse the repository at this point in the history
  2. regex-syntax-0.8.3

    BurntSushi committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    d895bd9 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. doc: remove repetitive words

    JohnEndson authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    66a3bca View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. doc: fix typos

    careworry authored Apr 18, 2024
    Configuration menu
    Copy the full SHA
    4c565c8 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. syntax/utf8: avoid a spurious vector reallocation

    This reworks `Utf8Sequences` logic in order to avoid allocating a
    0-sized vector and immediately reallocating it for the initial element.
    Directly create the populated vector instead.
    
    I was looking at the memory usage patterns of [rolldown] through
    heaptrack, and this spot showed up as a potentially-spurious temporary
    allocation. The consumer side is [here][consumer side]. I do not have a
    specific benchmark for this.
    
    [rolldown]: https://github.com/rolldown/rolldown
    [consumer side]: https://github.com/rolldown/rolldown/blob/ce36a195ed4e9ce7c446557cefff4750a2268e01/crates/rolldown/src/utils/extract_hash_pattern.rs#L12
    lucab authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    b12a276 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. syntax: simplify Hir::dot constructors

    This also likely avoids a spurious alloc or two, although
    it assuredly doesn't matter in practice.
    Lucretiel authored May 6, 2024
    Configuration menu
    Copy the full SHA
    9c139f4 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. lite: fix attribute warning about rustfmt

    I'm not sure why I wrote it like this originally?
    BurntSushi committed May 8, 2024
    Configuration menu
    Copy the full SHA
    023f1c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ddeb85e View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2024

  1. doc: fix duplicate phrasing typo

    purrden authored Jun 2, 2024
    Configuration menu
    Copy the full SHA
    ab4c8d1 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2024

  1. Configuration menu
    Copy the full SHA
    1f9f9cc View commit details
    Browse the repository at this point in the history
  2. changelog: 1.10.4

    BurntSushi committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    1430b65 View commit details
    Browse the repository at this point in the history
  3. regex-syntax-0.8.4

    BurntSushi committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    4757b5f View commit details
    Browse the repository at this point in the history
  4. regex-automata-0.4.7

    BurntSushi committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    68c4f0b View commit details
    Browse the repository at this point in the history
  5. changelog: 1.10.4 and 1.10.5

    We had previously release regex 1.10.4 but omitted a changelog entry for
    it. So this adds it.
    BurntSushi committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    377463b View commit details
    Browse the repository at this point in the history
  6. 1.10.5

    BurntSushi committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    0718fc5 View commit details
    Browse the repository at this point in the history
Loading