Skip to content

Commit

Permalink
changelog updates re path separator handling
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed May 12, 2022
1 parent 0049e9a commit af4207b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
## 8.0

- Only support node v12 and higher
- `\` is now **only** used as an escape character, and never as a
path separator in glob patterns, so that Windows users have a
way to match against filenames containing literal glob pattern
characters.
- Glob pattern paths **must** use forward-slashes as path
separators, since `\` is an escape character to match literal
glob pattern characters.
- (8.0.2) `cwd` and `root` will always be automatically coerced
to use `/` as path separators on Windows, as they cannot
contain glob patterns anyway, and are often supplied by
`path.resolve()` and other methods that will use `\` path
separators by default.

## 7.2

Expand Down

0 comments on commit af4207b

Please sign in to comment.