πŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more β†’
Socket
DemoInstallSign in
Socket

ipfs-repo

Package Overview
Dependencies
Maintainers
3
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ipfs-repo - npm Package Compare versions

Comparing version

to
3.0.2

10

CHANGELOG.md

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

<a name="3.0.2"></a>
## [3.0.2](https://github.com/ipfs/js-ipfs-repo/compare/v3.0.1...v3.0.2) (2020-06-15)
### Features
* use datastore-level in the browser again ([#236](https://github.com/ipfs/js-ipfs-repo/issues/236)) ([33663b3](https://github.com/ipfs/js-ipfs-repo/commit/33663b3))
<a name="3.0.1"></a>

@@ -2,0 +12,0 @@ ## [3.0.1](https://github.com/ipfs/js-ipfs-repo/compare/v3.0.0...v3.0.1) (2020-05-19)

@@ -0,4 +1,24 @@

/*
object-assign
(c) Sindre Sorhus
@license MIT
*/
/*!
* prr
* (c) 2013 Rod Vagg <rod@vagg.org>
* https://github.com/rvagg/prr
* License: MIT
*/
/*!
* The buffer module from node.js, for the browser.
*
* @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
* @license MIT
*/
/*!
* The buffer module from node.js, for the browser.
*
* @author Feross Aboukhadijeh <http://feross.org>

@@ -5,0 +25,0 @@ * @license MIT

26

package.json
{
"name": "ipfs-repo",
"version": "3.0.1",
"version": "3.0.2",
"description": "IPFS Repo implementation",

@@ -13,3 +13,3 @@ "leadMaintainer": "Alex Potsides <alex@achingbrain.net>",

"rimraf": false,
"datastore-fs": "datastore-idb",
"datastore-fs": "datastore-level",
"./src/lock.js": "./src/lock-memory.js",

@@ -69,3 +69,2 @@ "./src/default-options.js": "./src/default-options-browser.js"

"datastore-fs": "^1.1.0",
"datastore-idb": "^1.1.0",
"datastore-level": "^1.1.0",

@@ -93,3 +92,3 @@ "debug": "^4.1.0",

"achingbrain <alex@achingbrain.net>",
"Hugo Dias <mail@hugodias.me>",
"Hugo Dias <hugomrdias@gmail.com>",
"Stephen Whitmore <stephen.whitmore@gmail.com>",

@@ -99,12 +98,18 @@ "Alan Shaw <alan.shaw@protocol.ai>",

"Vasco Santos <vasco.santos@moxy.studio>",
"Pau Ramon Revilla <masylum@gmail.com>",
"Richard Schneider <makaretu@gmail.com>",
"Hector Sanjuan <code@hector.link>",
"Pau Ramon Revilla <masylum@gmail.com>",
"Lars-Magnus Skog <ralphtheninja@riseup.net>",
"Dmitriy Ryajov <dryajov@gmail.com>",
"Francisco Baio Dias <xicombd@gmail.com>",
"Lars-Magnus Skog <ralphtheninja@riseup.net>",
"Pedro Santos <pedro.santos@moxy.studio>",
"α΄ Ιͺᴄᴛᴏʀ Κ™α΄Šα΄‡ΚŸα΄‹Κœα΄ΚŸα΄ <victorbjelkholm@gmail.com>",
"Pedro Teixeira <i@pgte.me>",
"Richard Littauer <richard.littauer@gmail.com>",
"Steef Min <steefmin@gmail.com>",
"Volker Mische <volker.mische@gmail.com>",
"Bryan Stenson <bryan.stenson@gmail.com>",
"Andrew Nesbitt <andrewnez@gmail.com>",
"nginnever <ginneversource@gmail.com>",
"Henrique Dias <hacdias@gmail.com>",
"α΄ Ιͺᴄᴛᴏʀ Κ™α΄Šα΄‡ΚŸα΄‹Κœα΄ΚŸα΄ <victorbjelkholm@gmail.com>",
"Jonah Weissman <jonahrweissman@gmail.com>",

@@ -114,9 +119,4 @@ "Jonathan <jkrone@vt.edu>",

"Linus UnnebΓ€ck <linus@folkdatorn.se>",
"Marcus Bernales <mboperator@gmail.com>",
"Pedro Teixeira <i@pgte.me>",
"Richard Littauer <richard.littauer@gmail.com>",
"Steef Min <steefmin@gmail.com>",
"Volker Mische <volker.mische@gmail.com>",
"nginnever <ginneversource@gmail.com>"
"Marcus Bernales <mboperator@gmail.com>"
]
}

@@ -398,3 +398,3 @@ # IPFS Repo JavaScript Implementation <!-- omit in toc -->

[![](https://cdn.rawgit.com/jbenet/contribute-ipfs-gif/master/img/contribute.gif)](https://github.com/ipfs/community/blob/master/contributing.md)
[![](https://cdn.rawgit.com/jbenet/contribute-ipfs-gif/master/img/contribute.gif)](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md)

@@ -401,0 +401,0 @@ ## License

@@ -7,6 +7,6 @@ 'use strict'

storageBackends: {
root: require('datastore-idb'),
blocks: require('datastore-idb'),
keys: require('datastore-idb'),
datastore: require('datastore-idb')
root: require('datastore-level'),
blocks: require('datastore-level'),
keys: require('datastore-level'),
datastore: require('datastore-level')
},

@@ -13,0 +13,0 @@ storageBackendOptions: {

Sorry, the diff of this file is too big to display