Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: use .name property for errors instead of .code #315

Merged
merged 2 commits into from
Aug 2, 2024

Conversation

achingbrain
Copy link
Member

Refactors thrown errors to have a .name property that describes the type of error, e.g. NotFoundError instead of a .code property like ERR_NOT_FOUND.

This is more ideomatic JavaScript as .code is largely inherited from errors thrown by Node.js's fs module whereas .name reflects the function (e.g. constructor) name of the error.

Also removes the err-code dependency which is another CJS dep down.

BREAKING CHANGE: To detect the type of error thrown, use .name instead of .code

Refactors thrown errors to have a `.name` property that describes
the type of error, e.g. `NotFoundError` instead of a `.code`
property like `ERR_NOT_FOUND`.

This is more ideomatic JavaScript as `.code` is largely inherited
from errors thrown by Node.js's fs module whereas `.name` reflects
the [function (e.g. constructor) name](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name)
of the error.

BREAKING CHANGE: To detect the type of error thrown, use `.name` instead of `.code`
@achingbrain achingbrain merged commit dacd6ce into main Aug 2, 2024
19 checks passed
@achingbrain achingbrain deleted the feat/switch-to-name-property branch August 2, 2024 16:49
github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## interface-store [6.0.0](interface-store-5.1.8...interface-store-6.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](#315)) ([dacd6ce](dacd6ce))
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 6.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 5.3.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 8.3.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## interface-blockstore-tests [7.0.0](interface-blockstore-tests-6.1.10...interface-blockstore-tests-7.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](#315)) ([dacd6ce](dacd6ce))

### Dependencies

* **interface-blockstore:** upgraded to 5.3.0
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 7.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## interface-datastore-tests [6.0.0](interface-datastore-tests-5.1.8...interface-datastore-tests-6.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](#315)) ([dacd6ce](dacd6ce))

### Dependencies

* **interface-datastore:** upgraded to 8.3.0
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 6.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## blockstore-core [5.0.0](blockstore-core-4.4.1...blockstore-core-5.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](#315)) ([dacd6ce](dacd6ce))

### Dependencies

* **interface-blockstore:** upgraded to 5.3.0
* **interface-store:** upgraded to 6.0.0
* **interface-blockstore-tests:** upgraded to 7.0.0
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 5.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## blockstore-fs [2.0.0](blockstore-fs-1.1.11...blockstore-fs-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](#315)) ([dacd6ce](dacd6ce))

### Dependencies

* **interface-blockstore:** upgraded to 5.3.0
* **interface-store:** upgraded to 6.0.0
* **interface-blockstore-tests:** upgraded to 7.0.0
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 2.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## blockstore-idb [2.0.0](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](#315)) ([dacd6ce](dacd6ce))

### 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
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 2.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## blockstore-level [2.0.0](blockstore-level-1.1.8...blockstore-level-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](#315)) ([dacd6ce](dacd6ce))

### 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
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 2.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## blockstore-s3 [2.0.0](blockstore-s3-1.0.16...blockstore-s3-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](#315)) ([dacd6ce](dacd6ce))

### 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
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 2.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## datastore-core [10.0.0](datastore-core-9.2.9...datastore-core-10.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](#315)) ([dacd6ce](dacd6ce))

### Dependencies

* **interface-datastore:** upgraded to 8.3.0
* **interface-store:** upgraded to 6.0.0
* **interface-datastore-tests:** upgraded to 6.0.0
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 10.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## datastore-fs [10.0.0](datastore-fs-9.1.9...datastore-fs-10.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](#315)) ([dacd6ce](dacd6ce))

### 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
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 10.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## datastore-idb [3.0.0](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](#315)) ([dacd6ce](dacd6ce))

### 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
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 3.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## datastore-level [11.0.0](datastore-level-10.1.8...datastore-level-11.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](#315)) ([dacd6ce](dacd6ce))

### 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
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 11.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## datastore-s3 [12.0.0](datastore-s3-11.1.12...datastore-s3-12.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](#315)) ([dacd6ce](dacd6ce))

### 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
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 12.0.0 🎉

The release is available on npm package (@latest dist-tag)

Your semantic-release bot 📦🚀

github-actions bot pushed a commit that referenced this pull request Aug 2, 2024
## 1.0.0 (2024-08-02)

### ⚠ BREAKING CHANGES

