From cc9272215453b23b72cec2e43f8de7f18d2ff703 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 2 Aug 2024 17:06:45 +0000 Subject: [PATCH] chore(release): 3.0.0 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## datastore-idb [3.0.0](https://github.com/ipfs/js-stores/compare/datastore-idb-2.1.9...datastore-idb-3.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 * **datastore-core:** upgraded to 10.0.0 * **interface-datastore:** upgraded to 8.3.0 * **interface-store:** upgraded to 6.0.0 * **interface-datastore-tests:** upgraded to 6.0.0 --- packages/datastore-idb/CHANGELOG.md | 20 ++++++++++++++++++++ packages/datastore-idb/package.json | 8 ++++---- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/packages/datastore-idb/CHANGELOG.md b/packages/datastore-idb/CHANGELOG.md index b30f673c..a3a4bbca 100644 --- a/packages/datastore-idb/CHANGELOG.md +++ b/packages/datastore-idb/CHANGELOG.md @@ -1,3 +1,23 @@ +## datastore-idb [3.0.0](https://github.com/ipfs/js-stores/compare/datastore-idb-2.1.9...datastore-idb-3.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 + +* **datastore-core:** upgraded to 10.0.0 +* **interface-datastore:** upgraded to 8.3.0 +* **interface-store:** upgraded to 6.0.0 +* **interface-datastore-tests:** upgraded to 6.0.0 + ## datastore-idb [2.1.9](https://github.com/ipfs/js-stores/compare/datastore-idb-2.1.8...datastore-idb-2.1.9) (2024-04-09) diff --git a/packages/datastore-idb/package.json b/packages/datastore-idb/package.json index dd42527a..4296ab7f 100644 --- a/packages/datastore-idb/package.json +++ b/packages/datastore-idb/package.json @@ -1,6 +1,6 @@ { "name": "datastore-idb", - "version": "2.1.9", + "version": "3.0.0", "description": "Datastore implementation with IndexedDB backend.", "author": "Hugo Dias ", "license": "Apache-2.0 OR MIT", @@ -58,15 +58,15 @@ "dep-check": "aegir dep-check" }, "dependencies": { - "datastore-core": "^9.0.0", + "datastore-core": "10.0.0", "idb": "^8.0.0", "interface-datastore": "^8.0.0", - "interface-store": "^5.1.8", + "interface-store": "6.0.0", "it-filter": "^3.0.4", "it-sort": "^3.0.4" }, "devDependencies": { "aegir": "^42.2.3", - "interface-datastore-tests": "^5.0.0" + "interface-datastore-tests": "6.0.0" } }