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: v6.0.4
Choose a base ref
...
head repository: isaacs/minimatch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.1.0
Choose a head ref
  • 2 commits
  • 17 files changed
  • 1 contributor

Commits on Jan 17, 2023

  1. Handle UNC paths, add preserveMultipleSlashes

    This adds some slightly modified behavior when a pattern or path starts
    with `//` on Windows.
    
    - In the case of `//?/<drive letter>:/...`, the `?` is treated as a
      literal character, rather than a wildcard. That is, `//?/c:` will
      _not_ match `//x/c:`.
    - UNC patterns starting with `//?/<drive letter>:/` will match file
      paths starting with `<drive letter>:` if the drive letters match
      case-insensitively.
    - File paths starting with `//?/<drive letter>:/` will match file
      patterns starting with `<drive letter>:` if the drive letters match
      case-insensitively.
    
    Add `{preserveMultipleSlashes:true}` option to suppress the
    behavior where multiple consecutive `/` characters would be
    effectively coerced into a single path portion separator.
    isaacs committed Jan 17, 2023
    Configuration menu
    Copy the full SHA
    a5f6a25 View commit details
    Browse the repository at this point in the history
  2. 6.1.0

    isaacs committed Jan 17, 2023
    Configuration menu
    Copy the full SHA
    0e7b19e View commit details
    Browse the repository at this point in the history
Loading