Skip to content

Commit

Permalink
7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Sep 30, 2021
1 parent 2606fe0 commit 242106a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [7.0.0] - 2021-09-30

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

### Changed

- **Breaking:** only defer operations while db is opening ([`0e8475f`](https://github.com/Level/deferred-leveldown/commit/0e8475f)) ([#89](https://github.com/Level/deferred-leveldown/issues/89)) (Vincent Weevers)

### Added

- Add `db.getMany(keys)` ([`df5f239`](https://github.com/Level/deferred-leveldown/commit/df5f239)) ([#89](https://github.com/Level/deferred-leveldown/issues/89)) (Vincent Weevers)

## [6.0.0] - 2021-04-17

_If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md)._
Expand Down Expand Up @@ -294,6 +306,8 @@ No changes.

:seedling: First release. ([**@rvagg**](https://github.com/rvagg))

[7.0.0]: https://github.com/Level/deferred-leveldown/releases/tag/v7.0.0

[6.0.0]: https://github.com/Level/deferred-leveldown/releases/tag/v6.0.0

[5.3.0]: https://github.com/Level/deferred-leveldown/releases/tag/v5.3.0
Expand Down
4 changes: 4 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## 7.0.0

Previously `deferred-leveldown` would accept operations regardless of the `status` of the inner db. It now only accepts operations while `db.status` is 'opening'.

## 6.0.0

Legacy range options have been removed ([Level/community#86](https://github.com/Level/community/issues/86)). If you previously did:
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": "deferred-leveldown",
"version": "6.0.0",
"version": "7.0.0",
"description": "A mock abstract-leveldown implementation that queues operations while a real abstract-leveldown instance is being opened",
"license": "MIT",
"main": "deferred-leveldown.js",
Expand Down

0 comments on commit 242106a

Please sign in to comment.