Skip to content

Commit

Permalink
9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Apr 25, 2021
1 parent 57add19 commit 26266d5
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 2 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Changelog

## [9.0.0] - 2021-04-25

_**If you are upgrading:** please see [`UPGRADING.md`](UPGRADING.md)._

### Changed

- **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)
- **Breaking:** bump dependencies ([`8e8a642`](https://github.com/Level/level-test/commit/8e8a642)) (Vincent Weevers)
- **Breaking:** modernize syntax ([Level/community#98](https://github.com/Level/community/issues/98)) ([`012d3a9`](https://github.com/Level/level-test/commit/012d3a9)) (Vincent Weevers)

## [8.0.0] - 2019-10-20

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

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

## 1.0.0 - 2013-05-28
## [1.0.0] - 2013-05-28

:seedling: Initial release.

[9.0.0]: https://github.com/Level/level-test/compare/v8.0.0...v9.0.0

[8.0.0]: https://github.com/Level/level-test/compare/v7.1.0...v8.0.0

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

[1.0.1]: https://github.com/Level/level-test/compare/v1.0.0...v1.0.1

[1.0.0]: https://github.com/Level/level-test/releases/tag/v1.0.0
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ Support us with a monthly donation on [Open Collective](https://opencollective.c
[MIT](LICENSE)

[level-badge]: https://leveljs.org/img/badge.svg

[leveldown]: https://github.com/Level/leveldown

[memdown]: https://github.com/Level/memdown

[level-js]: https://github.com/Level/level-js
23 changes: 23 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

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

## 9.0.0

Legacy range options have been removed ([Level/community#86](https://github.com/Level/community/issues/86)). If you previously did:

```js
db.createReadStream({ start: 'a', end: 'z' })
```

An error would now be thrown and you must instead do:

```js
db.createReadStream({ gte: 'a', lte: 'z' })
```

The same applies to `db.iterator()`, `db.createKeyStream()` and `db.createValueStream()`.

This release also drops support of legacy runtime environments ([Level/community#98](https://github.com/Level/community/issues/98)):

- Node.js 8
- Internet Explorer 11
- Safari 9-11
- Stock Android browser (AOSP).

## 8.0.0

Upgraded to `level-js@5` and `memdown@5` which have the same breaking change:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "level-test",
"version": "8.0.0",
"version": "9.0.0",
"description": "Inject temporary and isolated level stores (leveldown, level-js, memdown or custom) into your tests.",
"author": "Dominic Tarr <[email protected]> (http://dominictarr.com)",
"license": "MIT",
Expand Down

0 comments on commit 26266d5

Please sign in to comment.