diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ecd2b9e4..8e11ae0f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,15 @@ 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.2.7](https://github.com/felixmosh/bull-board/compare/v3.2.6...v3.2.7) + +- fix: Show failed jobs as failed in "latest" tab [`#293`](https://github.com/felixmosh/bull-board/pull/293) + #### [v3.2.6](https://github.com/felixmosh/bull-board/compare/v3.2.5...v3.2.6) +> 2 June 2021 + +- Release 3.2.6 [`065c1f0`](https://github.com/felixmosh/bull-board/commit/065c1f0cf5a8784ce87329338ed61301e0b79c4a) - refactor: start using constants instead of strings [`15e3082`](https://github.com/felixmosh/bull-board/commit/15e30822af01083c38f40c545934fc28496b8bba) - refactor: change example to use package instead of direct paths [`6a3c34f`](https://github.com/felixmosh/bull-board/commit/6a3c34fad71a3004611970b9cbe1e2fa7ca969a6) diff --git a/package.json b/package.json index 52ec1f620..4b32791b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "3.2.6", + "version": "3.2.7", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ diff --git a/packages/api/package.json b/packages/api/package.json index 417b02cc4..233577ff0 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "3.2.6", + "version": "3.2.7", "description": "Core server APIs of bull-board", "keywords": [ "bull", diff --git a/packages/express/package.json b/packages/express/package.json index 00856fe40..4cfbdbbce 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "3.2.6", + "version": "3.2.7", "description": "Express.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.2.6", - "@bull-board/ui": "3.2.6", + "@bull-board/api": "3.2.7", + "@bull-board/ui": "3.2.7", "ejs": "3.1.6", "express": "4.17.1" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index 75d4c7fdc..2335688f7 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "3.2.6", + "version": "3.2.7", "description": "Fastify.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.2.6", - "@bull-board/ui": "3.2.6", + "@bull-board/api": "3.2.7", + "@bull-board/ui": "3.2.7", "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 043c65266..f2458bd40 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "3.2.6", + "version": "3.2.7", "description": "Hapi.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.2.6", - "@bull-board/ui": "3.2.6", + "@bull-board/api": "3.2.7", + "@bull-board/ui": "3.2.7", "@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 c0e878c6d..d27519d8b 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "3.2.6", + "version": "3.2.7", "description": "Koa.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.2.6", - "@bull-board/ui": "3.2.6", + "@bull-board/api": "3.2.7", + "@bull-board/ui": "3.2.7", "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 74e9206eb..ea041261c 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "3.2.6", + "version": "3.2.7", "description": "Bull-Board's UI package", "keywords": [ "bull", @@ -27,7 +27,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.2.6" + "@bull-board/api": "3.2.7" }, "devDependencies": { "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",