* To detect the type of error thrown, use `.name` instead of `.code`
* s3 filenames are now all base32upper
* the output of store.getMany is now a stream of pairs
* open/close/batch/query methods have been removed from store interface, query/batch added to datastore, getAll added to blockstore
* bump multiformats from 10.0.3 to 11.0.0 (#182)
* this module is now ESM only
* deep requires/imports are no longer possible, moves adapters/in-memory impls etc to core packages
* the compliance tests for interface-datastore have been removed - use the interface-datastore-tests module instead

### Features

* add all blockstore and datastore implementations ([#197](https://github.com/ipfs/js-stores/issues/197)) ([0d85128](https://github.com/ipfs/js-stores/commit/0d851286d48c357b07df3f7419c1e903ed0e7fac))
* add black hole stores ([#227](https://github.com/ipfs/js-stores/issues/227)) ([6074f0f](https://github.com/ipfs/js-stores/commit/6074f0fa831abc45b40177ea498a2e0fbb3eeb32))
* add identity blockstore ([#298](https://github.com/ipfs/js-stores/issues/298)) ([b8dce49](https://github.com/ipfs/js-stores/commit/b8dce49fc005a76b86bca751b7d703d321cd12d6))
* add in-memory blockstore implementation ([#1](https://github.com/ipfs/js-stores/issues/1)) ([ab37d40](https://github.com/ipfs/js-stores/commit/ab37d40c62875a976eb55054e0d604e237d5a8aa))
* add Key.asKey method ([#41](https://github.com/ipfs/js-stores/issues/41)) ([783dcc8](https://github.com/ipfs/js-stores/commit/783dcc866e4ca6784d2801a8e18fa1135a137a6b))
* add tiered blockstore ([#238](https://github.com/ipfs/js-stores/issues/238)) ([5143948](https://github.com/ipfs/js-stores/commit/51439486d5fcd719b9af9182b35565e87da96c99))
* add unwrap method ([0c22c9f](https://github.com/ipfs/js-stores/commit/0c22c9ff4fe12ac92e38bcfb6ced626077fdb0ed))
* allow extending store method options ([#193](https://github.com/ipfs/js-stores/issues/193)) ([007e8ac](https://github.com/ipfs/js-stores/commit/007e8ac83a43ec185368cfad57193f57ef700c45))
* import interface-datastore ([294b249](https://github.com/ipfs/js-stores/commit/294b249de30e6fa80c4246a6a253db0ab493886b))
* prep for v1 release ([b95a516](https://github.com/ipfs/js-stores/commit/b95a51610738e8ce6b5e29e9769f19f98e525a94))
* release prep ([b38a533](https://github.com/ipfs/js-stores/commit/b38a53341d84cbef0aee75be149342e74eadfcc6))
* simplify store interface, move query/batch to datastore, add getAll to blockstore ([#189](https://github.com/ipfs/js-stores/issues/189)) ([0b8f1a0](https://github.com/ipfs/js-stores/commit/0b8f1a0d7644b32395059db250b301d3d5f024cb))
* 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))

### Bug Fixes

* add sharding to s3 blockstore ([#202](https://github.com/ipfs/js-stores/issues/202)) ([e1324a1](https://github.com/ipfs/js-stores/commit/e1324a16dcfae0a39a325e7a9929eb1c2f8ca6c8))
* bump aegir to 42.2.3, update project config and fix deps ([#297](https://github.com/ipfs/js-stores/issues/297)) ([d521ef2](https://github.com/ipfs/js-stores/commit/d521ef251815527baee0a70705f775c0e47481ad))
* cleanup references to datastore in blockstores ([#274](https://github.com/ipfs/js-stores/issues/274)) ([f550624](https://github.com/ipfs/js-stores/commit/f5506243b2cb1e6462457241a1614bd5f0755c12))
* encode/decode blockstore-s3 keys in base32upper ([#201](https://github.com/ipfs/js-stores/issues/201)) ([513fd9c](https://github.com/ipfs/js-stores/commit/513fd9ca35059c422d440ad955d34042c6bc301e))
* export key properly ([749b656](https://github.com/ipfs/js-stores/commit/749b656c23fb91aa13bfaf9a5ad99703490b24b4))
* identity blockstore should wrap child ([#303](https://github.com/ipfs/js-stores/issues/303)) ([3d84dd0](https://github.com/ipfs/js-stores/commit/3d84dd0ab164fb5749c34487a217c763d1d09ccb))
* incorrect export path ([#273](https://github.com/ipfs/js-stores/issues/273)) ([e840ed4](https://github.com/ipfs/js-stores/commit/e840ed4f0e601062c7cb727bd71390381644caa6))
* increase timeouts ([#131](https://github.com/ipfs/js-stores/issues/131)) ([733c2ed](https://github.com/ipfs/js-stores/commit/733c2edb32a3aa3a54c6cf2d39f780bd6018010b))
* lower amount ([b7f9aab](https://github.com/ipfs/js-stores/commit/b7f9aab399b026d34521aad5a9c3757baa60cb4d))
* make datastore batch commit option extension optional ([#194](https://github.com/ipfs/js-stores/issues/194)) ([7bb6729](https://github.com/ipfs/js-stores/commit/7bb6729f616546284c107eaf5dacf12598ea37a0))
* make tests more stable ([#38](https://github.com/ipfs/js-stores/issues/38)) ([595de43](https://github.com/ipfs/js-stores/commit/595de438cbb5bda7444bdd8c4ce561215855d190))
* open and close blockstore during interface tests ([#188](https://github.com/ipfs/js-stores/issues/188)) ([a61a54b](https://github.com/ipfs/js-stores/commit/a61a54ba53fa06800e91ea933924615fe6df5b01))
* publish with limited concurrency ([85bcc4a](https://github.com/ipfs/js-stores/commit/85bcc4acc09d76d7938c55163c81d9b948c53803))
* readme update ([3bcfb6d](https://github.com/ipfs/js-stores/commit/3bcfb6d311d32a00f24c64cb55c3ba90ca495dba))
* remove nanoid ([#283](https://github.com/ipfs/js-stores/issues/283)) ([da03ee2](https://github.com/ipfs/js-stores/commit/da03ee29970fdc860eead076ccedb5eea8ff4266))
* rename test from blocks to getMany ([#190](https://github.com/ipfs/js-stores/issues/190)) ([60e6c3f](https://github.com/ipfs/js-stores/commit/60e6c3f44596ff8fc7906f7d5fe86f8ebdf227d1))
* replace datastore references in blockstore-s3 ([#214](https://github.com/ipfs/js-stores/issues/214)) ([1a65042](https://github.com/ipfs/js-stores/commit/1a65042cc37aa0f074b64cf070ed32df174ef1a1))
* restore empty object default ([#228](https://github.com/ipfs/js-stores/issues/228)) ([f82d02c](https://github.com/ipfs/js-stores/commit/f82d02cc8742b595939b58e2eae0a86bb1cec6b1))
* return key from put and put many ([#196](https://github.com/ipfs/js-stores/issues/196)) ([dfc4697](https://github.com/ipfs/js-stores/commit/dfc4697868d23b3a62154ddda3ae0747e124e3e1))
* return stream of pairs from getmany ([#195](https://github.com/ipfs/js-stores/issues/195)) ([252bced](https://github.com/ipfs/js-stores/commit/252bced0ad3111711bd502e8d2a5932d6289e0f9))
* stop namespaced datastore throwing when queried ([#296](https://github.com/ipfs/js-stores/issues/296)) ([9163490](https://github.com/ipfs/js-stores/commit/916349054a3f83a7c9c4bb692edebcce409c7fee)), closes [#236](https://github.com/ipfs/js-stores/issues/236) [#236](https://github.com/ipfs/js-stores/issues/236)
* throw read error on read error ([#304](https://github.com/ipfs/js-stores/issues/304)) ([f14c824](https://github.com/ipfs/js-stores/commit/f14c8249dfd7bbd1385bbf3513b2b3d5e0e6860c)), closes [#299](https://github.com/ipfs/js-stores/issues/299)
* update project config to publish ESM only ([#172](https://github.com/ipfs/js-stores/issues/172)) ([8c9d21f](https://github.com/ipfs/js-stores/commit/8c9d21fdb97f055569984101d573864c808d90d9))

### Trivial Changes

* add blockstore adapter ([05ddff4](https://github.com/ipfs/js-stores/commit/05ddff401ddb2d94f4440e07bfb0405f9ae8795e))
* add clean script and control published files ([c58873d](https://github.com/ipfs/js-stores/commit/c58873dfd849a5164f64c507ede719342ffe3561))
* add description ([2aef1ba](https://github.com/ipfs/js-stores/commit/2aef1ba53ba8e0424b18be540bafe42751849124))
* add modules for interface-blockstore and interface-datastore tests ([da0ac9c](https://github.com/ipfs/js-stores/commit/da0ac9c2218eb0efef79f6455ba671b44b24c9dc))
* add or force update .github/workflows/js-test-and-release.yml ([#243](https://github.com/ipfs/js-stores/issues/243)) ([7bdc56b](https://github.com/ipfs/js-stores/commit/7bdc56bddd6a58846d86fd7596ef7af81f22cc63))
* add release script ([c2e11ab](https://github.com/ipfs/js-stores/commit/c2e11ab55dafaf846787e47612e10a855671d317))
* build before publish and export all blockstore types ([21980fe](https://github.com/ipfs/js-stores/commit/21980fe533dc03ef2e1303058ca1c5cf5a67385a))
* change version ([f65249d](https://github.com/ipfs/js-stores/commit/f65249d3801a59c0e84217979bf93c7b079bf59f))
* delete templates [skip ci] ([#242](https://github.com/ipfs/js-stores/issues/242)) ([c0ecb8a](https://github.com/ipfs/js-stores/commit/c0ecb8a76c477115e7fe6f01e41f0491cef6baca))
* **deps-dev:** bump rimraf from 1.0.9 to 3.0.2 in /packages/interface-datastore-tests ([#40](https://github.com/ipfs/js-stores/issues/40)) ([5d92f17](https://github.com/ipfs/js-stores/commit/5d92f17bd1580bd25e72d70250eabc0ce02a109c))
* **deps:** bump nanoid from 3.3.4 to 4.0.0 in /packages/interface-datastore ([#110](https://github.com/ipfs/js-stores/issues/110)) ([5e40d9c](https://github.com/ipfs/js-stores/commit/5e40d9c86170fc4c7f0d6c6ee54161327a5493f1))
* disable tests that stringify cids ([72c93f9](https://github.com/ipfs/js-stores/commit/72c93f90c7204276ad47cd8d18ae07020a1f2c4c))
* dual licensed ([dbc6615](https://github.com/ipfs/js-stores/commit/dbc66159d3d3a604bb711d4bfb37ff394a3b057c))
* enable query tests for blockstores ([d2ce541](https://github.com/ipfs/js-stores/commit/d2ce54170c5dbab65882018d9d2e0063e4260779))
* export options ([00dbf60](https://github.com/ipfs/js-stores/commit/00dbf604e248eaa5bfb6c27a9e0475cdc32bedd5))
* fix import ([1ab80a7](https://github.com/ipfs/js-stores/commit/1ab80a7131990d8190262e5773f117b3f1d549bc))
* fix slow ci ([1a6736f](https://github.com/ipfs/js-stores/commit/1a6736fb6e8354b9f94da3bc91a1defc35ebd2c9))
* initial commit ([e3e73df](https://github.com/ipfs/js-stores/commit/e3e73df19d543afd98bfbf4cbb76537979bd1a3b))
* publish ([ca0fc50](https://github.com/ipfs/js-stores/commit/ca0fc50134b164e5afc557c5a1aedb7af1623f9c))
* publish ([c256fa6](https://github.com/ipfs/js-stores/commit/c256fa6c3ca30047fc9edc9f7e7a16e464e5b333))
* publish ([1b8c053](https://github.com/ipfs/js-stores/commit/1b8c053b925421566adca356d1116e8169691718))
* publish ([17a18d9](https://github.com/ipfs/js-stores/commit/17a18d9af34a39ea7b066d523893c3254439f50b))
* publish ([24becc0](https://github.com/ipfs/js-stores/commit/24becc0ba9ba3e75a7ee87a006b67962f6d510b1))
* publish ([2059883](https://github.com/ipfs/js-stores/commit/2059883fd39cad552baf13ae0fdbb65493bc74ee))
* publish ([4f99c21](https://github.com/ipfs/js-stores/commit/4f99c21214ce9f1fb6f808c2fe69b5233ee5d31b))
* publish ([604a2b2](https://github.com/ipfs/js-stores/commit/604a2b2d9e37781627cbc1382c2e19f1fbeb0317))
* publish ([5073988](https://github.com/ipfs/js-stores/commit/50739882f922000d389ed50d0452dea06c6bb502))
* publish ([e246d97](https://github.com/ipfs/js-stores/commit/e246d974c52e9087598c5f78c417f25b08811fb9))
* publish ([f5d59e8](https://github.com/ipfs/js-stores/commit/f5d59e8f70f72a5900504ef4c4cd7af2b69cb7fb))
* publish ([b4a2514](https://github.com/ipfs/js-stores/commit/b4a251475df060773c9e3fd5218c95a92b6008b8))
* publish ([6febcf2](https://github.com/ipfs/js-stores/commit/6febcf2a879e6791ea5ecb617ab6c5f98f77847d))
* publish ([143ba26](https://github.com/ipfs/js-stores/commit/143ba26d8b2c521640bb0c790758ab82bfc6d1a0))
* publish ([be5e39a](https://github.com/ipfs/js-stores/commit/be5e39a76dd50104bf4fa3e6ec8221ba4decddb5))
* publish ([f6a0102](https://github.com/ipfs/js-stores/commit/f6a010286de4db5141ce2eb5617e618bafbb1d71))
* publish ([05e3072](https://github.com/ipfs/js-stores/commit/05e30725cfe5161dbdcdcaacc18b7820108dddcf))
* publish ([1e1bdd2](https://github.com/ipfs/js-stores/commit/1e1bdd2bae62f2e55b95635e2f42040c62cf65fa))
* publish ([f55c465](https://github.com/ipfs/js-stores/commit/f55c465df32023e5e3978834ee5aab3e19af212a))
* publish ([4e8bf56](https://github.com/ipfs/js-stores/commit/4e8bf56afb37619231b08963ffbf04105dbfeae7))
* publish ([8edd47d](https://github.com/ipfs/js-stores/commit/8edd47d7a0b358e17e68e117089b954857536885))
* publish ([67d1667](https://github.com/ipfs/js-stores/commit/67d16675fed0c52e2929fa6df19c4dda12987012))
* publish ([634387a](https://github.com/ipfs/js-stores/commit/634387adab2d83a51472ae22ff01c955bd889dd2))
* publish ([33020e4](https://github.com/ipfs/js-stores/commit/33020e403c81530df453dc2f7643fe7d79665f8b))
* publish ([6aa50db](https://github.com/ipfs/js-stores/commit/6aa50dbcdd23f8c5ef3658fa3c2ed9cbc3abf323))
* publish ([1c1a4ae](https://github.com/ipfs/js-stores/commit/1c1a4ae7035ec0d164636a0b4742f17c063db7bf))
* readme update ([56e4826](https://github.com/ipfs/js-stores/commit/56e48266d662cb0b83ea52c99c1a1749b242f177))
* **release:** 0.1.0 [skip ci] ([10476eb](https://github.com/ipfs/js-stores/commit/10476ebdb2f19324e5dae4f1532b3f1e6bbfffc1)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 1.0.0 [skip ci] ([405250f](https://github.com/ipfs/js-stores/commit/405250fc792bf1ebb993b79ed290645fe1f22c11)), closes [#201](https://github.com/ipfs/js-stores/issues/201) [#200](https://github.com/ipfs/js-stores/issues/200)
* **release:** 1.0.1 [skip ci] ([8dfe4e5](https://github.com/ipfs/js-stores/commit/8dfe4e5261d5dfe0f086c81145077f819806d247)), closes [#202](https://github.com/ipfs/js-stores/issues/202)
* **release:** 1.0.10 [skip ci] ([f87dd44](https://github.com/ipfs/js-stores/commit/f87dd444ff0cc27ed81f9ecf19de1d06df4ab03e)), closes [#273](https://github.com/ipfs/js-stores/issues/273)
* **release:** 1.0.11 [skip ci] ([d292758](https://github.com/ipfs/js-stores/commit/d292758334aa3960d30513dd238afab2765f68f5)), closes [#274](https://github.com/ipfs/js-stores/issues/274)
* **release:** 1.0.12 [skip ci] ([33f9197](https://github.com/ipfs/js-stores/commit/33f9197ef9d80018ca8c5fde8694668e90fc0037)), closes [#282](https://github.com/ipfs/js-stores/issues/282)
* **release:** 1.0.14 [skip ci] ([5d5b295](https://github.com/ipfs/js-stores/commit/5d5b295a4d1840810a423c637899b341422c82fd))
* **release:** 1.0.15 [skip ci] ([e8e3a1e](https://github.com/ipfs/js-stores/commit/e8e3a1eba91f62842c0f3701ce4f56f9a44fa4a9)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 1.0.16 [skip ci] ([9a62492](https://github.com/ipfs/js-stores/commit/9a62492ee04c97cf7ad6f548b72eeae672a5440b)), closes [#308](https://github.com/ipfs/js-stores/issues/308)
* **release:** 1.0.2 [skip ci] ([642c41f](https://github.com/ipfs/js-stores/commit/642c41f7b3b50286b9ed9a448de54faeaa604883)), closes [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 1.0.3 [skip ci] ([03c8959](https://github.com/ipfs/js-stores/commit/03c89590acca0c475086d12166efa3bec1e20c1c)), closes [#214](https://github.com/ipfs/js-stores/issues/214)
* **release:** 1.0.4 [skip ci] ([db9a101](https://github.com/ipfs/js-stores/commit/db9a101218b3ec5f7278024f259fdaed5df29873)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 1.0.5 [skip ci] ([9e43dd3](https://github.com/ipfs/js-stores/commit/9e43dd339560284082a88b42454c023636c65765)), closes [#231](https://github.com/ipfs/js-stores/issues/231)
* **release:** 1.0.6 [skip ci] ([515b378](https://github.com/ipfs/js-stores/commit/515b378b6e35c68e87936e1b190a008e3452a44e)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 1.0.7 [skip ci] ([0be8503](https://github.com/ipfs/js-stores/commit/0be8503a94cc7c2afa9d2a00b4f20c367dc3feb4)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 1.0.8 [skip ci] ([2cd965e](https://github.com/ipfs/js-stores/commit/2cd965ed62254aef02148c5a824b876932d7480f)), closes [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 1.0.9 [skip ci] ([f496d4f](https://github.com/ipfs/js-stores/commit/f496d4fb81149b454c0b3bd6a7e58c3bc1e2508a)), closes [#265](https://github.com/ipfs/js-stores/issues/265)
* **release:** 1.1.0 [skip ci] ([dcfcfd2](https://github.com/ipfs/js-stores/commit/dcfcfd238687541fbc44f54742e45eb2636805e5)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 1.1.0 [skip ci] ([d49cbfb](https://github.com/ipfs/js-stores/commit/d49cbfbc12c46ff2455bb06c85199d81383249ce)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 1.1.0 [skip ci] ([6fa0f7a](https://github.com/ipfs/js-stores/commit/6fa0f7aa79b76db52265d449f0df275b70542465)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 1.1.1 [skip ci] ([6bfda0a](https://github.com/ipfs/js-stores/commit/6bfda0a42dd537c038b4a2d668cd64577b8b0a9a)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 1.1.1 [skip ci] ([5884aa1](https://github.com/ipfs/js-stores/commit/5884aa1698de5ec6c9af39330fc79a0103fd11cf)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 1.1.1 [skip ci] ([2ec12ba](https://github.com/ipfs/js-stores/commit/2ec12ba13df924654312d0120e6a4e1b5dc90771)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 1.1.10 [skip ci] ([7374423](https://github.com/ipfs/js-stores/commit/7374423d9ebc26b895ac78116750439fff39c50e)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 1.1.11 [skip ci] ([3c15bbf](https://github.com/ipfs/js-stores/commit/3c15bbfbcbceea8ddc20db5259eeda125a3604a1)), closes [#306](https://github.com/ipfs/js-stores/issues/306)
* **release:** 1.1.2 [skip ci] ([d089988](https://github.com/ipfs/js-stores/commit/d08998868e5a4c9fb00216e5505bb28d330aca90)), closes [#231](https://github.com/ipfs/js-stores/issues/231)
* **release:** 1.1.2 [skip ci] ([27e5880](https://github.com/ipfs/js-stores/commit/27e588048598f5206e3675b726a09f9c9ff9fa6e)), closes [#231](https://github.com/ipfs/js-stores/issues/231)
* **release:** 1.1.2 [skip ci] ([ab61569](https://github.com/ipfs/js-stores/commit/ab61569a6557cc52758e4801492bf2a3f55d8a1f)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 1.1.3 [skip ci] ([45ec187](https://github.com/ipfs/js-stores/commit/45ec1876eef13c0d95369c0f2c5ef85f9eac5e7e)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 1.1.3 [skip ci] ([fe95b02](https://github.com/ipfs/js-stores/commit/fe95b021d78fb2f33980646b0a0016b02c669bb3)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 1.1.3 [skip ci] ([61f56da](https://github.com/ipfs/js-stores/commit/61f56da188adfae4a1eaa6d0e9098a18a7411482)), closes [#226](https://github.com/ipfs/js-stores/issues/226)
* **release:** 1.1.4 [skip ci] ([9ee3162](https://github.com/ipfs/js-stores/commit/9ee316256629783b6281542d7073973c4eb14a64)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 1.1.4 [skip ci] ([4258c30](https://github.com/ipfs/js-stores/commit/4258c300e69b70bd4d18b26c93a7164cf38d0465)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 1.1.4 [skip ci] ([3e07e46](https://github.com/ipfs/js-stores/commit/3e07e46e7395f3fe05657bae4cee8d6044000a04)), closes [#231](https://github.com/ipfs/js-stores/issues/231)
* **release:** 1.1.5 [skip ci] ([e2b96fd](https://github.com/ipfs/js-stores/commit/e2b96fdd4b390c32b4341ab2401d609a44db527c)), closes [#245](https://github.com/ipfs/js-stores/issues/245) [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 1.1.5 [skip ci] ([01f0820](https://github.com/ipfs/js-stores/commit/01f08206896b9181ab0a80158d43dc52c7ca6ec8)), closes [#245](https://github.com/ipfs/js-stores/issues/245) [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 1.1.5 [skip ci] ([38883cc](https://github.com/ipfs/js-stores/commit/38883cc9145a1b1e63a1c76c97227a36b2a5ff37)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 1.1.6 [skip ci] ([91e4845](https://github.com/ipfs/js-stores/commit/91e4845e6b431c96d76223f402c42395d4089db6)), closes [#274](https://github.com/ipfs/js-stores/issues/274)
* **release:** 1.1.6 [skip ci] ([c786bdc](https://github.com/ipfs/js-stores/commit/c786bdc58a173910865ad2cd5c1544b17ecaf3a4)), closes [#274](https://github.com/ipfs/js-stores/issues/274)
* **release:** 1.1.6 [skip ci] ([2f7be23](https://github.com/ipfs/js-stores/commit/2f7be23d7d8897a9ab54eba564bcf492ecbc89c5)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 1.1.7 [skip ci] ([2401e95](https://github.com/ipfs/js-stores/commit/2401e9572cd3daf3ae1dca723dbbbb4997143f43)), closes [#281](https://github.com/ipfs/js-stores/issues/281) [#286](https://github.com/ipfs/js-stores/issues/286)
* **release:** 1.1.7 [skip ci] ([3423745](https://github.com/ipfs/js-stores/commit/34237454fae8adcf2dd07cde3f8fc23ae83d04ea)), closes [#286](https://github.com/ipfs/js-stores/issues/286)
* **release:** 1.1.7 [skip ci] ([20907ff](https://github.com/ipfs/js-stores/commit/20907ffb5813995bba89a8015f36003775b08e3e)), closes [#245](https://github.com/ipfs/js-stores/issues/245) [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 1.1.8 [skip ci] ([a5f10ba](https://github.com/ipfs/js-stores/commit/a5f10badf593669380edd6b0035b67774161c9b7)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 1.1.8 [skip ci] ([479ba70](https://github.com/ipfs/js-stores/commit/479ba709ca54f9b6f7aadec87e6699b2d87f9992)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 1.1.8 [skip ci] ([48b6a70](https://github.com/ipfs/js-stores/commit/48b6a70ba24c8c98829d1017e77cc094621305c3)), closes [#274](https://github.com/ipfs/js-stores/issues/274)
* **release:** 1.1.9 [skip ci] ([5307449](https://github.com/ipfs/js-stores/commit/530744952275f7be66ca53f3a3b58c81d2057cd4)), closes [#286](https://github.com/ipfs/js-stores/issues/286)
* **release:** 10.0.0 [skip ci] ([ae52bfc](https://github.com/ipfs/js-stores/commit/ae52bfc5aa6503ac656ed6312694e2e0445a53dd)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 10.0.0 [skip ci] ([89aa5e1](https://github.com/ipfs/js-stores/commit/89aa5e1b33e6ba7b1db4605155cd66aa56181f8b)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 10.1.0 [skip ci] ([b500ee8](https://github.com/ipfs/js-stores/commit/b500ee87f1dcc32ade8bba95a539b57604fa1b06)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 10.1.1 [skip ci] ([42fd4f3](https://github.com/ipfs/js-stores/commit/42fd4f3be0fc0152cdaa0e0d4cde8d510ced29e6)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 10.1.2 [skip ci] ([cdc3f04](https://github.com/ipfs/js-stores/commit/cdc3f045cc487277b9d9a37817b55cd4cd444eb3)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 10.1.3 [skip ci] ([b02129c](https://github.com/ipfs/js-stores/commit/b02129cbd367deab0cf199620605012d5af07f0d)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 10.1.4 [skip ci] ([ce5247b](https://github.com/ipfs/js-stores/commit/ce5247b57f8a00c1cc0f204760ad984339115396)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 10.1.5 [skip ci] ([50763d0](https://github.com/ipfs/js-stores/commit/50763d0ae947918aa9a8da05332a37d2229a6412)), closes [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 10.1.6 [skip ci] ([67541e9](https://github.com/ipfs/js-stores/commit/67541e94f0c4579e782d732a5db590a0cc2a015c))
* **release:** 10.1.7 [skip ci] ([bf0b007](https://github.com/ipfs/js-stores/commit/bf0b0074045dcfe460db115021cd48346694a211)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 10.1.8 [skip ci] ([92d5933](https://github.com/ipfs/js-stores/commit/92d59330bc539e3134f285c3d8d60b4468f84ace)), closes [#299](https://github.com/ipfs/js-stores/issues/299)
* **release:** 11.0.0 [skip ci] ([2cd66f5](https://github.com/ipfs/js-stores/commit/2cd66f5b07476946c25fe7fa915ecdd02bb824a2)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 11.1.0 [skip ci] ([cfcb39d](https://github.com/ipfs/js-stores/commit/cfcb39d33ece55af7aa6c13965e70b1e79f722f1)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 11.1.1 [skip ci] ([5f60f27](https://github.com/ipfs/js-stores/commit/5f60f278449a856cc8b55c5722fe4233eab0aa4b)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 11.1.10 [skip ci] ([a9d62bd](https://github.com/ipfs/js-stores/commit/a9d62bd1ed9d10e603211fb279b9d7dec4bcebc5))
* **release:** 11.1.11 [skip ci] ([7353d28](https://github.com/ipfs/js-stores/commit/7353d280ae23f8040cf26cc60388799491fd399f)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 11.1.12 [skip ci] ([7877a67](https://github.com/ipfs/js-stores/commit/7877a67817dcc46e4d48904dd576eb728700cb76)), closes [#308](https://github.com/ipfs/js-stores/issues/308)
* **release:** 11.1.2 [skip ci] ([b3148e9](https://github.com/ipfs/js-stores/commit/b3148e9dc9a477072ff2562c8a99e0b886ce339c)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 11.1.3 [skip ci] ([d8999ba](https://github.com/ipfs/js-stores/commit/d8999ba0b992b83f7f439732f5514f5fc8eb93a2)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 11.1.4 [skip ci] ([8083f44](https://github.com/ipfs/js-stores/commit/8083f448aa447fc71949c54514d2c1b05207109c)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 11.1.5 [skip ci] ([a9218cd](https://github.com/ipfs/js-stores/commit/a9218cddfed1c25995927d060fdc97e85845b83a)), closes [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 11.1.6 [skip ci] ([17a8e76](https://github.com/ipfs/js-stores/commit/17a8e76ad30eb57c0d05a33b9e36ef9da670a9e0)), closes [#265](https://github.com/ipfs/js-stores/issues/265)
* **release:** 11.1.7 [skip ci] ([663ae05](https://github.com/ipfs/js-stores/commit/663ae051d6b23ed76bf7533db767f6de183690a5)), closes [#273](https://github.com/ipfs/js-stores/issues/273)
* **release:** 11.1.8 [skip ci] ([c5c79d0](https://github.com/ipfs/js-stores/commit/c5c79d098109ee58e1fa2698569e9ce452013b11)), closes [#274](https://github.com/ipfs/js-stores/issues/274)
* **release:** 11.1.9 [skip ci] ([edb7c80](https://github.com/ipfs/js-stores/commit/edb7c80b5e24b34c53e2d1eda1d1a96a02d19048)), closes [#282](https://github.com/ipfs/js-stores/issues/282)
* **release:** 12.0.0 [skip ci] ([8ef4ed4](https://github.com/ipfs/js-stores/commit/8ef4ed48537ced54cf8c1ea47fb796f942b97241)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 2.0.0 [skip ci] ([a8dce3e](https://github.com/ipfs/js-stores/commit/a8dce3e53d18bf8b9499f85862b9fc182424ec19)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 2.0.0 [skip ci] ([5b8f461](https://github.com/ipfs/js-stores/commit/5b8f4615ba5cab9737a0582af6a8486bcc3b02e0)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 2.0.0 [skip ci] ([2368fb3](https://github.com/ipfs/js-stores/commit/2368fb35cadcaeeaa5c52df9d95f18fc3d5bda64)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 2.0.0 [skip ci] ([4f4b9ee](https://github.com/ipfs/js-stores/commit/4f4b9ee96dd1195f213391198f4cc62e08281262)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 2.1.0 [skip ci] ([6c92ec7](https://github.com/ipfs/js-stores/commit/6c92ec73b82eac0bf446718f1b1d24fb9b740ce6)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 2.1.1 [skip ci] ([351c496](https://github.com/ipfs/js-stores/commit/351c49680be94a162153b6d71858382ae79cf0e7)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 2.1.2 [skip ci] ([1b2c5e7](https://github.com/ipfs/js-stores/commit/1b2c5e78b6c6c42f0bf100574c72789f83998c2c)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 2.1.3 [skip ci] ([c1091f3](https://github.com/ipfs/js-stores/commit/c1091f37cacc826d8f6130a73dec7ea6cea81d2a)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 2.1.4 [skip ci] ([03121dc](https://github.com/ipfs/js-stores/commit/03121dcd4db817b58d7304b179fbeb21d5a18a03)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 2.1.5 [skip ci] ([bf900b9](https://github.com/ipfs/js-stores/commit/bf900b969cd18b9f3e83ff0b87d04f61af7614b0)), closes [#245](https://github.com/ipfs/js-stores/issues/245) [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 2.1.6 [skip ci] ([1ca88ca](https://github.com/ipfs/js-stores/commit/1ca88ca943756ea3bc6a465c3267b1bed2738789)), closes [#274](https://github.com/ipfs/js-stores/issues/274)
* **release:** 2.1.7 [skip ci] ([191ab3d](https://github.com/ipfs/js-stores/commit/191ab3d3e093ea5b7dd106a6ff66f4a6e01b2568)), closes [#281](https://github.com/ipfs/js-stores/issues/281)
* **release:** 2.1.8 [skip ci] ([135a09b](https://github.com/ipfs/js-stores/commit/135a09b0ae32beb6a6f51c8239f0800a01e9c95b)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 2.1.9 [skip ci] ([81a54e7](https://github.com/ipfs/js-stores/commit/81a54e73eec48a8a29723ea0a74ce8d7ac17d92e)), closes [#299](https://github.com/ipfs/js-stores/issues/299)
* **release:** 3.0.0 [skip ci] ([cc92722](https://github.com/ipfs/js-stores/commit/cc9272215453b23b72cec2e43f8de7f18d2ff703)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 3.0.1 [skip ci] ([62dd620](https://github.com/ipfs/js-stores/commit/62dd620a03be88a74844fb1da32c7937542dc689)), closes [#175](https://github.com/ipfs/js-stores/issues/175)
* **release:** 3.0.1 [skip ci] ([0a73ce9](https://github.com/ipfs/js-stores/commit/0a73ce9d30d77cdb4cfebdaa7f1381668818d39e)), closes [#174](https://github.com/ipfs/js-stores/issues/174) [#175](https://github.com/ipfs/js-stores/issues/175)
* **release:** 3.0.1 [skip ci] ([d896eec](https://github.com/ipfs/js-stores/commit/d896eec3387e60b47367ed92e10f19914a48fd27)), closes [#174](https://github.com/ipfs/js-stores/issues/174) [#175](https://github.com/ipfs/js-stores/issues/175)
* **release:** 3.0.1 [skip ci] ([75f3006](https://github.com/ipfs/js-stores/commit/75f3006a4ba7b226b0946902356b27fa264431bb)), closes [#175](https://github.com/ipfs/js-stores/issues/175)
* **release:** 3.0.2 [skip ci] ([5a24743](https://github.com/ipfs/js-stores/commit/5a2474328c0260060fe965fc88b54eb3a0df931a)), closes [#181](https://github.com/ipfs/js-stores/issues/181)
* **release:** 3.0.2 [skip ci] ([7c6d0de](https://github.com/ipfs/js-stores/commit/7c6d0de3cb5e329deadc3d9cd5abedfe9fc69d6c)), closes [#181](https://github.com/ipfs/js-stores/issues/181)
* **release:** 3.0.2 [skip ci] ([09aa693](https://github.com/ipfs/js-stores/commit/09aa693dab68009890665ffa4e95e630a0912c0b)), closes [#181](https://github.com/ipfs/js-stores/issues/181)
* **release:** 3.0.2 [skip ci] ([4f9fad1](https://github.com/ipfs/js-stores/commit/4f9fad1c48007ee9d761eed7a9b91b05661f95ef)), closes [#181](https://github.com/ipfs/js-stores/issues/181)
* **release:** 3.0.3 [skip ci] ([20a044d](https://github.com/ipfs/js-stores/commit/20a044d9591612611261f027bef93e707933b9af)), closes [#183](https://github.com/ipfs/js-stores/issues/183)
* **release:** 3.0.3 [skip ci] ([102a8bd](https://github.com/ipfs/js-stores/commit/102a8bd0662afa6fb38d675bae9c159c431c0151)), closes [#28](https://github.com/ipfs/js-stores/issues/28) [#28](https://github.com/ipfs/js-stores/issues/28) [#27](https://github.com/ipfs/js-stores/issues/27) [#24](https://github.com/ipfs/js-stores/issues/24) [#28](https://github.com/ipfs/js-stores/issues/28) [#28](https://github.com/ipfs/js-stores/issues/28) [#27](https://github.com/ipfs/js-stores/issues/27) [#24](https://github.com/ipfs/js-stores/issues/24) [#183](https://github.com/ipfs/js-stores/issues/183)
* **release:** 3.0.3 [skip ci] ([88363b0](https://github.com/ipfs/js-stores/commit/88363b0361358e27676263430da496482925d2cf)), closes [#28](https://github.com/ipfs/js-stores/issues/28) [#28](https://github.com/ipfs/js-stores/issues/28) [#27](https://github.com/ipfs/js-stores/issues/27) [#24](https://github.com/ipfs/js-stores/issues/24) [#28](https://github.com/ipfs/js-stores/issues/28) [#28](https://github.com/ipfs/js-stores/issues/28) [#27](https://github.com/ipfs/js-stores/issues/27) [#24](https://github.com/ipfs/js-stores/issues/24) [#28](https://github.com/ipfs/js-stores/issues/28) [#183](https://github.com/ipfs/js-stores/issues/183)
* **release:** 3.0.4 [skip ci] ([13bc59c](https://github.com/ipfs/js-stores/commit/13bc59c78c4ce5c9dfe13d806ce3fb8d5e1f5e55)), closes [#184](https://github.com/ipfs/js-stores/issues/184)
* **release:** 3.0.4 [skip ci] ([47ce4d7](https://github.com/ipfs/js-stores/commit/47ce4d7a64db63ae36a2a13ad2999f800f3ec3e9))
* **release:** 3.0.5 [skip ci] ([62aaee2](https://github.com/ipfs/js-stores/commit/62aaee205159135ea744c7e661a8614ed6c422ac)), closes [#184](https://github.com/ipfs/js-stores/issues/184)
* **release:** 4.0.0 [skip ci] ([1d1079c](https://github.com/ipfs/js-stores/commit/1d1079c510799cc2f84f4f78730a8cb691f6c2b8)), closes [#189](https://github.com/ipfs/js-stores/issues/189)
* **release:** 4.0.0 [skip ci] ([756cc83](https://github.com/ipfs/js-stores/commit/756cc8337c5024623f61a5f9c38d13e89b93e989)), closes [#189](https://github.com/ipfs/js-stores/issues/189)
* **release:** 4.0.0 [skip ci] ([2207d7a](https://github.com/ipfs/js-stores/commit/2207d7a81387bb0c41320bc52cd2c5ed32a44c45)), closes [#182](https://github.com/ipfs/js-stores/issues/182) [#234](https://github.com/ipfs/js-stores/issues/234) [#226](https://github.com/ipfs/js-stores/issues/226) [#234](https://github.com/ipfs/js-stores/issues/234) [#226](https://github.com/ipfs/js-stores/issues/226) [#226](https://github.com/ipfs/js-stores/issues/226)
* **release:** 4.0.0 [skip ci] ([fd6a8aa](https://github.com/ipfs/js-stores/commit/fd6a8aaecc724daf80bd0f2dfbef29031e5b82fe)), closes [#182](https://github.com/ipfs/js-stores/issues/182) [#183](https://github.com/ipfs/js-stores/issues/183) [#234](https://github.com/ipfs/js-stores/issues/234) [#226](https://github.com/ipfs/js-stores/issues/226) [#234](https://github.com/ipfs/js-stores/issues/234) [#226](https://github.com/ipfs/js-stores/issues/226) [#226](https://github.com/ipfs/js-stores/issues/226)
* **release:** 4.0.1 [skip ci] ([8e69010](https://github.com/ipfs/js-stores/commit/8e6901010f2600a46cb426a05d0d9b7753f7dc3a)), closes [#184](https://github.com/ipfs/js-stores/issues/184)
* **release:** 4.0.1 [skip ci] ([e8d30c0](https://github.com/ipfs/js-stores/commit/e8d30c0131016d818c791754ffa587a7d3c13466)), closes [#184](https://github.com/ipfs/js-stores/issues/184)
* **release:** 4.0.2 [skip ci] ([54f3eee](https://github.com/ipfs/js-stores/commit/54f3eee5aa128c2ef2cde192037fa694dbd7a73a)), closes [#188](https://github.com/ipfs/js-stores/issues/188)
* **release:** 4.1.0 [skip ci] ([df06919](https://github.com/ipfs/js-stores/commit/df06919855f16d0cdad1892c5ef56af037020f06)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 4.1.0 [skip ci] ([5ed90c4](https://github.com/ipfs/js-stores/commit/5ed90c40e86cae04095fec8624a5c87c51dd0ed5)), closes [#193](https://github.com/ipfs/js-stores/issues/193)
* **release:** 4.1.1 [skip ci] ([346ee0f](https://github.com/ipfs/js-stores/commit/346ee0fc9ec164586704b861ead4b774aae42ae8)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 4.2.0 [skip ci] ([ceb244c](https://github.com/ipfs/js-stores/commit/ceb244c0bbbcae8b36de36c3617e544c1ff6465c)), closes [#227](https://github.com/ipfs/js-stores/issues/227)
* **release:** 4.3.0 [skip ci] ([725e0dd](https://github.com/ipfs/js-stores/commit/725e0dd8f7e4c9dfa6857b54f3cf7d97ff3a56e2)), closes [#238](https://github.com/ipfs/js-stores/issues/238)
* **release:** 4.3.1 [skip ci] ([27f88c0](https://github.com/ipfs/js-stores/commit/27f88c0cf4d6da1e61633b9564305fd8dbbd496a)), closes [#240](https://github.com/ipfs/js-stores/issues/240)
* **release:** 4.3.10 [skip ci] ([d5bdd95](https://github.com/ipfs/js-stores/commit/d5bdd953e0c6b5ea2f69c68447aa119567abd8db))
* **release:** 4.3.11 [skip ci] ([6173c27](https://github.com/ipfs/js-stores/commit/6173c27a1a66fd106798f2a41aae2458765ad779)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 4.3.2 [skip ci] ([bad53b9](https://github.com/ipfs/js-stores/commit/bad53b98e5361cb44e24ee057e7d7ad8fcd90c48)), closes [#231](https://github.com/ipfs/js-stores/issues/231)
* **release:** 4.3.3 [skip ci] ([04510b1](https://github.com/ipfs/js-stores/commit/04510b149e954442a0ff983c0fa6404cff69f794)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 4.3.4 [skip ci] ([d8552a2](https://github.com/ipfs/js-stores/commit/d8552a2181b409990e44a3fa45cc67c2f883a21e)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 4.3.5 [skip ci] ([c961d00](https://github.com/ipfs/js-stores/commit/c961d009857aec77031107e04040aa99bfa7db5b)), closes [#245](https://github.com/ipfs/js-stores/issues/245) [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 4.3.6 [skip ci] ([a67f66a](https://github.com/ipfs/js-stores/commit/a67f66a205b1326ec69335a3b5211421c70cab1e)), closes [#280](https://github.com/ipfs/js-stores/issues/280)
* **release:** 4.3.7 [skip ci] ([ee2203a](https://github.com/ipfs/js-stores/commit/ee2203a2c7ea14dc73286f58feb5e0af9fb9075c)), closes [#274](https://github.com/ipfs/js-stores/issues/274)
* **release:** 4.3.8 [skip ci] ([e3ecb03](https://github.com/ipfs/js-stores/commit/e3ecb03a033bc31d1bc6e7950c1612e3ebf3ef30)), closes [#282](https://github.com/ipfs/js-stores/issues/282)
* **release:** 4.4.0 [skip ci] ([58c48eb](https://github.com/ipfs/js-stores/commit/58c48eba21ad1e54bf4a2e49d95bb2f55e1218d3)), closes [#298](https://github.com/ipfs/js-stores/issues/298)
* **release:** 4.4.1 [skip ci] ([2e8f8db](https://github.com/ipfs/js-stores/commit/2e8f8db26b07d24ff0f56ce82eb7ce47a918d492)), closes [#303](https://github.com/ipfs/js-stores/issues/303)
* **release:** 5.0.0 [skip ci] ([225da7e](https://github.com/ipfs/js-stores/commit/225da7ebae152f59d11c125f3adc24d3ef6b6e95)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 5.0.0 [skip ci] ([5230741](https://github.com/ipfs/js-stores/commit/523074172b590f6708f92f2e3f8e94317cf565dc)), closes [#196](https://github.com/ipfs/js-stores/issues/196) [#195](https://github.com/ipfs/js-stores/issues/195)
* **release:** 5.0.0 [skip ci] ([3d69492](https://github.com/ipfs/js-stores/commit/3d6949202b8bdf1e923429ec9114640e972ffd5f)), closes [#195](https://github.com/ipfs/js-stores/issues/195)
* **release:** 5.0.0 [skip ci] ([44b12bd](https://github.com/ipfs/js-stores/commit/44b12bd8972607a2907ef25955d5c5732098acf8)), closes [#189](https://github.com/ipfs/js-stores/issues/189)
* **release:** 5.0.0 [skip ci] ([9c25d3f](https://github.com/ipfs/js-stores/commit/9c25d3fa41a774aae2da985b23309e6248c6bbd9)), closes [#189](https://github.com/ipfs/js-stores/issues/189)
* **release:** 5.0.1 [skip ci] ([060e74b](https://github.com/ipfs/js-stores/commit/060e74bf4b3ed23b4b223422f871f1ce612e2cb1)), closes [#196](https://github.com/ipfs/js-stores/issues/196)
* **release:** 5.0.1 [skip ci] ([c1c6add](https://github.com/ipfs/js-stores/commit/c1c6add3474446138939db38f24ebb3cb4922035)), closes [#190](https://github.com/ipfs/js-stores/issues/190)
* **release:** 5.1.0 [skip ci] ([30735a2](https://github.com/ipfs/js-stores/commit/30735a273af3418c5dae30cf754c1e187abc8184)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 5.1.0 [skip ci] ([a571532](https://github.com/ipfs/js-stores/commit/a5715323a8694dfda7d8ec0411da76fe024a36fc)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 5.1.0 [skip ci] ([e24ce0b](https://github.com/ipfs/js-stores/commit/e24ce0b558d62078617335f5c453106b57693c41)), closes [#193](https://github.com/ipfs/js-stores/issues/193)
* **release:** 5.1.1 [skip ci] ([2a1d9bd](https://github.com/ipfs/js-stores/commit/2a1d9bda4158ff740e3515f995061e2c531c591f)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 5.1.1 [skip ci] ([146bc5c](https://github.com/ipfs/js-stores/commit/146bc5c87d5376d1d758c2ee3f3f4bdee2e4c267)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 5.1.1 [skip ci] ([9db13e0](https://github.com/ipfs/js-stores/commit/9db13e0435730e3147d2e3bcde301f6bac1563f7))
* **release:** 5.1.2 [skip ci] ([f32c9a4](https://github.com/ipfs/js-stores/commit/f32c9a46340eee3498967fa918c31d03885ffd91)), closes [#228](https://github.com/ipfs/js-stores/issues/228)
* **release:** 5.1.2 [skip ci] ([970f81d](https://github.com/ipfs/js-stores/commit/970f81d00f753aed885aceff6ff6abcd9163e69e)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 5.1.3 [skip ci] ([fc95c0f](https://github.com/ipfs/js-stores/commit/fc95c0f555a1e3b02f3875047f2badad3ebc0d43)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 5.1.3 [skip ci] ([a970ceb](https://github.com/ipfs/js-stores/commit/a970ceb4e6cb0531e994b26fc1c9852fca8df897)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 5.1.4 [skip ci] ([596fde8](https://github.com/ipfs/js-stores/commit/596fde8f16f51bc947e3907150e110c4f62d007b)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 5.1.4 [skip ci] ([238872f](https://github.com/ipfs/js-stores/commit/238872fa0c5c09a0f229d851c56cd6a2933951de)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 5.1.5 [skip ci] ([9997757](https://github.com/ipfs/js-stores/commit/9997757101a34dbd61c71841932433296b7f4038)), closes [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 5.1.5 [skip ci] ([980c8c6](https://github.com/ipfs/js-stores/commit/980c8c69001bc2570884bc9574909215de091bc7)), closes [#245](https://github.com/ipfs/js-stores/issues/245) [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 5.1.6 [skip ci] ([3aee60f](https://github.com/ipfs/js-stores/commit/3aee60ff311be560ae1e8b8f5c304d32df926e40))
* **release:** 5.1.6 [skip ci] ([55c5855](https://github.com/ipfs/js-stores/commit/55c5855091ddc426a68cea22453e58bdee05f808)), closes [#282](https://github.com/ipfs/js-stores/issues/282)
* **release:** 5.1.7 [skip ci] ([dd7cb8c](https://github.com/ipfs/js-stores/commit/dd7cb8c8c2ab231894462c89ab22e6e37267cdc9))
* **release:** 5.1.7 [skip ci] ([8f08f7f](https://github.com/ipfs/js-stores/commit/8f08f7f978a9bf8b585d364dddd8cb3e56d85b02))
* **release:** 5.1.8 [skip ci] ([e151fcd](https://github.com/ipfs/js-stores/commit/e151fcd0938f55ec1b16c51fd25107a23d6a5871)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 5.1.8 [skip ci] ([3494590](https://github.com/ipfs/js-stores/commit/34945900e6f7d29f8998a6674e1049e432d3e64f)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 5.2.0 [skip ci] ([496c177](https://github.com/ipfs/js-stores/commit/496c1770ff96a072655236597d492aab260cacd4)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 5.2.1 [skip ci] ([b40b32e](https://github.com/ipfs/js-stores/commit/b40b32effe26508e62b7b84cbc4ffa9bbcee6753)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 5.2.10 [skip ci] ([235ed35](https://github.com/ipfs/js-stores/commit/235ed35861f17d17b2f042fc63e2981a6335e908)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 5.2.2 [skip ci] ([7d70be5](https://github.com/ipfs/js-stores/commit/7d70be55d69cf988991d9af6bae014066a31f2c2)), closes [#224](https://github.com/ipfs/js-stores/issues/224)
* **release:** 5.2.3 [skip ci] ([eb59834](https://github.com/ipfs/js-stores/commit/eb59834bfb29a7b61fb361ae2ecc90d3d19b908b)), closes [#228](https://github.com/ipfs/js-stores/issues/228)
* **release:** 5.2.4 [skip ci] ([20faf4a](https://github.com/ipfs/js-stores/commit/20faf4a68b4560d648cd92fd387b5a40ced37dff)), closes [#231](https://github.com/ipfs/js-stores/issues/231)
* **release:** 5.2.5 [skip ci] ([0876da6](https://github.com/ipfs/js-stores/commit/0876da6fbf3eb63ba19d1e5e71835342615eba91)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 5.2.6 [skip ci] ([50496de](https://github.com/ipfs/js-stores/commit/50496de5a85abfbfc59003f3e216fe53babb264c)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 5.2.7 [skip ci] ([866b4c5](https://github.com/ipfs/js-stores/commit/866b4c581d110955a07b9c80b4af849f0fc5719f)), closes [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 5.2.9 [skip ci] ([2680073](https://github.com/ipfs/js-stores/commit/2680073d393d2763feaa5c21053fac234097d7c8))
* **release:** 5.2.9 [skip ci] ([e183a4e](https://github.com/ipfs/js-stores/commit/e183a4ea2ac0b1bd585d6673d80827035e0d8d6e))
* **release:** 5.3.0 [skip ci] ([49e0618](https://github.com/ipfs/js-stores/commit/49e06180f2061cd6b293596d9d0df76f3d45020e))
* **release:** 6.0.0 [skip ci] ([2f24f58](https://github.com/ipfs/js-stores/commit/2f24f583138ce3934b020e504c35a276d143456b)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 6.0.0 [skip ci] ([c097d58](https://github.com/ipfs/js-stores/commit/c097d58d0f7ee39aecae9cce0c1bf0069215b6df)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 6.0.0 [skip ci] ([96958c0](https://github.com/ipfs/js-stores/commit/96958c08bf728c536663e569d44011487065f3f7)), closes [#196](https://github.com/ipfs/js-stores/issues/196) [#195](https://github.com/ipfs/js-stores/issues/195)
* **release:** 6.1.0 [skip ci] ([1d518f6](https://github.com/ipfs/js-stores/commit/1d518f6894a4ebfc8538390b718fb77061a879bd)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 6.1.1 [skip ci] ([d3c1041](https://github.com/ipfs/js-stores/commit/d3c10416f5bab8c067adc7ee714fd2809b34e558)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 6.1.10 [skip ci] ([03fd5d3](https://github.com/ipfs/js-stores/commit/03fd5d3020989157493a95720d85a9ee00e12572)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 6.1.2 [skip ci] ([6d0043c](https://github.com/ipfs/js-stores/commit/6d0043cceaab83a6065d5a287b24394db6db2473)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 6.1.3 [skip ci] ([72b6e10](https://github.com/ipfs/js-stores/commit/72b6e10e7d7f269d98ba1559bf5f96d229430bb9)), closes [#231](https://github.com/ipfs/js-stores/issues/231)
* **release:** 6.1.4 [skip ci] ([095c274](https://github.com/ipfs/js-stores/commit/095c2740284f75616d7e8086563616959912693a)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 6.1.5 [skip ci] ([11acd12](https://github.com/ipfs/js-stores/commit/11acd12dd420907b52fab24fd4c22607665b8010)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 6.1.6 [skip ci] ([6407f97](https://github.com/ipfs/js-stores/commit/6407f97cf4139841f9dd902a9dfaa6bce30edb80)), closes [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 6.1.7 [skip ci] ([4807b1f](https://github.com/ipfs/js-stores/commit/4807b1f92353320eecef97583eb1d43bf0c1dc4b)), closes [#282](https://github.com/ipfs/js-stores/issues/282)
* **release:** 6.1.9 [skip ci] ([d446381](https://github.com/ipfs/js-stores/commit/d446381f7b4a391bb249023e534f1c4fd05f1b17))
* **release:** 7.0.0 [skip ci] ([027cfa6](https://github.com/ipfs/js-stores/commit/027cfa600bd15206dadb53d8e4d3127642bacb57)), closes [#315](https://github.com/ipfs/js-stores/issues/315)
* **release:** 7.0.1 [skip ci] ([dc879fb](https://github.com/ipfs/js-stores/commit/dc879fb141475fb99a1347f4d511856a30ffd413)), closes [#110](https://github.com/ipfs/js-stores/issues/110) [#175](https://github.com/ipfs/js-stores/issues/175)
* **release:** 7.0.2 [skip ci] ([bfdc00d](https://github.com/ipfs/js-stores/commit/bfdc00dd598d7d468d4134007b4dafa460eb8a5f)), closes [#181](https://github.com/ipfs/js-stores/issues/181)
* **release:** 7.0.3 [skip ci] ([6180190](https://github.com/ipfs/js-stores/commit/6180190b98b184ecc5f93afeaeefa4dd628dfc06)), closes [#183](https://github.com/ipfs/js-stores/issues/183)
* **release:** 7.0.4 [skip ci] ([3430b6c](https://github.com/ipfs/js-stores/commit/3430b6cf00f8512b67dc9034fa22f6355c92197a)), closes [#184](https://github.com/ipfs/js-stores/issues/184)
* **release:** 8.0.0 [skip ci] ([0d01201](https://github.com/ipfs/js-stores/commit/0d01201d665cde0a5d17cf3c65bc28a1930f536f)), closes [#189](https://github.com/ipfs/js-stores/issues/189)
* **release:** 8.1.0 [skip ci] ([9ad0ce5](https://github.com/ipfs/js-stores/commit/9ad0ce5e80e653ed9675f80736a1a58a93308f2e)), closes [#193](https://github.com/ipfs/js-stores/issues/193)
* **release:** 8.1.1 [skip ci] ([40f500b](https://github.com/ipfs/js-stores/commit/40f500be4fd820bdd901bde6a6be2ff1683bb800)), closes [#194](https://github.com/ipfs/js-stores/issues/194)
* **release:** 8.1.2 [skip ci] ([8c312d3](https://github.com/ipfs/js-stores/commit/8c312d3f9702f307fc180a9289d4f55f141c27a4))
* **release:** 8.2.0 [skip ci] ([2c6f2ae](https://github.com/ipfs/js-stores/commit/2c6f2ae40a6181d6f33c469f851245755d6bf389)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 8.2.1 [skip ci] ([44d0d5c](https://github.com/ipfs/js-stores/commit/44d0d5c2508638a4f19e7f9a981998879effe92e)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 8.2.10 [skip ci] ([7f26bc8](https://github.com/ipfs/js-stores/commit/7f26bc855e23aebbce19c8f19fc642493aab6298))
* **release:** 8.2.10 [skip ci] ([a8c793e](https://github.com/ipfs/js-stores/commit/a8c793ed72f3e1442f6ead18361f428f6b698bf8))
* **release:** 8.2.11 [skip ci] ([15369b7](https://github.com/ipfs/js-stores/commit/15369b79ed3ac75342530757811cc31c22e99631)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 8.2.2 [skip ci] ([3b2280a](https://github.com/ipfs/js-stores/commit/3b2280a3aa56c5a515ea79adfbacb52e88ada113)), closes [#224](https://github.com/ipfs/js-stores/issues/224)
* **release:** 8.2.3 [skip ci] ([fc2925e](https://github.com/ipfs/js-stores/commit/fc2925e2b39c9093b157e7424232f6cfac968ad6)), closes [#228](https://github.com/ipfs/js-stores/issues/228)
* **release:** 8.2.4 [skip ci] ([7d4b28e](https://github.com/ipfs/js-stores/commit/7d4b28ef254a73906c9d05665752c413e6791c96)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 8.2.5 [skip ci] ([d440496](https://github.com/ipfs/js-stores/commit/d4404969ce7db0846ee986c6f66ce6c424f8f309)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 8.2.6 [skip ci] ([49d9e86](https://github.com/ipfs/js-stores/commit/49d9e868d6ae990df38d93cf71895b540ff24106)), closes [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 8.2.7 [skip ci] ([becf59f](https://github.com/ipfs/js-stores/commit/becf59fe0849f29644906bc1fe06409a7c3513ef)), closes [#269](https://github.com/ipfs/js-stores/issues/269)
* **release:** 8.2.8 [skip ci] ([23fbc88](https://github.com/ipfs/js-stores/commit/23fbc88fb73114e3999feddc397b3c349941bbc8)), closes [#282](https://github.com/ipfs/js-stores/issues/282)
* **release:** 8.2.9 [skip ci] ([7dad9a4](https://github.com/ipfs/js-stores/commit/7dad9a43fdec367895467752a6fee3ac7f912ca4)), closes [#283](https://github.com/ipfs/js-stores/issues/283)
* **release:** 8.3.0 [skip ci] ([63d45ec](https://github.com/ipfs/js-stores/commit/63d45ec246c5607157334631a44ee09b24bf1c39))
* **release:** 9.1.0 [skip ci] ([d39c6a9](https://github.com/ipfs/js-stores/commit/d39c6a92ffc8bbc5ae9790abfed9ce7f6fde6c68)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 9.1.0 [skip ci] ([228bd8b](https://github.com/ipfs/js-stores/commit/228bd8b63f4da1169cfb395bd9d483359ee8be56)), closes [#197](https://github.com/ipfs/js-stores/issues/197)
* **release:** 9.1.1 [skip ci] ([7c7f97a](https://github.com/ipfs/js-stores/commit/7c7f97ab4d2b138dcb30dfaccec300ce5ca8281a)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 9.1.1 [skip ci] ([aa3a63f](https://github.com/ipfs/js-stores/commit/aa3a63ffeca74634f7ba279aff93d7dd981d92aa)), closes [#200](https://github.com/ipfs/js-stores/issues/200) [#213](https://github.com/ipfs/js-stores/issues/213)
* **release:** 9.1.2 [skip ci] ([842bdc4](https://github.com/ipfs/js-stores/commit/842bdc4832c526d9b6411f40781bee6a46c9fe49)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 9.1.2 [skip ci] ([2ebd1ad](https://github.com/ipfs/js-stores/commit/2ebd1ad5f71a109661a0cb30785960abe1c0c810)), closes [#225](https://github.com/ipfs/js-stores/issues/225)
* **release:** 9.1.3 [skip ci] ([4279b47](https://github.com/ipfs/js-stores/commit/4279b4706685d79fe23e680dcef6b32fc0ae24fb)), closes [#232](https://github.com/ipfs/js-stores/issues/232)
* **release:** 9.1.4 [skip ci] ([bcf6004](https://github.com/ipfs/js-stores/commit/bcf6004fe818fa9c24a18aa8eddc1ac4aaae51d7)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 9.1.5 [skip ci] ([050210c](https://github.com/ipfs/js-stores/commit/050210c977afd46e2cac161f21d46fb6d3fee88c)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 9.1.6 [skip ci] ([e11f15f](https://github.com/ipfs/js-stores/commit/e11f15feebcd31a7638004463b9a2fb2225bbeb2)), closes [#245](https://github.com/ipfs/js-stores/issues/245) [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 9.1.7 [skip ci] ([87681d2](https://github.com/ipfs/js-stores/commit/87681d2e21238c2d9f4d9127ba2c45cdb59dfc8f))
* **release:** 9.1.8 [skip ci] ([0d41afa](https://github.com/ipfs/js-stores/commit/0d41afa8a6da0cfc1853e8d54debce115a3f8b0d)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 9.1.9 [skip ci] ([e860279](https://github.com/ipfs/js-stores/commit/e8602799bf6cb8082fc75717bc4a3e86801c033a)), closes [#306](https://github.com/ipfs/js-stores/issues/306)
* **release:** 9.2.0 [skip ci] ([05f253f](https://github.com/ipfs/js-stores/commit/05f253f7b14a5002be9f153847d081080d3875cb)), closes [#227](https://github.com/ipfs/js-stores/issues/227)
* **release:** 9.2.1 [skip ci] ([caf7841](https://github.com/ipfs/js-stores/commit/caf78416f32857edd965872994745a5ccf13545d)), closes [#240](https://github.com/ipfs/js-stores/issues/240)
* **release:** 9.2.2 [skip ci] ([23df262](https://github.com/ipfs/js-stores/commit/23df262439ee6fa1eb9b02ada314995306a309df)), closes [#241](https://github.com/ipfs/js-stores/issues/241)
* **release:** 9.2.3 [skip ci] ([01898e5](https://github.com/ipfs/js-stores/commit/01898e50f354eae9b1e7baaabbbd600ce42f294a)), closes [#244](https://github.com/ipfs/js-stores/issues/244)
* **release:** 9.2.4 [skip ci] ([b0073e2](https://github.com/ipfs/js-stores/commit/b0073e21997cac333c8237f31f414dc0dfc5d5fd)), closes [#245](https://github.com/ipfs/js-stores/issues/245) [#268](https://github.com/ipfs/js-stores/issues/268)
* **release:** 9.2.5 [skip ci] ([be4f27d](https://github.com/ipfs/js-stores/commit/be4f27d0eefaa873382f2b01bcd298b592197834)), closes [#280](https://github.com/ipfs/js-stores/issues/280)
* **release:** 9.2.6 [skip ci] ([c8e42f3](https://github.com/ipfs/js-stores/commit/c8e42f352feeae2aeeb586bdfdaef325fd820218)), closes [#282](https://github.com/ipfs/js-stores/issues/282)
* **release:** 9.2.7 [skip ci] ([44d2d0e](https://github.com/ipfs/js-stores/commit/44d2d0e01865a2a6007f7c71f6c30d0712c9ea8f))
* **release:** 9.2.8 [skip ci] ([330060a](https://github.com/ipfs/js-stores/commit/330060abc34512047961f9f585154d23480e355a)), closes [#297](https://github.com/ipfs/js-stores/issues/297)
* **release:** 9.2.9 [skip ci] ([9d1f29e](https://github.com/ipfs/js-stores/commit/9d1f29e6e5fce22399a3a05440dac225138ca6ab)), closes [#236](https://github.com/ipfs/js-stores/issues/236) [#236](https://github.com/ipfs/js-stores/issues/236)
* remove / from CID prefix query ([b07aa1d](https://github.com/ipfs/js-stores/commit/b07aa1ddc46b7f44f6827df306a4d4fb200b0b26))
* remove lerna ([#183](https://github.com/ipfs/js-stores/issues/183)) ([04e77ec](https://github.com/ipfs/js-stores/commit/04e77ec37ca5857b6156dd211f07a61eddcf19b0))
* rename master to main ([#200](https://github.com/ipfs/js-stores/issues/200)) ([f85d719](https://github.com/ipfs/js-stores/commit/f85d719b711cd60237bdaa6a0bcd418e69a98598))
* revert ([2c8d1a2](https://github.com/ipfs/js-stores/commit/2c8d1a25194989410326f3cedd65f94aa3b28ed5))
* switch to ESM ([#39](https://github.com/ipfs/js-stores/issues/39)) ([c04aa80](https://github.com/ipfs/js-stores/commit/c04aa80d48a84b681962cae227dd2628e7d35cb5))
* Update .github/workflows/stale.yml [skip ci] ([5d78301](https://github.com/ipfs/js-stores/commit/5d783010c8e1919561614fd6612c65a0c610ec29))
* Update .github/workflows/stale.yml [skip ci] ([d6e5dd6](https://github.com/ipfs/js-stores/commit/d6e5dd67f60524a450563b8b66ed44c0016a9c09))
* Update .github/workflows/stale.yml [skip ci] ([f4ff277](https://github.com/ipfs/js-stores/commit/f4ff277aa3cebd33e41c115e3bb4f4d0f859d210))
* Update .github/workflows/stale.yml [skip ci] ([35e23f1](https://github.com/ipfs/js-stores/commit/35e23f14d84fe9e52b72ea63546a0926bf83edf8))
* Update .github/workflows/stale.yml [skip ci] ([9d285a1](https://github.com/ipfs/js-stores/commit/9d285a11bbeae5f84f0845b13b7d71ab65a83771))
* update aegir ([#68](https://github.com/ipfs/js-stores/issues/68)) ([56593d4](https://github.com/ipfs/js-stores/commit/56593d4eed78b918c09d8a96359ec3100f5f4608))
* update config ([c6d9c09](https://github.com/ipfs/js-stores/commit/c6d9c09a1199c02e7b8be859bc5f71849b3ac85a))
* update multiformats ([755788e](https://github.com/ipfs/js-stores/commit/755788e78cfaa4faec2bbf2ee6bdafcf20de97c2))
* update package config ([5998ec2](https://github.com/ipfs/js-stores/commit/5998ec2776132919c24d2a855c22662f1494a191))
* update sibling dependencies ([a4fb1c5](https://github.com/ipfs/js-stores/commit/a4fb1c5f97650d6ee80084e8c59c7a081f9a09e0))
* update sibling dependencies ([7a15bcd](https://github.com/ipfs/js-stores/commit/7a15bcdb47bcade4d205fc04b4ffdfd3a1220f11))
* update sibling dependencies ([65dccef](https://github.com/ipfs/js-stores/commit/65dccef376a9eb140ce0cef5b18e02c8515ab698))
* update sibling dependencies ([66506a8](https://github.com/ipfs/js-stores/commit/66506a8313894bd65bb30d2015b8e9a65d212746))
* update uint8arrays ([#28](https://github.com/ipfs/js-stores/issues/28)) ([b1427cd](https://github.com/ipfs/js-stores/commit/b1427cd2771b350ac532750d008442de90c4cf2d))

### Documentation

* fix capitalization in readme of datastore-fs. ([#232](https://github.com/ipfs/js-stores/issues/232)) ([01492bf](https://github.com/ipfs/js-stores/commit/01492bfc90ab3025ff81f098a9bb7e60475be196))
* fix capitalization of import ([#226](https://github.com/ipfs/js-stores/issues/226)) ([837221a](https://github.com/ipfs/js-stores/commit/837221aff3ef4d217063eb17953aff03764e7600))
* fix interface-tests readme usage ([#247](https://github.com/ipfs/js-stores/issues/247)) ([e179933](https://github.com/ipfs/js-stores/commit/e179933277b589cf442a372392138067bb2df44b))
* publish api docs ([#181](https://github.com/ipfs/js-stores/issues/181)) ([64f8473](https://github.com/ipfs/js-stores/commit/64f8473a1d646eda431972afb489ac81d23248fa))
* remove duplicate readme section ([851a110](https://github.com/ipfs/js-stores/commit/851a11033140e7ae0996adeaf880d6554d12837c))
* update api docs ([#244](https://github.com/ipfs/js-stores/issues/244)) ([e0f6145](https://github.com/ipfs/js-stores/commit/e0f614575d675fe4db2ab30ea6a2a854e892d635))
* Update Blockstore and Datastore implementation lists ([#224](https://github.com/ipfs/js-stores/issues/224)) ([ab3b31b](https://github.com/ipfs/js-stores/commit/ab3b31b5ae2dba4b5ddb4b79740afb7c003aedae))
* update datastore core readme and package config ([#245](https://github.com/ipfs/js-stores/issues/245)) ([c08d29a](https://github.com/ipfs/js-stores/commit/c08d29ab18ddea26a1d9dd73d673847469d28a13))

### Dependencies

* bump @libp2p/logger from 2.1.1 to 3.0.0 ([#240](https://github.com/ipfs/js-stores/issues/240)) ([cc958ef](https://github.com/ipfs/js-stores/commit/cc958ef7ebca61a5355cfa2bc18769e374d76ae6))
* bump @libp2p/logger from 3.1.0 to 4.0.1 ([#280](https://github.com/ipfs/js-stores/issues/280)) ([ab4731f](https://github.com/ipfs/js-stores/commit/ab4731f49a1a6f9163fb9c246121b3392503ba8b))
* bump aegir from 37.12.1 to 38.1.0 ([#184](https://github.com/ipfs/js-stores/issues/184)) ([c8ab418](https://github.com/ipfs/js-stores/commit/c8ab418db835a6beefbb44c3ba9176779cebcd0d))
* bump aegir from 38.1.8 to 39.0.9 ([#225](https://github.com/ipfs/js-stores/issues/225)) ([d0f301b](https://github.com/ipfs/js-stores/commit/d0f301b1243a0f4f692011449567b51b2706e70f))
* bump idb from 7.1.1 to 8.0.0 ([#281](https://github.com/ipfs/js-stores/issues/281)) ([4d0bdbc](https://github.com/ipfs/js-stores/commit/4d0bdbc600b226c489259e5100af5c8c7031fb79))
* bump it-all from 1.0.6 to 2.0.0 ([#177](https://github.com/ipfs/js-stores/issues/177)) ([b648877](https://github.com/ipfs/js-stores/commit/b648877c5afb625c7d1e13efd3e0f72d125de734)), closes [#28](https://github.com/ipfs/js-stores/issues/28) [#28](https://github.com/ipfs/js-stores/issues/28) [#27](https://github.com/ipfs/js-stores/issues/27) [#24](https://github.com/ipfs/js-stores/issues/24)
* bump it-drain from 1.0.5 to 2.0.0 ([#178](https://github.com/ipfs/js-stores/issues/178)) ([73e4cfc](https://github.com/ipfs/js-stores/commit/73e4cfcf41178fe6e27f0c7b431fb9511e1dda47)), closes [#28](https://github.com/ipfs/js-stores/issues/28) [#28](https://github.com/ipfs/js-stores/issues/28) [#27](https://github.com/ipfs/js-stores/issues/27) [#24](https://github.com/ipfs/js-stores/issues/24)
* bump it-glob from 2.0.7 to 3.0.1 ([#306](https://github.com/ipfs/js-stores/issues/306)) ([8f6313f](https://github.com/ipfs/js-stores/commit/8f6313f8a22cb537aeeac2a048aad644d3c9a7d2))
* bump it-length from 1.0.4 to 2.0.0 ([#179](https://github.com/ipfs/js-stores/issues/179)) ([d1919b4](https://github.com/ipfs/js-stores/commit/d1919b40f4ec7ec0a20e0283d063e8b030ddc875)), closes [#28](https://github.com/ipfs/js-stores/issues/28)
* bump lerna from 5.6.2 to 6.0.0 ([#176](https://github.com/ipfs/js-stores/issues/176)) ([e583cce](https://github.com/ipfs/js-stores/commit/e583cced412e675b49bcbb9dad3010cf0d55f7b5))
* bump multiformats from 10.0.3 to 11.0.0 ([#182](https://github.com/ipfs/js-stores/issues/182)) ([2342b17](https://github.com/ipfs/js-stores/commit/2342b170dd69b1e055c6eda07cdd4e07ed1f9a4c)), closes [#234](https://github.com/ipfs/js-stores/issues/234) [#226](https://github.com/ipfs/js-stores/issues/226) [#234](https://github.com/ipfs/js-stores/issues/234) [#226](https://github.com/ipfs/js-stores/issues/226) [#226](https://github.com/ipfs/js-stores/issues/226)
* bump multiformats from 11.0.2 to 12.0.1 ([#231](https://github.com/ipfs/js-stores/issues/231)) ([93b7c13](https://github.com/ipfs/js-stores/commit/93b7c13d0dd0508b04bae2ac5a9fb9c265fc5589))
* bump multiformats from 12.1.3 to 13.0.0 ([#286](https://github.com/ipfs/js-stores/issues/286)) ([c8ccd1d](https://github.com/ipfs/js-stores/commit/c8ccd1de91883d1a1cbd394c21a51b021d52baa3))
* bump multiformats from 9.9.0 to 10.0.0 ([#174](https://github.com/ipfs/js-stores/issues/174)) ([2a4f529](https://github.com/ipfs/js-stores/commit/2a4f529e4a4087fb048b337fbaeedffb939f2ebd))
* bump nanoid from 4.0.2 to 5.0.3 ([#269](https://github.com/ipfs/js-stores/issues/269)) ([02cb8cd](https://github.com/ipfs/js-stores/commit/02cb8cd82de4174e7c417ea7e45ef7111f38e990))
* bump uint8arrays from 3.0.0 to 4.0.1 ([#175](https://github.com/ipfs/js-stores/issues/175)) ([e8d5ea6](https://github.com/ipfs/js-stores/commit/e8d5ea63feaaaf379890171f4660bfd8f1cfef5e))
* bump uint8arrays from 4.0.10 to 5.0.0 ([#282](https://github.com/ipfs/js-stores/issues/282)) ([2cbfd52](https://github.com/ipfs/js-stores/commit/2cbfd52257e9358786962d94e144df9583a45c30))
* **dev:** bump aegir from 39.0.13 to 40.0.8 ([#241](https://github.com/ipfs/js-stores/issues/241)) ([00741ff](https://github.com/ipfs/js-stores/commit/00741ff043b40cf10ecc185665fcb705160c9877))
* **dev:** bump aegir from 40.0.13 to 41.1.9 ([#268](https://github.com/ipfs/js-stores/issues/268)) ([0aa0944](https://github.com/ipfs/js-stores/commit/0aa0944d42798d1f6fd589e8a58de7d791760644))
* **dev:** bump aegir from 42.2.11 to 44.1.0 ([#316](https://github.com/ipfs/js-stores/issues/316)) ([581a467](https://github.com/ipfs/js-stores/commit/581a46720832916bea11efa2476eb85a00bae9d4))
* **dev:** bump sinon from 15.2.0 to 17.0.1 ([#265](https://github.com/ipfs/js-stores/issues/265)) ([316d3c5](https://github.com/ipfs/js-stores/commit/316d3c54c3a113a8deebc8e53480ac38d40f3a41))
* **dev:** bump sinon from 17.0.2 to 18.0.0 ([#308](https://github.com/ipfs/js-stores/issues/308)) ([0fbfe11](https://github.com/ipfs/js-stores/commit/0fbfe1112a102055d75f077ff799fbb1001e6aa7))
* update all it-* deps ([#213](https://github.com/ipfs/js-stores/issues/213)) ([e963497](https://github.com/ipfs/js-stores/commit/e963497fdb33e61e2f…
Copy link

github-actions bot commented Aug 2, 2024

🎉 This issue has been resolved in version 1.0.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant