diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 28cff40353..af36bd7781 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.8.0-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/cli@6.7.0-rc.0...@ceramicnetwork/cli@6.8.0-rc.0) (2024-10-08) + + +### Features + +* add metrics to track queue sizes and add operations - #AES-361 ([#3282](https://github.com/ceramicnetwork/js-ceramic/issues/3282)) ([60a7a9e](https://github.com/ceramicnetwork/js-ceramic/commit/60a7a9e83c73f1fe7d7d3b0ed88afbf5a3c89f1d)), closes [#AES-361](https://github.com/ceramicnetwork/js-ceramic/issues/AES-361) + + + + + # [6.7.0-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/cli@6.6.0...@ceramicnetwork/cli@6.7.0-rc.0) (2024-10-07) **Note:** Version bump only for package @ceramicnetwork/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index ee8aab84ee..e7b9819736 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@ceramicnetwork/cli", - "version": "6.7.0-rc.0", + "version": "6.8.0-rc.0", "description": "Typescript implementation of the Ceramic CLI", "engines": { "node": ">=20.8" @@ -47,9 +47,9 @@ "@ceramicnetwork/3id-did-resolver": "^6.4.0", "@ceramicnetwork/codecs": "^5.4.0", "@ceramicnetwork/common": "^6.4.0", - "@ceramicnetwork/core": "^6.7.0-rc.0", + "@ceramicnetwork/core": "^6.8.0-rc.0", "@ceramicnetwork/http-client": "^6.4.0", - "@ceramicnetwork/indexing": "^5.4.0", + "@ceramicnetwork/indexing": "^5.5.0-rc.0", "@ceramicnetwork/ipfs-daemon": "^6.4.0", "@ceramicnetwork/logger": "^5.0.0", "@ceramicnetwork/node-metrics": "^1.0.3", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index dec8c26539..865c29fe5d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.8.0-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/core@6.7.0-rc.0...@ceramicnetwork/core@6.8.0-rc.0) (2024-10-08) + + +### Features + +* add metrics to track queue sizes and add operations - #AES-361 ([#3282](https://github.com/ceramicnetwork/js-ceramic/issues/3282)) ([60a7a9e](https://github.com/ceramicnetwork/js-ceramic/commit/60a7a9e83c73f1fe7d7d3b0ed88afbf5a3c89f1d)), closes [#AES-361](https://github.com/ceramicnetwork/js-ceramic/issues/AES-361) + + + + + # [6.7.0-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/core@6.6.0...@ceramicnetwork/core@6.7.0-rc.0) (2024-10-07) diff --git a/packages/core/package.json b/packages/core/package.json index 17dd9d8863..15473b3af9 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@ceramicnetwork/core", - "version": "6.7.0-rc.0", + "version": "6.8.0-rc.0", "description": "Typescript implementation of the Ceramic protocol", "engines": { "node": ">=20.8" @@ -48,7 +48,7 @@ "@ceramicnetwork/anchor-utils": "^5.4.0", "@ceramicnetwork/codecs": "^5.4.0", "@ceramicnetwork/common": "^6.4.0", - "@ceramicnetwork/indexing": "^5.4.0", + "@ceramicnetwork/indexing": "^5.5.0-rc.0", "@ceramicnetwork/ipfs-topology": "^6.4.0", "@ceramicnetwork/job-queue": "^5.4.0", "@ceramicnetwork/node-metrics": "^1.0.5", diff --git a/packages/indexing/CHANGELOG.md b/packages/indexing/CHANGELOG.md index 5784a57569..ad665bff96 100644 --- a/packages/indexing/CHANGELOG.md +++ b/packages/indexing/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.5.0-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/indexing@5.4.0...@ceramicnetwork/indexing@5.5.0-rc.0) (2024-10-08) + + +### Features + +* add metrics to track queue sizes and add operations - #AES-361 ([#3282](https://github.com/ceramicnetwork/js-ceramic/issues/3282)) ([60a7a9e](https://github.com/ceramicnetwork/js-ceramic/commit/60a7a9e83c73f1fe7d7d3b0ed88afbf5a3c89f1d)), closes [#AES-361](https://github.com/ceramicnetwork/js-ceramic/issues/AES-361) + + + + + # [5.4.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/indexing@5.4.0-rc.0...@ceramicnetwork/indexing@5.4.0) (2024-08-19) **Note:** Version bump only for package @ceramicnetwork/indexing diff --git a/packages/indexing/package.json b/packages/indexing/package.json index de976388e9..11b451c5ee 100644 --- a/packages/indexing/package.json +++ b/packages/indexing/package.json @@ -1,6 +1,6 @@ { "name": "@ceramicnetwork/indexing", - "version": "5.4.0", + "version": "5.5.0-rc.0", "description": "Ceramic indexing and querying logic", "keywords": [ "ceramic", diff --git a/packages/stream-tests/CHANGELOG.md b/packages/stream-tests/CHANGELOG.md index bebb07d5b1..10d668f835 100644 --- a/packages/stream-tests/CHANGELOG.md +++ b/packages/stream-tests/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.8.0-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/stream-tests@6.7.0-rc.0...@ceramicnetwork/stream-tests@6.8.0-rc.0) (2024-10-08) + +**Note:** Version bump only for package @ceramicnetwork/stream-tests + + + + + # [6.7.0-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/stream-tests@6.6.0...@ceramicnetwork/stream-tests@6.7.0-rc.0) (2024-10-07) **Note:** Version bump only for package @ceramicnetwork/stream-tests diff --git a/packages/stream-tests/package.json b/packages/stream-tests/package.json index 54f1fdb8a5..e96d866d97 100644 --- a/packages/stream-tests/package.json +++ b/packages/stream-tests/package.json @@ -1,6 +1,6 @@ { "name": "@ceramicnetwork/stream-tests", - "version": "6.7.0-rc.0", + "version": "6.8.0-rc.0", "private": true, "description": "Canary integration test for Ceramic components", "scripts": { @@ -19,12 +19,12 @@ "@ceramicnetwork/base-test-utils": "^3.13.0", "@ceramicnetwork/blockchain-utils-linking": "^5.6.0", "@ceramicnetwork/blockchain-utils-validation": "^6.4.0", - "@ceramicnetwork/cli": "^6.7.0-rc.0", + "@ceramicnetwork/cli": "^6.8.0-rc.0", "@ceramicnetwork/common": "^6.4.0", "@ceramicnetwork/common-test-utils": "^4.4.0", - "@ceramicnetwork/core": "^6.7.0-rc.0", + "@ceramicnetwork/core": "^6.8.0-rc.0", "@ceramicnetwork/http-client": "^6.4.0", - "@ceramicnetwork/indexing": "^5.4.0", + "@ceramicnetwork/indexing": "^5.5.0-rc.0", "@ceramicnetwork/ipfs-daemon": "^6.4.0", "@ceramicnetwork/stream-caip10-link": "^6.4.0", "@ceramicnetwork/stream-model": "^5.4.0",