You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 2, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: UPGRADING.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
# Upgrade Guide
2
2
3
-
This document describes breaking changes and how to upgrade. For a complete list of changes including minor and patch releases, please refer to the [`CHANGELOG`].
3
+
This document describes breaking changes and how to upgrade. For a complete list of changes including minor and patch releases, please refer to the [`CHANGELOG`][changelog].
4
4
5
5
## v3
6
6
7
7
Dropped support for node 4. No other breaking changes.
8
8
9
9
## v2
10
10
11
-
This release drops Node.js 0.12, brings `memdown` up to par with latest [`levelup`] (v2) and [`abstract-leveldown`] (v4), simplifies serialization and removes global state.
11
+
This release drops Node.js 0.12, brings `memdown` up to par with latest [`levelup`][levelup] (v2) and [`abstract-leveldown`][abstract-leveldown] (v4), simplifies serialization and removes global state.
This means that in addition to Buffers, you can store any JS type without the need for [`encoding-down`]. This release also makes behavior consistent in Node.js and browsers. Please refer to the [README](./README.md) for a detailed explanation.
32
+
This means that in addition to Buffers, you can store any JS type without the need for [`encoding-down`][encoding-down]. This release also makes behavior consistent in Node.js and browsers. Please refer to the [README](./README.md) for a detailed explanation.
33
33
34
34
### No global state or `location` argument
35
35
@@ -47,9 +47,9 @@ const db = window.mydb = levelup(memdown())
47
47
48
48
### No `null` batch operations
49
49
50
-
Instead of skipping `null` operations, `db.batch([null])` will throw an error courtesy of [`abstract-leveldown`].
50
+
Instead of skipping `null` operations, `db.batch([null])` will throw an error courtesy of [`abstract-leveldown`][abstract-leveldown].
0 commit comments