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

datastore-idb

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

datastore-idb - npm Package Compare versions

Comparing version 1.0.2 to 1.1.0

.github/ISSUE_TEMPLATE/config.yml

2

.aegir.js
module.exports = {
bundlesize: { maxSize: '12kB' }
bundlesize: { maxSize: '12.1kB' }
}

@@ -0,1 +1,11 @@

<a name="1.1.0"></a>
# [1.1.0](https://github.com/ipfs/js-datastore-idb/compare/v1.0.2...v1.1.0) (2020-05-07)
### Features
* add streaming/cancellable API ([6d32b7f](https://github.com/ipfs/js-datastore-idb/commit/6d32b7f))
<a name="1.0.2"></a>

@@ -2,0 +12,0 @@ ## [1.0.2](https://github.com/ipfs/js-datastore-idb/compare/v1.0.1...v1.0.2) (2020-04-24)

{
"name": "datastore-idb",
"version": "1.0.2",
"version": "1.1.0",
"description": "Datastore implementation with IndexedDB backend.",

@@ -35,9 +35,9 @@ "leadMaintainer": "Hugo Dias <hugomrdias@gmail.com>",

"idb": "^5.0.2",
"interface-datastore": "^0.8.3"
"interface-datastore": "^1.0.2"
},
"devDependencies": {
"aegir": "^21.4.5",
"aegir": "^22.0.0",
"chai": "^4.2.0",
"datastore-core": "^1.0.0",
"datastore-level": "^0.14.1",
"datastore-core": "^1.1.0",
"datastore-level": "^1.1.0",
"dirty-chai": "^2.0.1",

@@ -48,4 +48,6 @@ "ipfs-utils": "^2.2.0",

"contributors": [
"Hugo Dias <hugomrdias@gmail.com>"
"Hugo Dias <hugomrdias@gmail.com>",
"achingbrain <alex@achingbrain.net>",
"Hector Sanjuan <code@hector.link>"
]
}

@@ -5,3 +5,3 @@ 'use strict'

const { openDB, deleteDB } = require('idb')
const { Key, Errors, utils } = require('interface-datastore')
const { Key, Errors, utils, Adapter } = require('interface-datastore')
const { filter, sortAll } = utils

@@ -74,4 +74,6 @@

class IdbDatastore {
class IdbDatastore extends Adapter {
constructor (location, options = {}) {
super()
this.store = null

@@ -78,0 +80,0 @@ this.options = options

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