From 59c50fb5f670bcabd38ed25e00b742e3616f44e5 Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Wed, 23 Oct 2024 20:06:40 +0300 Subject: [PATCH] Release 6.3.0 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- packages/api/package.json | 4 ++-- packages/express/package.json | 6 +++--- packages/fastify/package.json | 6 +++--- packages/h3/package.json | 6 +++--- packages/hapi/package.json | 6 +++--- packages/hono/package.json | 6 +++--- packages/koa/package.json | 6 +++--- packages/nestjs/package.json | 12 ++++++------ packages/ui/package.json | 4 ++-- 11 files changed, 40 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9acc8564..86f61537 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,20 @@ 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). +#### [v6.3.0](https://github.com/felixmosh/bull-board/compare/v6.2.4...v6.3.0) + +- feat: add status filters on overview page [`#840`](https://github.com/felixmosh/bull-board/pull/840) +- fix: add body parser to koa adapter, closes #841 [`#841`](https://github.com/felixmosh/bull-board/issues/841) +- feat: refactor styles and some behavior of dashboard queue filter [`b821a84`](https://github.com/felixmosh/bull-board/commit/b821a84c4e3fdb24598121570ec9be3d7376c69a) +- bump deps [`a095204`](https://github.com/felixmosh/bull-board/commit/a0952045da25f7a33e8f19b29185d143c2a73ecc) +- fix: improve failed locale, fallback to en-US [`6ecc79d`](https://github.com/felixmosh/bull-board/commit/6ecc79d6820fd5cd6826616db363cb72b2cbdc26) + #### [v6.2.4](https://github.com/felixmosh/bull-board/compare/v6.2.3...v6.2.4) +> 21 October 2024 + - fix: RangeError: Invalid time value, closes #839 [`#839`](https://github.com/felixmosh/bull-board/issues/839) +- Release 6.2.4 [`431bfab`](https://github.com/felixmosh/bull-board/commit/431bfab96489ba7e1998c853b77dcc594f4748ad) - fix: improve dark mode of json editor [`ca327b7`](https://github.com/felixmosh/bull-board/commit/ca327b70fd34f89a5bbb9a264f113c4c0fd4f5cf) - fix: wait for few seconds before opening the page (prevent the ejs file is not exists) [`e7ff021`](https://github.com/felixmosh/bull-board/commit/e7ff021b045a8089482fcca9ee3fba6d0384c5cf) diff --git a/package.json b/package.json index d5a906d9..d30218a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "6.2.4", + "version": "6.3.0", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ diff --git a/packages/api/package.json b/packages/api/package.json index 942c0d31..cb8b6c95 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "6.2.4", + "version": "6.3.0", "description": "A Dashboard server API built on top of bull or bullmq.", "keywords": [ "bull", @@ -39,7 +39,7 @@ "supertest": "^6.3.3" }, "peerDependencies": { - "@bull-board/ui": "6.2.4" + "@bull-board/ui": "6.3.0" }, "publishConfig": { "access": "public" diff --git a/packages/express/package.json b/packages/express/package.json index 2c0aa59b..e4466c06 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "6.2.4", + "version": "6.3.0", "description": "A Express.js server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "6.2.4", - "@bull-board/ui": "6.2.4", + "@bull-board/api": "6.3.0", + "@bull-board/ui": "6.3.0", "ejs": "^3.1.10", "express": "^4.19.2" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index ec6266b6..db1aa9b8 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "6.2.4", + "version": "6.3.0", "description": "A Fastify.js server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "6.2.4", - "@bull-board/ui": "6.2.4", + "@bull-board/api": "6.3.0", + "@bull-board/ui": "6.3.0", "@fastify/static": "^8.0.1", "@fastify/view": "^10.0.1", "ejs": "^3.1.10" diff --git a/packages/h3/package.json b/packages/h3/package.json index e261718c..3175ebc9 100644 --- a/packages/h3/package.json +++ b/packages/h3/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/h3", - "version": "6.2.4", + "version": "6.3.0", "description": "A H3 server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -29,8 +29,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "6.2.4", - "@bull-board/ui": "6.2.4", + "@bull-board/api": "6.3.0", + "@bull-board/ui": "6.3.0", "ejs": "^3.1.10", "h3": "^1.10.0" }, diff --git a/packages/hapi/package.json b/packages/hapi/package.json index aa1d35f6..e2c201da 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "6.2.4", + "version": "6.3.0", "description": "A Hapi.js server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -29,8 +29,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "6.2.4", - "@bull-board/ui": "6.2.4", + "@bull-board/api": "6.3.0", + "@bull-board/ui": "6.3.0", "@hapi/inert": "^6.0.5", "@hapi/vision": "^6.1.0", "ejs": "^3.1.10" diff --git a/packages/hono/package.json b/packages/hono/package.json index d914df8f..54780662 100644 --- a/packages/hono/package.json +++ b/packages/hono/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hono", - "version": "6.2.4", + "version": "6.3.0", "description": "A Hono server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "6.2.4", - "@bull-board/ui": "6.2.4", + "@bull-board/api": "6.3.0", + "@bull-board/ui": "6.3.0", "ejs": "^3.1.10", "hono": "^4.4.7" }, diff --git a/packages/koa/package.json b/packages/koa/package.json index a9ec5f9a..d265ce12 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "6.2.4", + "version": "6.3.0", "description": "A Koa.js server adapter for Bull-Board dashboard.", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "6.2.4", - "@bull-board/ui": "6.2.4", + "@bull-board/api": "6.3.0", + "@bull-board/ui": "6.3.0", "@koa/bodyparser": "^5.1.1", "ejs": "^3.1.10", "koa": "^2.15.3", diff --git a/packages/nestjs/package.json b/packages/nestjs/package.json index 88b1fd7f..7ef3b419 100644 --- a/packages/nestjs/package.json +++ b/packages/nestjs/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/nestjs", - "version": "6.2.4", + "version": "6.3.0", "description": "A NestJS module for Bull-Board dashboard.", "keywords": [ "bull", @@ -19,9 +19,9 @@ "clean": "rm -rf dist" }, "devDependencies": { - "@bull-board/api": "^6.2.4", - "@bull-board/express": "^6.2.4", - "@bull-board/fastify": "^6.2.4", + "@bull-board/api": "^6.3.0", + "@bull-board/express": "^6.3.0", + "@bull-board/fastify": "^6.3.0", "@nestjs/bullmq": "^10.0.0", "@nestjs/common": "^10.0.1", "@nestjs/core": "^10.0.1", @@ -36,8 +36,8 @@ "@nestjs/bull-shared": "^10.0.0" }, "peerDependencies": { - "@bull-board/api": "^6.2.4", - "@bull-board/express": "^6.2.4", + "@bull-board/api": "^6.3.0", + "@bull-board/express": "^6.3.0", "@nestjs/common": "^9.0.0 || ^10.0.0", "@nestjs/core": "^9.0.0 || ^10.0.0", "reflect-metadata": "^0.1.13 || ^0.2.0", diff --git a/packages/ui/package.json b/packages/ui/package.json index 908f980d..2c295ce1 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "6.2.4", + "version": "6.3.0", "description": "A Dashboard UI built on top of bull or bullmq.", "keywords": [ "bull", @@ -32,7 +32,7 @@ "gen:jsonSchema:bull": "npx ts-json-schema-generator --path '../../node_modules/bull/*.ts' --type 'Bull.JobOptions' --out './src/schemas/bull/jobOptions.json'" }, "dependencies": { - "@bull-board/api": "6.2.4" + "@bull-board/api": "6.3.0" }, "devDependencies": { "@codemirror/commands": "^6.5.0",