Skip to content

Commit

Permalink
switch back to an AVLTree instead of a BinarySearchTree like the orig…
Browse files Browse the repository at this point in the history
…inal nedb & updated vulnerable dev dependency
  • Loading branch information
Timothée Rebours committed Jul 12, 2021
1 parent 10de4d1 commit f68464d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.4] - 2021-07-12
### Fixed
- switch back to an AVLTree instead of a BinarySearchTree like the original nedb to fix [#1](https://github.com/seald/nedb/issues/1).
- updated vulnerable dev dependency `ws`

## [2.0.3] - 2021-06-07
### Fixed
- no longer use `util` module for type verification as it is needed in the
Expand Down
2 changes: 1 addition & 1 deletion lib/indexes.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const BinarySearchTree = require('@seald-io/binary-search-tree').BinarySearchTree
const BinarySearchTree = require('@seald-io/binary-search-tree').AVLTree
const model = require('./model.js')
const { uniq, isDate } = require('./utils.js')

Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f68464d

Please sign in to comment.