datastore-level
Advanced tools
Comparing version 0.4.0 to 0.4.2
@@ -0,1 +1,22 @@ | ||
<a name="0.4.2"></a> | ||
## [0.4.2](https://github.com/ipfs/js-datastore-level/compare/v0.4.0...v0.4.2) (2017-05-24) | ||
### Bug Fixes | ||
* Object.assign is now evil and no longer is behaving as spec says when Webpacked ([5e40f3b](https://github.com/ipfs/js-datastore-level/commit/5e40f3b)) | ||
* Object.assign is now evil and no longer is behaving as spec says when Webpacked ([c3f50ec](https://github.com/ipfs/js-datastore-level/commit/c3f50ec)) | ||
<a name="0.4.1"></a> | ||
## [0.4.1](https://github.com/ipfs/js-datastore-level/compare/v0.4.0...v0.4.1) (2017-05-24) | ||
### Bug Fixes | ||
* Object.assign is now evil and no longer is behaving as spec says when Webpacked ([077bbc1](https://github.com/ipfs/js-datastore-level/commit/077bbc1)) | ||
<a name="0.4.0"></a> | ||
@@ -2,0 +23,0 @@ # [0.4.0](https://github.com/ipfs/js-datastore-level/compare/v0.3.0...v0.4.0) (2017-05-23) |
{ | ||
"name": "datastore-level", | ||
"version": "0.4.0", | ||
"version": "0.4.2", | ||
"description": "Datastore implementation with level(up|down) backend", | ||
@@ -44,3 +44,3 @@ "main": "src/index.js", | ||
"leveldown": "^1.7.0", | ||
"levelup": "^1.3.6", | ||
"levelup": "^1.3.7", | ||
"pull-stream": "^3.6.0" | ||
@@ -47,0 +47,0 @@ }, |
@@ -27,5 +27,4 @@ /* @flow */ | ||
constructor (path /* : string */, opts /* : ?LevelOptions */) { | ||
this.db = levelup(path, Object.assign({}, { | ||
compression: false // same default as go | ||
}, opts, { | ||
this.db = levelup(path, Object.assign(opts || {}, { | ||
compression: false, // same default as go | ||
valueEncoding: 'binary' | ||
@@ -32,0 +31,0 @@ })) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94652
281
Updatedlevelup@^1.3.7