Skip to content

Commit 0ca990b

Browse files
authored
Merge branch 'master' into express-handlebars
2 parents c3b35c8 + 7448d63 commit 0ca990b

File tree

16 files changed

+496
-313
lines changed

16 files changed

+496
-313
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
### [4.4.2](https://github.com/bee-queue/arena/compare/v4.4.1...v4.4.2) (2024-06-13)
2+
3+
### Bug Fixes
4+
5+
- **bull:** retry only failed jobs ([#678](https://github.com/bee-queue/arena/issues/678)) ([8488040](https://github.com/bee-queue/arena/commit/848804051a5949487b06453fbf54b1f2ca2dc737))
6+
7+
### [4.4.1](https://github.com/bee-queue/arena/compare/v4.4.0...v4.4.1) (2024-05-07)
8+
9+
### Bug Fixes
10+
11+
- **jobs:** validate jobs length in bulk action ([#676](https://github.com/bee-queue/arena/issues/676)) ([2bce363](https://github.com/bee-queue/arena/commit/2bce36391052d747c01aa20adda28d38d4a8fdee))
12+
13+
## [4.4.0](https://github.com/bee-queue/arena/compare/v4.3.0...v4.4.0) (2024-05-03)
14+
15+
### Features
16+
17+
- **bull:** add clean jobs button for completed and failed ([#675](https://github.com/bee-queue/arena/issues/675)) ([e62aef0](https://github.com/bee-queue/arena/commit/e62aef022cf771b715cf65d100391f6f88c5cfd5))
18+
19+
## [4.3.0](https://github.com/bee-queue/arena/compare/v4.2.0...v4.3.0) (2024-04-27)
20+
21+
### Features
22+
23+
- **details:** update job data ([#674](https://github.com/bee-queue/arena/issues/674)) ([24ab67f](https://github.com/bee-queue/arena/commit/24ab67f637da2ae8add30231340e413342de8461))
24+
125
## [4.2.0](https://github.com/bee-queue/arena/compare/v4.1.1...v4.2.0) (2024-02-12)
226

327
### Features

docker-compose.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: '3.2'
2+
services:
3+
redis:
4+
image: redis:6-alpine
5+
container_name: redis-6
6+
ports:
7+
- 6379:6379

example/bee.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ async function main() {
3030
.delayUntil(Date.now() + 60 * 1000)
3131
.save();
3232

33-
const job = await queue.createJob({}).save();
33+
await queue.createJob({}).save();
3434

3535
Arena(
3636
{

example/bull.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async function main() {
3939
}
4040
});
4141

42-
await queue.add({});
42+
await queue.add({data: 'data'});
4343

4444
// adding delayed jobs
4545
const delayedJob = await queue.add({}, {delay: 60 * 1000});

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"dependencies": {
2020
"@fastify/express": "^2.3.0",
2121
"bee-queue": "^1.4.0",
22-
"bull": "^4.12.2",
22+
"bull": "^4.12.4",
2323
"bullmq": "^4.8.0",
2424
"express": "^4.17.1",
2525
"fastify": "^4.13.0"

0 commit comments

Comments
 (0)