Skip to content

Commit caff07d

Browse files
committed
Breaking: drop support of Node.js < 18
Category: removal
1 parent 8552de5 commit caff07d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/sauce.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up node
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 16
15+
node-version: 18
1616
- name: Install
1717
run: npm install
1818
env:

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node: [16, 18, 20]
10+
node: [18, 20, 22]
1111
name: Node ${{ matrix.node }}
1212
steps:
1313
- name: Checkout

UPGRADING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This document describes breaking changes and how to upgrade. For a complete list
44

55
## 2.0.0
66

7-
This release upgrades to `abstract-level` 2.0.0 which adds [hooks](https://github.com/Level/abstract-level#hooks) and drops callbacks, not-found errors and support of Node.js < 16. Please refer to the [upgrade guide of `abstract-level`](https://github.com/Level/abstract-level/blob/v2.0.0/UPGRADING.md).
7+
This release upgrades to `abstract-level` 2.0.0 which adds [hooks](https://github.com/Level/abstract-level#hooks) and drops callbacks, not-found errors and support of Node.js < 16. Please refer to the [upgrade guide of `abstract-level`](https://github.com/Level/abstract-level/blob/v2.0.0/UPGRADING.md). The only thing to add is that `memory-level` also drops Node.js 16.
88

99
## 1.0.0
1010

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
"memory"
5151
],
5252
"engines": {
53-
"node": ">=16"
53+
"node": ">=18"
5454
}
5555
}

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@voxpelli/tsconfig/node16.json",
2+
"extends": "@voxpelli/tsconfig/node18.json",
33
"compilerOptions": {
44
"checkJs": false
55
},

0 commit comments

Comments
 (0)