From 59495741dbe4c6e9fa4afbcafee69020bfc5d44c Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Sun, 23 Apr 2023 21:59:51 +0300 Subject: [PATCH] Release 5.1.1 --- CHANGELOG.md | 7 +++++++ package.json | 2 +- packages/api/package.json | 2 +- packages/express/package.json | 6 +++--- packages/fastify/package.json | 6 +++--- packages/hapi/package.json | 6 +++--- packages/koa/package.json | 6 +++--- packages/ui/package.json | 4 ++-- 8 files changed, 23 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b6ae2ac..468239eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v5.1.1](https://github.com/felixmosh/bull-board/compare/v5.1.0...v5.1.1) + +- feat: make queue title as a link [`945d35a`](https://github.com/felixmosh/bull-board/commit/945d35ad6adf69aa8fa247e3198d2f6d43bc876d) + #### [v5.1.0](https://github.com/felixmosh/bull-board/compare/v5.0.1...v5.1.0) +> 23 April 2023 + - feat: Dashboard page with queue stats [`#561`](https://github.com/felixmosh/bull-board/pull/561) - chore(deps): bump vm2 from 3.9.16 to 3.9.17 [`#558`](https://github.com/felixmosh/bull-board/pull/558) +- Release 5.1.0 [`9b07bb2`](https://github.com/felixmosh/bull-board/commit/9b07bb2d72b1ec925cc8bfc8c4ae0915dbdc7ea8) - Improve NPM package descriptions [`724f519`](https://github.com/felixmosh/bull-board/commit/724f519108312768ec6db6708f680b7aa7744be6) #### [v5.0.1](https://github.com/felixmosh/bull-board/compare/v5.0.0...v5.0.1) diff --git a/package.json b/package.json index 437fec49..a701ff49 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "5.1.0", + "version": "5.1.1", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ diff --git a/packages/api/package.json b/packages/api/package.json index 91611add..fb3e47b3 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "5.1.0", + "version": "5.1.1", "description": "A Dashboard server API built on top of bull or bullmq.", "keywords": [ "bull", diff --git a/packages/express/package.json b/packages/express/package.json index f9d3179b..745b074a 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "5.1.0", + "version": "5.1.1", "description": "A Express.js server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "5.1.0", - "@bull-board/ui": "5.1.0", + "@bull-board/api": "5.1.1", + "@bull-board/ui": "5.1.1", "ejs": "3.1.7", "express": "4.17.3" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index 4a683850..92b7395a 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "5.1.0", + "version": "5.1.1", "description": "A Fastify.js server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "5.1.0", - "@bull-board/ui": "5.1.0", + "@bull-board/api": "5.1.1", + "@bull-board/ui": "5.1.1", "@fastify/static": "^6.4.0", "@fastify/view": "^7.0.0", "ejs": "^3.1.8" diff --git a/packages/hapi/package.json b/packages/hapi/package.json index bdc48dc7..f8705ab5 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "5.1.0", + "version": "5.1.1", "description": "A Hapi.js server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -29,8 +29,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "5.1.0", - "@bull-board/ui": "5.1.0", + "@bull-board/api": "5.1.1", + "@bull-board/ui": "5.1.1", "@hapi/inert": "^6.0.5", "@hapi/vision": "^6.1.0", "ejs": "^3.1.7" diff --git a/packages/koa/package.json b/packages/koa/package.json index 6374b09b..5f22a504 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "5.1.0", + "version": "5.1.1", "description": "A Koa.js server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "5.1.0", - "@bull-board/ui": "5.1.0", + "@bull-board/api": "5.1.1", + "@bull-board/ui": "5.1.1", "ejs": "^3.1.7", "koa": "^2.13.1", "koa-mount": "^4.0.0", diff --git a/packages/ui/package.json b/packages/ui/package.json index cf1b4859..e8fdfb80 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "5.1.0", + "version": "5.1.1", "description": "A Dashboard UI built on top of bull or bullmq.", "keywords": [ "bull", @@ -27,7 +27,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "5.1.0" + "@bull-board/api": "5.1.1" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",