From 9e346343fb4750e36f7a28ddebebb197c59e8bef Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Fri, 8 Apr 2022 17:32:53 +0300 Subject: [PATCH] Release 3.10.3 --- 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 a4cf277bc..7648591b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,16 @@ 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). +#### [v3.10.3](https://github.com/felixmosh/bull-board/compare/v3.10.2...v3.10.3) + +- fix: Remove the fade-out effect due to scrollbar issue, fixes #399 [`#399`](https://github.com/felixmosh/bull-board/issues/399) + #### [v3.10.2](https://github.com/felixmosh/bull-board/compare/v3.10.1...v3.10.2) +> 28 March 2022 + - fix: check if the job exists, closes #391 [`#391`](https://github.com/felixmosh/bull-board/issues/391) +- Release 3.10.2 [`9dd2257`](https://github.com/felixmosh/bull-board/commit/9dd2257b0fe1837a41e3af75271ea18e0872b557) - chore(deps): bump ansi-regex in /examples/with-fastify-auth [`f97564d`](https://github.com/felixmosh/bull-board/commit/f97564d76946d6cadb756cdfe70643b7fa8dae3f) - chore(deps): bump node-forge from 1.2.1 to 1.3.0 [`f77de9b`](https://github.com/felixmosh/bull-board/commit/f77de9bb21b63968ee292b5d4c6ae4e9b07f04c2) diff --git a/package.json b/package.json index 0a952bb84..c808c751d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "3.10.2", + "version": "3.10.3", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ diff --git a/packages/api/package.json b/packages/api/package.json index cf52bc775..c3de5ad53 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "3.10.2", + "version": "3.10.3", "description": "Core server APIs of bull-board", "keywords": [ "bull", diff --git a/packages/express/package.json b/packages/express/package.json index 25ecb701d..10c571f7f 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "3.10.2", + "version": "3.10.3", "description": "Express.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.10.2", - "@bull-board/ui": "3.10.2", + "@bull-board/api": "3.10.3", + "@bull-board/ui": "3.10.3", "ejs": "3.1.6", "express": "4.17.3" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index 637353c55..a11e084c4 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "3.10.2", + "version": "3.10.3", "description": "Fastify.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.10.2", - "@bull-board/ui": "3.10.2", + "@bull-board/api": "3.10.3", + "@bull-board/ui": "3.10.3", "ejs": "^3.1.6", "fastify-static": "^4.6.1", "point-of-view": "^5.1.0" diff --git a/packages/hapi/package.json b/packages/hapi/package.json index 7474dae06..106405684 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "3.10.2", + "version": "3.10.3", "description": "Hapi.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -29,8 +29,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.10.2", - "@bull-board/ui": "3.10.2", + "@bull-board/api": "3.10.3", + "@bull-board/ui": "3.10.3", "@hapi/inert": "^6.0.5", "@hapi/vision": "^6.1.0", "ejs": "^3.1.6" diff --git a/packages/koa/package.json b/packages/koa/package.json index 436ae5585..ebb229fc5 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "3.10.2", + "version": "3.10.3", "description": "Koa.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.10.2", - "@bull-board/ui": "3.10.2", + "@bull-board/api": "3.10.3", + "@bull-board/ui": "3.10.3", "ejs": "^3.1.6", "koa": "^2.13.1", "koa-mount": "^4.0.0", diff --git a/packages/ui/package.json b/packages/ui/package.json index 9df7eb1e2..2ac0b469f 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "3.10.2", + "version": "3.10.3", "description": "Bull-Board's UI package", "keywords": [ "bull", @@ -27,7 +27,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.10.2" + "@bull-board/api": "3.10.3" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",