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: isaacs/minimatch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9.0.1
Choose a base ref
...
head repository: isaacs/minimatch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v9.0.3
Choose a head ref
  • 5 commits
  • 9 files changed
  • 2 contributors

Commits on Jun 23, 2023

  1. Prevent dots only at the start of repeat patterns

    A pattern like `+(?)` will note that the `?` matches the start of the
    pattern, and prevent it from matching a dot. However, this is not
    "anything other than a dot, repeating", but rather "repeating, where the
    first repetition doesn't start with a dot".
    
    With this change, repetitive extglob patterns in the start position are
    expanded such that the first instance of the pattern may not start with
    a dot, but any subsequent repetitions may begin with a dot.
    
    Fix: #211
    isaacs committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    37f6df6 View commit details
    Browse the repository at this point in the history
  2. 9.0.2

    isaacs committed Jun 23, 2023
    Configuration menu
    Copy the full SHA
    b7bd6d6 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. update deps

    isaacs committed Jul 5, 2023
    4 Configuration menu
    Copy the full SHA
    402b059 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. fix typo

    ETOOMANYMINILIBS
    
    PR-URL: #217
    Credit: @lukekarrys
    Close: #217
    Reviewed-by: @isaacs
    lukekarrys authored and isaacs committed Jul 6, 2023
    2 Configuration menu
    Copy the full SHA
    f617a2a View commit details
    Browse the repository at this point in the history
  2. 9.0.3

    isaacs committed Jul 6, 2023
    2 Configuration menu
    Copy the full SHA
    f8b46a3 View commit details
    Browse the repository at this point in the history
Loading