diff --git a/packages/blockstore-idb/CHANGELOG.md b/packages/blockstore-idb/CHANGELOG.md index ee7a45aa..ae0624e5 100644 --- a/packages/blockstore-idb/CHANGELOG.md +++ b/packages/blockstore-idb/CHANGELOG.md @@ -1,3 +1,23 @@ +## blockstore-idb [2.0.0](https://github.com/ipfs/js-stores/compare/blockstore-idb-1.1.8...blockstore-idb-2.0.0) (2024-08-02) + + +### ⚠ BREAKING CHANGES + +* To detect the type of error thrown, use `.name` instead of `.code` + +### Features + +* use `.name` property for errors instead of `.code` ([#315](https://github.com/ipfs/js-stores/issues/315)) ([dacd6ce](https://github.com/ipfs/js-stores/commit/dacd6ce6f325262f1bc1451f20789e9e7cd9b9fd)) + + + +### Dependencies + +* **blockstore-core:** upgraded to 5.0.0 +* **interface-blockstore:** upgraded to 5.3.0 +* **interface-store:** upgraded to 6.0.0 +* **interface-blockstore-tests:** upgraded to 7.0.0 + ## blockstore-idb [1.1.8](https://github.com/ipfs/js-stores/compare/blockstore-idb-v1.1.7...blockstore-idb-1.1.8) (2024-02-12) diff --git a/packages/blockstore-idb/package.json b/packages/blockstore-idb/package.json index f4a3ee04..717b0495 100644 --- a/packages/blockstore-idb/package.json +++ b/packages/blockstore-idb/package.json @@ -1,6 +1,6 @@ { "name": "blockstore-idb", - "version": "1.1.8", + "version": "2.0.0", "description": "Blockstore implementation with IndexedDB backend", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/js-stores/tree/main/packages/blockstore-idb#readme", @@ -56,14 +56,14 @@ "dep-check": "aegir dep-check" }, "dependencies": { - "blockstore-core": "^4.0.0", + "blockstore-core": "5.0.0", "idb": "^8.0.0", "interface-blockstore": "^5.0.0", - "interface-store": "^5.0.0", + "interface-store": "6.0.0", "multiformats": "^13.0.1" }, "devDependencies": { "aegir": "^42.2.3", - "interface-blockstore-tests": "^6.0.0" + "interface-blockstore-tests": "7.0.0" } }