Skip to content

Commit 9e8f561

Browse files
committed
Breaking: drop Node.js < 16
1 parent e3fba20 commit 9e8f561

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node: [12, 14, 16, 18]
8+
node: [16, 18, 20]
99
name: Node ${{ matrix.node }}
1010
steps:
1111
- name: Checkout

UPGRADING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This document describes breaking changes and how to upgrade. For a complete list
4646

4747
_This is a work in progress upgrade guide for the upcoming 2.0.0 release._
4848

49-
The guide for this release consists of two sections. One for the public API, relevant to all consumers of `abstract-level` and implementations thereof (`level`, `classic-level`, `memory-level` et cetera) and another for the private API that only implementors should have to read.
49+
This release drops callbacks, not-found errors, support of Node.js < 16, and adds a new feature called [hooks](./README.md#hooks). The guide for this release consists of two sections. One for the public API, relevant to all consumers of `abstract-level` and implementations thereof (`level`, `classic-level`, `memory-level` et cetera) and another for the private API that only implementors should have to read.
5050

5151
If you're upgrading from `levelup`, `abstract-leveldown` or other old modules, it's recommended to first upgrade to `abstract-level` 1.x because that version includes compatibility checks that have since been removed.
5252

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@
5959
"leveldb"
6060
],
6161
"engines": {
62-
"node": ">=12"
62+
"node": ">=16"
6363
}
6464
}

0 commit comments

Comments
 (0)