diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f7d022..6f7b7f64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,22 @@ 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.9.1](https://github.com/felixmosh/bull-board/compare/v3.9.0...v3.9.1) + +- Improve performance [`#371`](https://github.com/felixmosh/bull-board/pull/371) +- chore(deps): bump nanoid from 3.1.30 to 3.2.0 [`#369`](https://github.com/felixmosh/bull-board/pull/369) +- chore(deps): bump follow-redirects from 1.14.6 to 1.14.7 [`#365`](https://github.com/felixmosh/bull-board/pull/365) +- Add fastify to example deps, #364 [`ddbff5f`](https://github.com/felixmosh/bull-board/commit/ddbff5f332719c70590683494226f0090db58c69) +- Show error message [`e779507`](https://github.com/felixmosh/bull-board/commit/e77950706c8f04c1723c81b3876846ddc8a4833a) +- Add stale bot [`a5c5833`](https://github.com/felixmosh/bull-board/commit/a5c5833fb0cd47aba299c7c7b9816bf37222893f) + #### [v3.9.0](https://github.com/felixmosh/bull-board/compare/v3.8.2...v3.9.0) +> 11 January 2022 + - fix: overlay issue with confirm modal [`31681a4`](https://github.com/felixmosh/bull-board/commit/31681a499db8e241e1225bbd214de922498e2806) +- Release 3.9.0 [`1413354`](https://github.com/felixmosh/bull-board/commit/14133545824ddbd50749615d7b37bbd6ab40ca21) - feat: add repeat label & change timeline text, #360 [`ec6bef4`](https://github.com/felixmosh/bull-board/commit/ec6bef47c5d47354b1811f35b757d6f8aad355c9) -- Update gitignore [`1bf1a24`](https://github.com/felixmosh/bull-board/commit/1bf1a247c1aaaf28fefee862cb0074120bec3a1a) #### [v3.8.2](https://github.com/felixmosh/bull-board/compare/v3.8.1...v3.8.2) diff --git a/package.json b/package.json index 65f6f971..0ce42282 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "3.9.0", + "version": "3.9.1", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ diff --git a/packages/api/package.json b/packages/api/package.json index da5915b2..bc48958e 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "3.9.0", + "version": "3.9.1", "description": "Core server APIs of bull-board", "keywords": [ "bull", diff --git a/packages/express/package.json b/packages/express/package.json index 5dab347d..74a2b231 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "3.9.0", + "version": "3.9.1", "description": "Express.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.9.0", - "@bull-board/ui": "3.9.0", + "@bull-board/api": "3.9.1", + "@bull-board/ui": "3.9.1", "ejs": "3.1.6", "express": "4.17.2" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index 5940c921..e770d900 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "3.9.0", + "version": "3.9.1", "description": "Fastify.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.9.0", - "@bull-board/ui": "3.9.0", + "@bull-board/api": "3.9.1", + "@bull-board/ui": "3.9.1", "ejs": "^3.1.6", "fastify-static": "^4.2.2", "point-of-view": "^4.14.0" diff --git a/packages/hapi/package.json b/packages/hapi/package.json index e2cdeb4c..859f8ae7 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "3.9.0", + "version": "3.9.1", "description": "Hapi.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -29,8 +29,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.9.0", - "@bull-board/ui": "3.9.0", + "@bull-board/api": "3.9.1", + "@bull-board/ui": "3.9.1", "@hapi/inert": "^6.0.3", "@hapi/vision": "^6.1.0", "ejs": "^3.1.6" diff --git a/packages/koa/package.json b/packages/koa/package.json index b1f94675..eb7fb615 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "3.9.0", + "version": "3.9.1", "description": "Koa.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.9.0", - "@bull-board/ui": "3.9.0", + "@bull-board/api": "3.9.1", + "@bull-board/ui": "3.9.1", "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 8f3da36a..5ed7d884 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "3.9.0", + "version": "3.9.1", "description": "Bull-Board's UI package", "keywords": [ "bull", @@ -27,7 +27,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.9.0" + "@bull-board/api": "3.9.1" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.5.0-rc.5",