diff --git a/CHANGELOG.md b/CHANGELOG.md index 505fcd016..51fdb9c6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,18 @@ 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.6](https://github.com/felixmosh/bull-board/compare/v3.10.5...v3.10.6) + +- Update lock file [`6ee3494`](https://github.com/felixmosh/bull-board/commit/6ee3494a8e2281ff66d8fec73d39e87a1e03d4d2) +- Bump deps [`0218db2`](https://github.com/felixmosh/bull-board/commit/0218db256f9b09234cbf2c6ebec3fc653a0e0e40) +- fix: resolve @types/react to v17 [`025b13e`](https://github.com/felixmosh/bull-board/commit/025b13e45cfc51bb705e3dee5a2f994d43ef33a9) + #### [v3.10.5](https://github.com/felixmosh/bull-board/compare/v3.10.4...v3.10.5) +> 24 April 2022 + - Upgrade deps of examples [`27708de`](https://github.com/felixmosh/bull-board/commit/27708de288bf3f7cefea29df561c30fadd57afcb) +- Release 3.10.5 [`ce469b6`](https://github.com/felixmosh/bull-board/commit/ce469b657461c31a9da9e2b3a1e7ca2000a5d5e1) - remove empty class [`1147472`](https://github.com/felixmosh/bull-board/commit/11474724c8f175968fcbd1e54f574b2ad9451be5) #### [v3.10.4](https://github.com/felixmosh/bull-board/compare/v3.10.3...v3.10.4) diff --git a/package.json b/package.json index 36da0b207..340a86903 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "3.10.5", + "version": "3.10.6", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ diff --git a/packages/api/package.json b/packages/api/package.json index 02ab73ec3..006b3f543 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "3.10.5", + "version": "3.10.6", "description": "Core server APIs of bull-board", "keywords": [ "bull", diff --git a/packages/express/package.json b/packages/express/package.json index ce95807a6..75ab514fd 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "3.10.5", + "version": "3.10.6", "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.5", - "@bull-board/ui": "3.10.5", + "@bull-board/api": "3.10.6", + "@bull-board/ui": "3.10.6", "ejs": "3.1.7", "express": "4.17.3" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index fb6a7c557..cb304a13e 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "3.10.5", + "version": "3.10.6", "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.5", - "@bull-board/ui": "3.10.5", + "@bull-board/api": "3.10.6", + "@bull-board/ui": "3.10.6", "ejs": "^3.1.7", "fastify-static": "^4.6.1", "point-of-view": "^5.2.0" diff --git a/packages/hapi/package.json b/packages/hapi/package.json index f9af461ea..01d739e19 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "3.10.5", + "version": "3.10.6", "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.5", - "@bull-board/ui": "3.10.5", + "@bull-board/api": "3.10.6", + "@bull-board/ui": "3.10.6", "@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 7d2f46464..d82830937 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "3.10.5", + "version": "3.10.6", "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.5", - "@bull-board/ui": "3.10.5", + "@bull-board/api": "3.10.6", + "@bull-board/ui": "3.10.6", "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 cfac06a19..f93284229 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "3.10.5", + "version": "3.10.6", "description": "Bull-Board's UI package", "keywords": [ "bull", @@ -27,7 +27,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.10.5" + "@bull-board/api": "3.10.6" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",