Skip to content

Commit c5fa3d3

Browse files
authored
Merge branch 'tschaub:main' into promise
2 parents 18a3c26 + 848d4eb commit c5fa3d3

38 files changed

+2416
-1426
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
8+
versioning-strategy: increase-if-necessary
9+
- package-ecosystem: github-actions
10+
directory: "/"
11+
schedule:
12+
interval: weekly

.github/workflows/publish.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424
- macos-latest
2525
- windows-latest
2626
node:
27-
- 12
28-
- 14
2927
- 16
3028
- 18
29+
- 20
30+
- 22
3131

3232
steps:
3333
- name: Clone repository
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v4
3535

3636
- name: Set Node.js version
37-
uses: actions/setup-node@v1
37+
uses: actions/setup-node@v4
3838
with:
3939
node-version: ${{ matrix.node }}
4040

changelog.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Change Log
22

3+
## 5.3.0
4+
5+
* Remove conditions for untested versions
6+
* Remove disabled tests for mock.fs (thanks @everett1992, see [#391][#391])
7+
* Fix tests on node 20 (thanks @everett1992, see [#387][#387])
8+
* Fix timeout in failing test (thanks @everett1992, see [#390][#390])
9+
* Stop testing on Node 12 and 14
10+
11+
<details>
12+
<summary>Dependency Updates</summary>
13+
14+
* chore(deps-dev): bump rimraf from 3.0.2 to 6.0.1
15+
* chore(deps): bump actions/checkout from 2 to 4
16+
* chore(deps-dev): bump mocha from 9.2.2 to 10.7.3
17+
* chore(deps-dev): bump braces from 3.0.2 to 3.0.3
18+
* chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.4
19+
* chore(deps): bump json5 from 1.0.1 to 1.0.2
20+
21+
</details>
22+
23+
## 5.2.0
24+
25+
* Fix EACCES error on access by root user (thanks @danielkatz, see [#369][#369])
26+
* Fix bug on utimes and futimes; add support of lutimes (thanks @3cp, see [#366][#366])
27+
28+
## 5.1.4
29+
30+
* Fix for BigInt stats in Node 16.7 (thanks @ahippler, see [#363][#363])
31+
332
## 5.1.3
433

534
* Fix for BigInt stats in Node 18.7 (thanks @3cp, see [#361][#361])
@@ -339,3 +368,9 @@ Detailed changes:
339368
[#337]: https://github.com/tschaub/mock-fs/pull/337
340369
[#342]: https://github.com/tschaub/mock-fs/pull/342
341370
[#361]: https://github.com/tschaub/mock-fs/pull/361
371+
[#363]: https://github.com/tschaub/mock-fs/pull/363
372+
[#366]: https://github.com/tschaub/mock-fs/pull/366
373+
[#369]: https://github.com/tschaub/mock-fs/pull/369
374+
[#387]: https://github.com/tschaub/mock-fs/pull/387
375+
[#390]: https://github.com/tschaub/mock-fs/pull/390
376+
[#391]: https://github.com/tschaub/mock-fs/pull/391

0 commit comments

Comments
 (0)