1 | # master
|
2 |
|
3 | # 3.0.0
|
4 |
|
5 | * [BREAKING] drop node 8
|
6 | * upgrade all deps
|
7 | * move to GH Actions
|
8 | * [Bugfix] handle EPERM from windows filesystems correctly
|
9 |
|
10 | # 2.2.0
|
11 |
|
12 | * add globOptions to provide the capability to configure string globs with all minimatch options passed to `globs` and `ignored`
|
13 |
|
14 | # 2.1.0
|
15 |
|
16 | * Add the ability to provide an alternative `fs` implementation via options.
|
17 |
|
18 | # 2.0.0
|
19 |
|
20 | * Drop support for unsupported Node versions (Support 8.* + >= 10)
|
21 |
|
22 | # 1.1.0
|
23 |
|
24 | * [Bugfix] break cycles caused by symlinks. Specifically, when traversing directory structures we now no longer re-enter.
|
25 |
|
26 | # 1.0.1
|
27 |
|
28 | * fix typescript typings entry.mtime is number not date
|
29 |
|
30 | # 1.0.0
|
31 |
|
32 | * no changes, simply releasing as 1.0.0 to signify stability
|
33 |
|
34 | # 0.3.4
|
35 |
|
36 | * added includeBaseDir to doc
|
37 | * ES6ify the readme
|
38 |
|
39 | # 0.3.3
|
40 |
|
41 | * Added Typescript types
|
42 |
|
43 | # 0.3.2
|
44 |
|
45 | * add `includeBasePath` so walkSync results are prepended with the basePath.
|
46 |
|
47 | # 0.3.1
|
48 |
|
49 | * whitelist index.js for publish (don't publish uneeded files)
|
50 |
|
51 | # 0.3.0
|
52 |
|
53 | * add ignore globs
|
54 |
|
55 | # 0.2.7
|
56 |
|
57 | * [BUGFIX] Previously `walkSync` returned entries sorted by `relativePath`
|
58 | almost, but not quite, lexicographically. This now sorts lexicographically in
|
59 | all cases.
|
60 |
|
61 | # 0.2.6
|
62 |
|
63 | * On Windows, normalize backslashes in root path to forward slashes
|
64 |
|
65 | # 0.2.5
|
66 |
|
67 | * Exclude all non-essential files from npm
|
68 |
|
69 | # 0.2.4
|
70 |
|
71 | * Fix file entries to have a numeric timestamp rather than a `Date`
|
72 |
|
73 | # 0.2.3
|
74 |
|
75 | * Extract matcher-collection into separate package
|
76 |
|
77 | # 0.2.2
|
78 |
|
79 | * Add `walkSync.entries`, which returns objects instead of files
|
80 |
|
81 | # 0.2.1
|
82 |
|
83 | * Add `directories` flag
|
84 | * Allow passing the globs array as a `globs` option
|
85 |
|
86 | # 0.2.0
|
87 |
|
88 | * Add optional `globArray` parameter
|
89 |
|
90 | # 0.1.3
|
91 |
|
92 | * Switch to `fs.statSync` (instead of `fs.lstatSync`) to follow symlinks.
|
93 |
|
94 | # 0.1.2
|
95 |
|
96 | * Sort readdir entries for deterministic behavior
|
97 |
|
98 | # 0.1.1
|
99 |
|
100 | * Do not follow symlinks (as advertised)
|
101 |
|
102 | # 0.1.0
|
103 |
|
104 | * Bump version without change, to allow for caret/tilde dependencies
|
105 |
|
106 | # 0.0.1
|
107 |
|
108 | * Initial release
|