-
-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
76 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,21 @@ | |
|
||
_**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._ | ||
|
||
## [6.0.0] - 2021-04-10 | ||
|
||
### Changed | ||
|
||
- **Breaking:** bump `abstract-leveldown` ([`15d5a9e`](https://github.com/Level/leveldown/commit/15d5a9e)) (Vincent Weevers) | ||
- **Breaking:** drop node 6 and 8 ([Level/community#98](https://github.com/Level/community/issues/98)) ([`8502b34`](https://github.com/Level/leveldown/commit/8502b34)) (Vincent Weevers) | ||
- Bump `node-gyp` from 6.x to 7.x ([`8bc5696`](https://github.com/Level/leveldown/commit/8bc5696)) (Vincent Weevers) | ||
- Bump `standard` from 14.x to 16.x ([`d39e232`](https://github.com/Level/leveldown/commit/d39e232), [`39e3ca3`](https://github.com/Level/leveldown/commit/39e3ca3)) (Vincent Weevers) | ||
- Bump `node-gyp-build` from 4.1.x to 4.2.x ([#708](https://github.com/Level/leveldown/issues/708)) ([`91711fa`](https://github.com/Level/leveldown/commit/91711fa)) (Vincent Weevers) | ||
- Skip stack exhaustion test ([`55a33b1`](https://github.com/Level/leveldown/commit/55a33b1)) (Vincent Weevers) | ||
|
||
### Removed | ||
|
||
- Remove default export ([Level/community#87](https://github.com/Level/community/issues/87)) ([`686d685`](https://github.com/Level/leveldown/commit/686d685)) (Vincent Weevers) | ||
|
||
## [5.6.0] - 2020-03-27 | ||
|
||
### Changed | ||
|
@@ -793,7 +808,7 @@ _**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._ | |
|
||
### Changed | ||
|
||
- Upgrade to `[email protected]` for Node@0.11.6 support, `v8::Local<T>::New(val)` rewritten to `NanNewLocal<T>(val)` ([**@rvagg**](https://github.com/rvagg)) | ||
- Upgrade to `[email protected]` for Node 0.11.6 support, `v8::Local<T>::New(val)` rewritten to `NanNewLocal<T>(val)` ([**@rvagg**](https://github.com/rvagg)) | ||
|
||
**Historical Note** From this release and onward, tags in git start with the prefix `v`, i.e. this release corresponds to the tag `v0.10.1`. | ||
|
||
|
@@ -1083,6 +1098,8 @@ _**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._ | |
|
||
:seedling: First release. Extracted from `levelup` as a stand-alone package ([**@rvagg**](https://github.com/rvagg)) | ||
|
||
[6.0.0]: https://github.com/Level/leveldown/compare/v5.6.0...v6.0.0 | ||
|
||
[5.6.0]: https://github.com/Level/leveldown/compare/v5.5.1...v5.6.0 | ||
|
||
[5.5.1]: https://github.com/Level/leveldown/compare/v5.5.0...v5.5.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,23 @@ | |
|
||
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.md). | ||
|
||
## v5 | ||
## 6.0.0 | ||
|
||
Legacy range options have been removed ([Level/community#86](https://github.com/Level/community/issues/86)). If you previously did: | ||
|
||
```js | ||
db.iterator({ start: 'a', end: 'z' }) | ||
``` | ||
|
||
An error would now be thrown and you must instead do: | ||
|
||
```js | ||
db.iterator({ gte: 'a', lte: 'z' }) | ||
``` | ||
|
||
This release also drops support of Node.js 6 and 8 ([Level/community#98](https://github.com/Level/community/issues/98)). | ||
|
||
## 5.0.0 | ||
|
||
This is a rewrite to N-API - which is a huge milestone, achieved without an impact on write performance - and an upgrade to `abstract-leveldown` v6, which solves long-standing issues around serialization and type support. | ||
|
||
|
@@ -58,15 +74,15 @@ db.close(function (err) { | |
|
||
A future release will do the same for other operations like `get` and `batch`. | ||
|
||
## v4 | ||
## 4.0.0 | ||
|
||
Dropped support for node 4. No other breaking changes. | ||
|
||
## v3.0.1 | ||
## 3.0.1 | ||
|
||
If you're using node v10 you'll need at least `[email protected]` to successfully compile. In addition, if you want prebuilt binaries you'll need at least `[email protected]`. | ||
|
||
## v3 | ||
## 3.0.0 | ||
|
||
#### `.batch(array)` enforces objects | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters