Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

datastore-level

Package Overview
Dependencies
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

datastore-level - npm Package Compare versions

Comparing version 0.4.0 to 0.4.2

21

CHANGELOG.md

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

4

package.json
{
"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 @@ }))

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc