diff --git a/packages/ipfs-unixfs-exporter/CHANGELOG.md b/packages/ipfs-unixfs-exporter/CHANGELOG.md index 7109d821..94aede46 100644 --- a/packages/ipfs-unixfs-exporter/CHANGELOG.md +++ b/packages/ipfs-unixfs-exporter/CHANGELOG.md @@ -1,3 +1,10 @@ +## [ipfs-unixfs-exporter-v7.0.10](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-exporter-v7.0.9...ipfs-unixfs-exporter-v7.0.10) (2022-05-27) + + +### Bug Fixes + +* update deps ([#220](https://github.com/ipfs/js-ipfs-unixfs/issues/220)) ([08e851e](https://github.com/ipfs/js-ipfs-unixfs/commit/08e851e9c0dedf15f3a737157978a767343334f0)) + ## [ipfs-unixfs-exporter-v7.0.9](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-exporter-v7.0.8...ipfs-unixfs-exporter-v7.0.9) (2022-05-27) diff --git a/packages/ipfs-unixfs-exporter/package.json b/packages/ipfs-unixfs-exporter/package.json index 592eb005..88e1e2a2 100644 --- a/packages/ipfs-unixfs-exporter/package.json +++ b/packages/ipfs-unixfs-exporter/package.json @@ -156,17 +156,17 @@ "@multiformats/murmur3": "^1.0.3", "err-code": "^3.0.1", "hamt-sharding": "^2.0.0", - "interface-blockstore": "^1.0.0", + "interface-blockstore": "^2.0.3", "ipfs-unixfs": "^6.0.0", "it-last": "^1.0.5", "multiformats": "^9.4.2", "uint8arrays": "^3.0.0" }, "devDependencies": { - "@types/mocha": "^8.2.1", "@types/sinon": "^10.0.0", "abort-controller": "^3.0.0", "aegir": "^36.2.3", + "blockstore-core": "^1.0.5", "copy": "^0.3.2", "crypto-browserify": "^3.12.0", "events": "^3.3.0", diff --git a/packages/ipfs-unixfs-exporter/test/helpers/block.js b/packages/ipfs-unixfs-exporter/test/helpers/block.js index a415ed5c..5072a6e5 100644 --- a/packages/ipfs-unixfs-exporter/test/helpers/block.js +++ b/packages/ipfs-unixfs-exporter/test/helpers/block.js @@ -1,5 +1,5 @@ import errCode from 'err-code' -import { BlockstoreAdapter } from 'interface-blockstore' +import { BaseBlockstore } from 'blockstore-core' import { base58btc } from 'multiformats/bases/base58' /** @@ -7,7 +7,7 @@ import { base58btc } from 'multiformats/bases/base58' */ function createBlockApi () { - class MockBlockstore extends BlockstoreAdapter { + class MockBlockstore extends BaseBlockstore { constructor () { super() diff --git a/packages/ipfs-unixfs-importer/CHANGELOG.md b/packages/ipfs-unixfs-importer/CHANGELOG.md index f872931d..dcae67b8 100644 --- a/packages/ipfs-unixfs-importer/CHANGELOG.md +++ b/packages/ipfs-unixfs-importer/CHANGELOG.md @@ -1,3 +1,10 @@ +## [ipfs-unixfs-importer-v9.0.9](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-importer-v9.0.8...ipfs-unixfs-importer-v9.0.9) (2022-05-27) + + +### Bug Fixes + +* update deps ([#220](https://github.com/ipfs/js-ipfs-unixfs/issues/220)) ([08e851e](https://github.com/ipfs/js-ipfs-unixfs/commit/08e851e9c0dedf15f3a737157978a767343334f0)) + ## [ipfs-unixfs-importer-v9.0.8](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-importer-v9.0.7...ipfs-unixfs-importer-v9.0.8) (2022-05-04) diff --git a/packages/ipfs-unixfs-importer/package.json b/packages/ipfs-unixfs-importer/package.json index a28ba538..f4dede13 100644 --- a/packages/ipfs-unixfs-importer/package.json +++ b/packages/ipfs-unixfs-importer/package.json @@ -147,7 +147,7 @@ "clean": "rimraf ./dist", "lint": "aegir ts -p check && aegir lint", "coverage": "nyc -s npm run test -t node && nyc report --reporter=html", - "de-pcheck": "aegir dep-check -i @types/mocha -i nyc -i rimraf -i copy -i util -i crypto-browserify -i events -i readable-stream -i assert", + "de-pcheck": "aegir dep-check -i @types/mocha -i nyc -i rimraf -i copy -i util -i crypto-browserify -i events -i readable-stream -i assert -i interface-blockstore", "release": "semantic-release" }, "dependencies": { @@ -156,7 +156,7 @@ "bl": "^5.0.0", "err-code": "^3.0.1", "hamt-sharding": "^2.0.0", - "interface-blockstore": "^1.0.0", + "interface-blockstore": "^2.0.3", "ipfs-unixfs": "^6.0.0", "it-all": "^1.0.5", "it-batch": "^1.0.8", @@ -168,9 +168,9 @@ "uint8arrays": "^3.0.0" }, "devDependencies": { - "@types/mocha": "^8.2.1", "aegir": "^36.2.3", "assert": "^2.0.0", + "blockstore-core": "^1.0.5", "copy": "^0.3.2", "crypto-browserify": "^3.12.0", "events": "^3.3.0", diff --git a/packages/ipfs-unixfs-importer/test/helpers/block.js b/packages/ipfs-unixfs-importer/test/helpers/block.js index a415ed5c..5072a6e5 100644 --- a/packages/ipfs-unixfs-importer/test/helpers/block.js +++ b/packages/ipfs-unixfs-importer/test/helpers/block.js @@ -1,5 +1,5 @@ import errCode from 'err-code' -import { BlockstoreAdapter } from 'interface-blockstore' +import { BaseBlockstore } from 'blockstore-core' import { base58btc } from 'multiformats/bases/base58' /** @@ -7,7 +7,7 @@ import { base58btc } from 'multiformats/bases/base58' */ function createBlockApi () { - class MockBlockstore extends BlockstoreAdapter { + class MockBlockstore extends BaseBlockstore { constructor () { super() diff --git a/packages/ipfs-unixfs/CHANGELOG.md b/packages/ipfs-unixfs/CHANGELOG.md index 4aaecedc..47099297 100644 --- a/packages/ipfs-unixfs/CHANGELOG.md +++ b/packages/ipfs-unixfs/CHANGELOG.md @@ -1,3 +1,10 @@ +## [ipfs-unixfs-v6.0.8](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-v6.0.7...ipfs-unixfs-v6.0.8) (2022-05-27) + + +### Bug Fixes + +* update deps ([#220](https://github.com/ipfs/js-ipfs-unixfs/issues/220)) ([08e851e](https://github.com/ipfs/js-ipfs-unixfs/commit/08e851e9c0dedf15f3a737157978a767343334f0)) + ## [ipfs-unixfs-v6.0.7](https://github.com/ipfs/js-ipfs-unixfs/compare/ipfs-unixfs-v6.0.6...ipfs-unixfs-v6.0.7) (2022-04-26) diff --git a/packages/ipfs-unixfs/package.json b/packages/ipfs-unixfs/package.json index 910fed22..7afe45e5 100644 --- a/packages/ipfs-unixfs/package.json +++ b/packages/ipfs-unixfs/package.json @@ -159,7 +159,6 @@ "protobufjs": "^6.10.2" }, "devDependencies": { - "@types/mocha": "^8.2.1", "aegir": "^36.2.3", "copy": "^0.3.2", "mkdirp": "^1.0.4",