diff --git a/CHANGELOG.md b/CHANGELOG.md index c5e2c202..68580da2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +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). +#### [v4.11.2](https://github.com/felixmosh/bull-board/compare/v4.11.1...v4.11.2) + +- fix: make log list marker adjusted to number of log items, closes #537 [`#538`](https://github.com/felixmosh/bull-board/pull/538) +- chore(deps): bump cacheable-request from 10.2.3 to 10.2.7 [`#534`](https://github.com/felixmosh/bull-board/pull/534) +- fix: make log list marker adjusted to number of log items, closes #537 (#538) [`#537`](https://github.com/felixmosh/bull-board/issues/537) +- Update README.md [`92e7f29`](https://github.com/felixmosh/bull-board/commit/92e7f29caf4ac4a5da3404c1960a7afab031b97a) + #### [v4.11.1](https://github.com/felixmosh/bull-board/compare/v4.11.0...v4.11.1) +> 7 February 2023 + - fix: incorrect value of job name when job name is undefined [`#532`](https://github.com/felixmosh/bull-board/pull/532) - chore(deps): bump http-cache-semantics in /examples/with-fastify-auth [`#531`](https://github.com/felixmosh/bull-board/pull/531) - chore(deps): bump http-cache-semantics from 4.1.0 to 4.1.1 [`#530`](https://github.com/felixmosh/bull-board/pull/530) - chore(deps): bump cookiejar from 2.1.3 to 2.1.4 [`#528`](https://github.com/felixmosh/bull-board/pull/528) +- Release 4.11.1 [`29c2924`](https://github.com/felixmosh/bull-board/commit/29c2924df8ebae80ea1d0ed2e7fba84311616622) - Remove redis-mock from dev deps [`5aa901c`](https://github.com/felixmosh/bull-board/commit/5aa901c012360fcbd19cbbfb3e1f394bac3b3551) #### [v4.11.0](https://github.com/felixmosh/bull-board/compare/v4.10.2...v4.11.0) diff --git a/package.json b/package.json index bae26ef2..8a82b77a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "4.11.1", + "version": "4.11.2", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ diff --git a/packages/api/package.json b/packages/api/package.json index 2e950d01..615d226d 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "4.11.1", + "version": "4.11.2", "description": "Core server APIs of bull-board", "keywords": [ "bull", diff --git a/packages/express/package.json b/packages/express/package.json index 743ccc52..a60c89d6 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "4.11.1", + "version": "4.11.2", "description": "Express.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "4.11.1", - "@bull-board/ui": "4.11.1", + "@bull-board/api": "4.11.2", + "@bull-board/ui": "4.11.2", "ejs": "3.1.7", "express": "4.17.3" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index 1c2b1ada..79a70ac9 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "4.11.1", + "version": "4.11.2", "description": "Fastify.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "4.11.1", - "@bull-board/ui": "4.11.1", + "@bull-board/api": "4.11.2", + "@bull-board/ui": "4.11.2", "@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 fc62c610..8031c17f 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "4.11.1", + "version": "4.11.2", "description": "Hapi.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -29,8 +29,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "4.11.1", - "@bull-board/ui": "4.11.1", + "@bull-board/api": "4.11.2", + "@bull-board/ui": "4.11.2", "@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 415355b1..fcc4dd9f 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "4.11.1", + "version": "4.11.2", "description": "Koa.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "4.11.1", - "@bull-board/ui": "4.11.1", + "@bull-board/api": "4.11.2", + "@bull-board/ui": "4.11.2", "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 c60cefbc..953a3859 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "4.11.1", + "version": "4.11.2", "description": "Bull-Board's UI package", "keywords": [ "bull", @@ -27,7 +27,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "4.11.1" + "@bull-board/api": "4.11.2" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",