Skip to content

Commit

Permalink
6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Sep 28, 2021
1 parent 50dc50b commit 496f0b1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [6.1.0] - 2021-09-28

### Added

- Add `db.getMany(keys)` ([#787](https://github.com/Level/leveldown/issues/787)) ([`50dc50b`](https://github.com/Level/leveldown/commit/50dc50b)) (Vincent Weevers).

## [6.0.3] - 2021-09-28

### Fixed
Expand Down Expand Up @@ -1118,6 +1124,8 @@ _Was not published as a tag and `package.json` was never committed with this ver

:seedling: First release. Extracted from `levelup` as a stand-alone package ([**@rvagg**](https://github.com/rvagg))

[6.1.0]: https://github.com/Level/leveldown/releases/tag/v6.1.0

[6.0.3]: https://github.com/Level/leveldown/releases/tag/v6.0.3

[6.0.2]: https://github.com/Level/leveldown/releases/tag/v6.0.2
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
- [`options`](#options-1)
- [`db.get(key[, options], callback)`](#dbgetkey-options-callback)
- [`options`](#options-2)
- [`db.getMany(keys[, options][, callback])`](#dbgetmanykeys-options-callback)
- [`db.del(key[, options], callback)`](#dbdelkey-options-callback)
- [`options`](#options-3)
- [`db.batch(operations[, options], callback)` _(array form)_](#dbbatchoperations-options-callback-array-form)
Expand Down Expand Up @@ -230,7 +231,7 @@ The `callback` function will be called with a single `error` if the operation fa

### `db.getMany(keys[, options][, callback])`

Get multiple values from the store by an array of `keys`. The optional `options` object may contain `asBuffer` and `fillCache`, as described in [`get()`](#leveldown_get).
Get multiple values from the store by an array of `keys`. The optional `options` object may contain `asBuffer` and `fillCache`, as described in [`get()`](#dbgetkey-options-callback).

The `callback` function will be called with an `Error` if the operation failed for any reason. If successful the first argument will be `null` and the second argument will be an array of values with the same order as `keys`. If a key was not found, the relevant value will be `undefined`.

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": "leveldown",
"version": "6.0.3",
"version": "6.1.0",
"description": "A low-level Node.js LevelDB binding",
"license": "MIT",
"main": "leveldown.js",
Expand Down

0 comments on commit 496f0b1

Please sign in to comment.