From 7fb77bbcc82882cffd7c66d40ddc5e99c59c712e Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Tue, 3 Aug 2021 16:54:11 +0300 Subject: [PATCH] Release 3.3.2 --- CHANGELOG.md | 8 ++++++++ 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, 24 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9de47954..268e062d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +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.3.2](https://github.com/felixmosh/bull-board/compare/v3.3.1...v3.3.2) + +- fix: encode job-id, closes #307 [`#308`](https://github.com/felixmosh/bull-board/pull/308) +- fix: encode job-id, closes #307 (#308) [`#307`](https://github.com/felixmosh/bull-board/issues/307) + #### [v3.3.1](https://github.com/felixmosh/bull-board/compare/v3.3.0...v3.3.1) +> 25 July 2021 + +- Release 3.3.1 [`7a6bf48`](https://github.com/felixmosh/bull-board/commit/7a6bf4803929f3667e11cb3c4008fdbf947401d1) - Sort jobs asc [`6ed2f82`](https://github.com/felixmosh/bull-board/commit/6ed2f820f5d301efe4cf635db79cc7d4f55e9941) #### [v3.3.0](https://github.com/felixmosh/bull-board/compare/v3.2.11...v3.3.0) diff --git a/package.json b/package.json index 622873dc..f3fec7fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "3.3.1", + "version": "3.3.2", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ diff --git a/packages/api/package.json b/packages/api/package.json index f3a4a99d..8074211b 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "3.3.1", + "version": "3.3.2", "description": "Core server APIs of bull-board", "keywords": [ "bull", diff --git a/packages/express/package.json b/packages/express/package.json index 00caba3d..1a1eac65 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "3.3.1", + "version": "3.3.2", "description": "Express.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.3.1", - "@bull-board/ui": "3.3.1", + "@bull-board/api": "3.3.2", + "@bull-board/ui": "3.3.2", "ejs": "3.1.6", "express": "4.17.1" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index d5030c16..9724d089 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "3.3.1", + "version": "3.3.2", "description": "Fastify.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.3.1", - "@bull-board/ui": "3.3.1", + "@bull-board/api": "3.3.2", + "@bull-board/ui": "3.3.2", "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 1b6389eb..de97a6b8 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "3.3.1", + "version": "3.3.2", "description": "Hapi.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.3.1", - "@bull-board/ui": "3.3.1", + "@bull-board/api": "3.3.2", + "@bull-board/ui": "3.3.2", "@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 f7d3008e..8db0e86b 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "3.3.1", + "version": "3.3.2", "description": "Koa.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -28,8 +28,8 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.3.1", - "@bull-board/ui": "3.3.1", + "@bull-board/api": "3.3.2", + "@bull-board/ui": "3.3.2", "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 aab0c8d7..bc232e1a 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "3.3.1", + "version": "3.3.2", "description": "Bull-Board's UI package", "keywords": [ "bull", @@ -27,7 +27,7 @@ "clean": "rm -rf dist" }, "dependencies": { - "@bull-board/api": "3.3.1", + "@bull-board/api": "3.3.2", "@radix-ui/react-alert-dialog": "^0.0.19" }, "devDependencies": {