Skip to content

Commit c26b6d0

Browse files
committed
Release 6.14.0
1 parent 33f34b2 commit c26b6d0

File tree

13 files changed

+63
-55
lines changed

13 files changed

+63
-55
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [v6.14.0](https://github.com/felixmosh/bull-board/compare/v6.13.1...v6.14.0)
8+
9+
- feat(job-cleaning): add support for cleaning scheduled jobs [`#1020`](https://github.com/felixmosh/bull-board/pull/1020)
10+
- fix: add @bull-board/api in examples/with-express [`#1015`](https://github.com/felixmosh/bull-board/pull/1015)
11+
712
#### [v6.13.1](https://github.com/felixmosh/bull-board/compare/v6.13.0...v6.13.1)
813

14+
> 15 October 2025
15+
916
- feat(i18n): add Korean language support and update language configurations [`#1014`](https://github.com/felixmosh/bull-board/pull/1014)
1017
- Feature: Sails.js Example [`#1011`](https://github.com/felixmosh/bull-board/pull/1011)
1118
- chore(deps-dev): bump the npm_and_yarn group across 1 directory with 2 updates [`#1009`](https://github.com/felixmosh/bull-board/pull/1009)
1219
- chore(deps): bump hono [`#1006`](https://github.com/felixmosh/bull-board/pull/1006)
20+
- Release 6.13.1 [`88684cc`](https://github.com/felixmosh/bull-board/commit/88684cc99d357111ac2779a14458ddf64b4d5456)
1321
- fix: replace release-it-yarn-workspaces with @release-it-plugins/workspaces [`acb2ab7`](https://github.com/felixmosh/bull-board/commit/acb2ab740707b5a4c870bb426b70138d8729e287)
1422
- Update README.md [`6f9c204`](https://github.com/felixmosh/bull-board/commit/6f9c2045afb0d25fbc6dd3bdae160c8278728572)
1523

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bull-board/root",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"private": true,
55
"description": "Bull queue UI for inspecting jobs",
66
"keywords": [

packages/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bull-board/api",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"description": "A Dashboard server API built on top of bull or bullmq.",
55
"keywords": [
66
"bull",
@@ -48,7 +48,7 @@
4848
"supertest": "^7.1.4"
4949
},
5050
"peerDependencies": {
51-
"@bull-board/ui": "6.13.1"
51+
"@bull-board/ui": "6.14.0"
5252
},
5353
"publishConfig": {
5454
"access": "public"

packages/elysia/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@bull-board/elysia",
33
"type": "commonjs",
4-
"version": "6.13.1",
4+
"version": "6.14.0",
55
"description": "A Elysia server adapter for Bull-Board dashboard.",
66
"keywords": [
77
"bull",
@@ -34,8 +34,8 @@
3434
"clean": "rm -rf dist"
3535
},
3636
"dependencies": {
37-
"@bull-board/api": "6.13.1",
38-
"@bull-board/ui": "6.13.1",
37+
"@bull-board/api": "6.14.0",
38+
"@bull-board/ui": "6.14.0",
3939
"ejs": "^3.1.10",
4040
"mimeV4": "npm:mime@^4.0.7"
4141
},

packages/express/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bull-board/express",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"description": "A Express.js server adapter for Bull-Board dashboard.",
55
"keywords": [
66
"bull",
@@ -28,8 +28,8 @@
2828
"clean": "rm -rf dist"
2929
},
3030
"dependencies": {
31-
"@bull-board/api": "6.13.1",
32-
"@bull-board/ui": "6.13.1",
31+
"@bull-board/api": "6.14.0",
32+
"@bull-board/ui": "6.14.0",
3333
"ejs": "^3.1.10",
3434
"express": "^4.21.1 || ^5.0.0"
3535
},

packages/fastify/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bull-board/fastify",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"description": "A Fastify.js server adapter for Bull-Board dashboard.",
55
"keywords": [
66
"bull",
@@ -28,8 +28,8 @@
2828
"clean": "rm -rf dist"
2929
},
3030
"dependencies": {
31-
"@bull-board/api": "6.13.1",
32-
"@bull-board/ui": "6.13.1",
31+
"@bull-board/api": "6.14.0",
32+
"@bull-board/ui": "6.14.0",
3333
"@fastify/static": "^8.2.0",
3434
"@fastify/view": "^11.1.1",
3535
"ejs": "^3.1.10"

packages/h3/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bull-board/h3",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"description": "A H3 server adapter for Bull-Board dashboard.",
55
"keywords": [
66
"bull",
@@ -29,8 +29,8 @@
2929
"clean": "rm -rf dist"
3030
},
3131
"dependencies": {
32-
"@bull-board/api": "6.13.1",
33-
"@bull-board/ui": "6.13.1",
32+
"@bull-board/api": "6.14.0",
33+
"@bull-board/ui": "6.14.0",
3434
"ejs": "^3.1.10",
3535
"h3": "^1.15.4"
3636
},

packages/hapi/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bull-board/hapi",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"description": "A Hapi.js server adapter for Bull-Board dashboard.",
55
"keywords": [
66
"bull",
@@ -29,8 +29,8 @@
2929
"clean": "rm -rf dist"
3030
},
3131
"dependencies": {
32-
"@bull-board/api": "6.13.1",
33-
"@bull-board/ui": "6.13.1",
32+
"@bull-board/api": "6.14.0",
33+
"@bull-board/ui": "6.14.0",
3434
"@hapi/inert": "^7.1.0",
3535
"@hapi/vision": "^7.0.3",
3636
"ejs": "^3.1.10"

packages/hono/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bull-board/hono",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"description": "A Hono server adapter for Bull-Board dashboard.",
55
"keywords": [
66
"bull",
@@ -28,8 +28,8 @@
2828
"clean": "rm -rf dist"
2929
},
3030
"dependencies": {
31-
"@bull-board/api": "6.13.1",
32-
"@bull-board/ui": "6.13.1",
31+
"@bull-board/api": "6.14.0",
32+
"@bull-board/ui": "6.14.0",
3333
"ejs": "^3.1.10"
3434
},
3535
"devDependencies": {

packages/koa/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bull-board/koa",
3-
"version": "6.13.1",
3+
"version": "6.14.0",
44
"description": "A Koa.js server adapter for Bull-Board dashboard.",
55
"keywords": [
66
"bull",
@@ -28,8 +28,8 @@
2828
"clean": "rm -rf dist"
2929
},
3030
"dependencies": {
31-
"@bull-board/api": "6.13.1",
32-
"@bull-board/ui": "6.13.1",
31+
"@bull-board/api": "6.14.0",
32+
"@bull-board/ui": "6.14.0",
3333
"@koa/bodyparser": "^5.1.2",
3434
"@ladjs/koa-views": "^9.0.0",
3535
"ejs": "^3.1.10",

0 commit comments

Comments
 (0)