From 2f76ca2e875d12de17c1e228ab9478bd121723ec Mon Sep 17 00:00:00 2001 From: s-r-x Date: Sun, 27 Aug 2023 10:49:53 +0500 Subject: [PATCH] Release v5.4.0 --- CHANGELOG.md | 11 +++++++++++ lerna.json | 2 +- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package-lock.json | 2 +- packages/cli/package.json | 6 +++--- packages/express/CHANGELOG.md | 8 ++++++++ packages/express/package-lock.json | 2 +- packages/express/package.json | 4 ++-- packages/fastify/CHANGELOG.md | 8 ++++++++ packages/fastify/package-lock.json | 2 +- packages/fastify/package.json | 4 ++-- packages/hapi/CHANGELOG.md | 8 ++++++++ packages/hapi/package-lock.json | 2 +- packages/hapi/package.json | 4 ++-- packages/koa/CHANGELOG.md | 8 ++++++++ packages/koa/package-lock.json | 2 +- packages/koa/package.json | 4 ++-- packages/root/CHANGELOG.md | 11 +++++++++++ packages/root/package-lock.json | 2 +- packages/root/package.json | 2 +- packages/ui/CHANGELOG.md | 8 ++++++++ packages/ui/package-lock.json | 2 +- packages/ui/package.json | 2 +- 23 files changed, 91 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdee09f..f4e9ce4 100644 --- a/CHANGELOG.md +++ b/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.4.0](https://github.com/s-r-x/bull-monitor/compare/v5.3.0...v5.4.0) (2023-08-27) + + +### Features + +* stopMetricsCollector and startMetricsCollector public methods ([8bd48e7](https://github.com/s-r-x/bull-monitor/commit/8bd48e75355d0aa28642709948305a314b0a19f2)) + + + + + # [5.3.0](https://github.com/s-r-x/bull-monitor/compare/v5.2.0...v5.3.0) (2023-08-27) diff --git a/lerna.json b/lerna.json index 9f45696..741896a 100755 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "5.3.0", + "version": "5.4.0", "command": { "version": { "allowBranch": "main", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index bb6a69c..d9a3159 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/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. +# [5.4.0](https://github.com/s-r-x/bull-monitor/compare/v5.3.0...v5.4.0) (2023-08-27) + +**Note:** Version bump only for package @bull-monitor/cli + + + + + # [5.3.0](https://github.com/s-r-x/bull-monitor/compare/v5.2.0...v5.3.0) (2023-08-27) **Note:** Version bump only for package @bull-monitor/cli diff --git a/packages/cli/package-lock.json b/packages/cli/package-lock.json index 2bd7894..73d60cc 100644 --- a/packages/cli/package-lock.json +++ b/packages/cli/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/cli", - "version": "5.3.0", + "version": "5.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/packages/cli/package.json b/packages/cli/package.json index 224f59a..5f02c43 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/cli", - "version": "5.3.0", + "version": "5.4.0", "description": "cli for bull-monitor", "keywords": [ "bull" @@ -24,8 +24,8 @@ }, "main": "dist/index.js", "dependencies": { - "@bull-monitor/express": "^5.3.0", - "@bull-monitor/root": "^5.3.0", + "@bull-monitor/express": "^5.4.0", + "@bull-monitor/root": "^5.4.0", "bull": "^4.0.0", "bullmq": "^1.76.0", "commander": "^8.3.0", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index d79a816..15a203e 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/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. +# [5.4.0](https://github.com/s-r-x/bull-monitor/compare/v5.3.0...v5.4.0) (2023-08-27) + +**Note:** Version bump only for package @bull-monitor/express + + + + + # [5.3.0](https://github.com/s-r-x/bull-monitor/compare/v5.2.0...v5.3.0) (2023-08-27) **Note:** Version bump only for package @bull-monitor/express diff --git a/packages/express/package-lock.json b/packages/express/package-lock.json index a4f5857..4769460 100644 --- a/packages/express/package-lock.json +++ b/packages/express/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/express", - "version": "5.3.0", + "version": "5.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/packages/express/package.json b/packages/express/package.json index 281b514..cf2292f 100755 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/express", - "version": "5.3.0", + "version": "5.4.0", "description": "bull-monitor for express", "keywords": [ "bull" @@ -21,7 +21,7 @@ }, "main": "dist/index.js", "dependencies": { - "@bull-monitor/root": "^5.3.0", + "@bull-monitor/root": "^5.4.0", "apollo-server-express": "^3.6.3" }, "peerDependencies": { diff --git a/packages/fastify/CHANGELOG.md b/packages/fastify/CHANGELOG.md index 0c10c35..664ce82 100644 --- a/packages/fastify/CHANGELOG.md +++ b/packages/fastify/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. +# [5.4.0](https://github.com/s-r-x/bull-monitor/compare/v5.3.0...v5.4.0) (2023-08-27) + +**Note:** Version bump only for package @bull-monitor/fastify + + + + + # [5.3.0](https://github.com/s-r-x/bull-monitor/compare/v5.2.0...v5.3.0) (2023-08-27) **Note:** Version bump only for package @bull-monitor/fastify diff --git a/packages/fastify/package-lock.json b/packages/fastify/package-lock.json index 1263591..c4d4268 100644 --- a/packages/fastify/package-lock.json +++ b/packages/fastify/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/fastify", - "version": "5.3.0", + "version": "5.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/packages/fastify/package.json b/packages/fastify/package.json index 95d224b..0326718 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/fastify", - "version": "5.3.0", + "version": "5.4.0", "description": "bull-monitor for fastify", "keywords": [ "bull" @@ -21,7 +21,7 @@ "dev": "tsc --watch" }, "dependencies": { - "@bull-monitor/root": "^5.3.0", + "@bull-monitor/root": "^5.4.0", "apollo-server-fastify": "^3.6.3" }, "peerDependencies": { diff --git a/packages/hapi/CHANGELOG.md b/packages/hapi/CHANGELOG.md index 79d8556..7ae093c 100644 --- a/packages/hapi/CHANGELOG.md +++ b/packages/hapi/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. +# [5.4.0](https://github.com/s-r-x/bull-monitor/compare/v5.3.0...v5.4.0) (2023-08-27) + +**Note:** Version bump only for package @bull-monitor/hapi + + + + + # [5.3.0](https://github.com/s-r-x/bull-monitor/compare/v5.2.0...v5.3.0) (2023-08-27) **Note:** Version bump only for package @bull-monitor/hapi diff --git a/packages/hapi/package-lock.json b/packages/hapi/package-lock.json index aa8eca2..0d4fdc7 100644 --- a/packages/hapi/package-lock.json +++ b/packages/hapi/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/hapi", - "version": "5.3.0", + "version": "5.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/packages/hapi/package.json b/packages/hapi/package.json index be61cc4..1c00199 100755 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/hapi", - "version": "5.3.0", + "version": "5.4.0", "description": "bull-monitor for hapi", "keywords": [ "bull" @@ -21,7 +21,7 @@ }, "main": "dist/index.js", "dependencies": { - "@bull-monitor/root": "^5.3.0", + "@bull-monitor/root": "^5.4.0", "apollo-server-hapi": "^3.6.3" }, "peerDependencies": { diff --git a/packages/koa/CHANGELOG.md b/packages/koa/CHANGELOG.md index 0882f82..d7ce3b4 100644 --- a/packages/koa/CHANGELOG.md +++ b/packages/koa/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. +# [5.4.0](https://github.com/s-r-x/bull-monitor/compare/v5.3.0...v5.4.0) (2023-08-27) + +**Note:** Version bump only for package @bull-monitor/koa + + + + + # [5.3.0](https://github.com/s-r-x/bull-monitor/compare/v5.2.0...v5.3.0) (2023-08-27) **Note:** Version bump only for package @bull-monitor/koa diff --git a/packages/koa/package-lock.json b/packages/koa/package-lock.json index b934e32..c0994a8 100644 --- a/packages/koa/package-lock.json +++ b/packages/koa/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/koa", - "version": "5.3.0", + "version": "5.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/packages/koa/package.json b/packages/koa/package.json index cb72e5c..05592ad 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/koa", - "version": "5.3.0", + "version": "5.4.0", "description": "bull-monitor for koa", "repository": { "type": "git", @@ -21,7 +21,7 @@ "dev": "tsc --watch" }, "dependencies": { - "@bull-monitor/root": "^5.3.0", + "@bull-monitor/root": "^5.4.0", "apollo-server-koa": "^3.6.3" }, "peerDependencies": { diff --git a/packages/root/CHANGELOG.md b/packages/root/CHANGELOG.md index f7df9d3..454d3c8 100644 --- a/packages/root/CHANGELOG.md +++ b/packages/root/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.4.0](https://github.com/s-r-x/bull-monitor/compare/v5.3.0...v5.4.0) (2023-08-27) + + +### Features + +* stopMetricsCollector and startMetricsCollector public methods ([8bd48e7](https://github.com/s-r-x/bull-monitor/commit/8bd48e75355d0aa28642709948305a314b0a19f2)) + + + + + # [5.3.0](https://github.com/s-r-x/bull-monitor/compare/v5.2.0...v5.3.0) (2023-08-27) **Note:** Version bump only for package @bull-monitor/root diff --git a/packages/root/package-lock.json b/packages/root/package-lock.json index 6a29c38..0f489ad 100644 --- a/packages/root/package-lock.json +++ b/packages/root/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/root", - "version": "5.3.0", + "version": "5.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/packages/root/package.json b/packages/root/package.json index dc2c698..d2b3353 100755 --- a/packages/root/package.json +++ b/packages/root/package.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/root", - "version": "5.3.0", + "version": "5.4.0", "repository": { "type": "git", "url": "https://github.com/s-r-x/bull-monitor.git", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 7f0280b..7127fc3 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/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. +# [5.4.0](https://github.com/s-r-x/bull-monitor/compare/v5.3.0...v5.4.0) (2023-08-27) + +**Note:** Version bump only for package @bull-monitor/ui + + + + + # [5.3.0](https://github.com/s-r-x/bull-monitor/compare/v5.2.0...v5.3.0) (2023-08-27) diff --git a/packages/ui/package-lock.json b/packages/ui/package-lock.json index 9d5247f..5579262 100644 --- a/packages/ui/package-lock.json +++ b/packages/ui/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/ui", - "version": "5.3.0", + "version": "5.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/packages/ui/package.json b/packages/ui/package.json index 72e8ba6..43b6719 100755 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-monitor/ui", - "version": "5.3.0", + "version": "5.4.0", "license": "MIT", "author": "Ilya Strus ", "description": "bull-monitor ui",