Skip to content
This repository was archived by the owner on Dec 20, 2024. It is now read-only.

Commit 26266d5

Browse files
committed
9.0.0
1 parent 57add19 commit 26266d5

File tree

4 files changed

+40
-2
lines changed

4 files changed

+40
-2
lines changed

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# Changelog
22

3+
## [9.0.0] - 2021-04-25
4+
35
_**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._
46

7+
### Changed
8+
9+
- **Breaking:** drop node 8 ([Level/community#98](https://github.com/Level/community/issues/98)) ([`fefe5b3`](https://github.com/Level/level-test/commit/fefe5b3)) (Vincent Weevers)
10+
- **Breaking:** bump dependencies ([`8e8a642`](https://github.com/Level/level-test/commit/8e8a642)) (Vincent Weevers)
11+
- **Breaking:** modernize syntax ([Level/community#98](https://github.com/Level/community/issues/98)) ([`012d3a9`](https://github.com/Level/level-test/commit/012d3a9)) (Vincent Weevers)
12+
513
## [8.0.0] - 2019-10-20
614

715
### Changed
@@ -349,10 +357,12 @@ _**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._
349357

350358
- Remove `tap` dependency ([**@dominictarr**](https://github.com/dominictarr))
351359

352-
## 1.0.0 - 2013-05-28
360+
## [1.0.0] - 2013-05-28
353361

354362
:seedling: Initial release.
355363

364+
[9.0.0]: https://github.com/Level/level-test/compare/v8.0.0...v9.0.0
365+
356366
[8.0.0]: https://github.com/Level/level-test/compare/v7.1.0...v8.0.0
357367

358368
[7.1.0]: https://github.com/Level/level-test/compare/v7.0.0...v7.1.0
@@ -416,3 +426,5 @@ _**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._
416426
[1.1.0]: https://github.com/Level/level-test/compare/v1.0.1...v1.1.0
417427

418428
[1.0.1]: https://github.com/Level/level-test/compare/v1.0.0...v1.0.1
429+
430+
[1.0.0]: https://github.com/Level/level-test/releases/tag/v1.0.0

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ Support us with a monthly donation on [Open Collective](https://opencollective.c
9595
[MIT](LICENSE)
9696

9797
[level-badge]: https://leveljs.org/img/badge.svg
98+
9899
[leveldown]: https://github.com/Level/leveldown
100+
99101
[memdown]: https://github.com/Level/memdown
102+
100103
[level-js]: https://github.com/Level/level-js

UPGRADING.md

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
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).
44

5+
## 9.0.0
6+
7+
Legacy range options have been removed ([Level/community#86](https://github.com/Level/community/issues/86)). If you previously did:
8+
9+
```js
10+
db.createReadStream({ start: 'a', end: 'z' })
11+
```
12+
13+
An error would now be thrown and you must instead do:
14+
15+
```js
16+
db.createReadStream({ gte: 'a', lte: 'z' })
17+
```
18+
19+
The same applies to `db.iterator()`, `db.createKeyStream()` and `db.createValueStream()`.
20+
21+
This release also drops support of legacy runtime environments ([Level/community#98](https://github.com/Level/community/issues/98)):
22+
23+
- Node.js 8
24+
- Internet Explorer 11
25+
- Safari 9-11
26+
- Stock Android browser (AOSP).
27+
528
## 8.0.0
629

730
Upgraded to `level-js@5` and `memdown@5` which have the same breaking change:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "level-test",
3-
"version": "8.0.0",
3+
"version": "9.0.0",
44
"description": "Inject temporary and isolated level stores (leveldown, level-js, memdown or custom) into your tests.",
55
"author": "Dominic Tarr <[email protected]> (http://dominictarr.com)",
66
"license": "MIT",

0 commit comments

Comments
 (0)