Skip to content

Commit b170cf0

Browse files
committed
Drops support for Node < 14.18.0 in order to guarantee support for 'node:' protocol imports
This change is semver-minor as it drops support for an outdated patch release only
1 parent c30f279 commit b170cf0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: ['ubuntu-latest', 'windows-latest']
28-
node: ['14.14.0']
28+
node: ['14.18.0']
2929
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
3030
steps:
3131
- uses: actions/checkout@v3
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
matrix:
4545
os: ['ubuntu-latest', 'windows-latest']
46-
node: ['14.14.0', '16.0', '18.0', '20.0']
46+
node: ['14.18.0', '16.0', '18.0', '20.0']
4747
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
4848
steps:
4949
- uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Use the excellent [metalsmith-debug-ui plugin](https://github.com/leviwheatcroft
238238
239239
Future Metalsmith releases will at least support the oldest supported Node LTS versions.
240240
241-
Metalsmith 2.6.x supports NodeJS versions 14.14.0 and higher.
241+
Metalsmith 2.6.x supports NodeJS versions 14.18.0 and higher.
242242
Metalsmith 2.5.x supports NodeJS versions 12 and higher.
243243
Metalsmith 2.4.x supports NodeJS versions 8 and higher.
244244
Metalsmith 2.3.0 and below support NodeJS versions all the way back to 0.12.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,6 @@
8989
"typescript": "^5.3.3"
9090
},
9191
"engines": {
92-
"node": ">=14.14.0"
92+
"node": ">=14.18.0"
9393
}
9494
}

0 commit comments

Comments
 (0)