Skip to content

Commit

Permalink
Merge branch 'master' into express-handlebars
Browse files Browse the repository at this point in the history
  • Loading branch information
roggervalf authored Feb 20, 2025
2 parents c3b35c8 + 7448d63 commit 0ca990b
Show file tree
Hide file tree
Showing 16 changed files with 496 additions and 313 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
### [4.4.2](https://github.com/bee-queue/arena/compare/v4.4.1...v4.4.2) (2024-06-13)

### Bug Fixes

- **bull:** retry only failed jobs ([#678](https://github.com/bee-queue/arena/issues/678)) ([8488040](https://github.com/bee-queue/arena/commit/848804051a5949487b06453fbf54b1f2ca2dc737))

### [4.4.1](https://github.com/bee-queue/arena/compare/v4.4.0...v4.4.1) (2024-05-07)

### Bug Fixes

- **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))

## [4.4.0](https://github.com/bee-queue/arena/compare/v4.3.0...v4.4.0) (2024-05-03)

### Features

- **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))

## [4.3.0](https://github.com/bee-queue/arena/compare/v4.2.0...v4.3.0) (2024-04-27)

### Features

- **details:** update job data ([#674](https://github.com/bee-queue/arena/issues/674)) ([24ab67f](https://github.com/bee-queue/arena/commit/24ab67f637da2ae8add30231340e413342de8461))

## [4.2.0](https://github.com/bee-queue/arena/compare/v4.1.1...v4.2.0) (2024-02-12)

### Features
Expand Down
7 changes: 7 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: '3.2'
services:
redis:
image: redis:6-alpine
container_name: redis-6
ports:
- 6379:6379
2 changes: 1 addition & 1 deletion example/bee.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function main() {
.delayUntil(Date.now() + 60 * 1000)
.save();

const job = await queue.createJob({}).save();
await queue.createJob({}).save();

Arena(
{
Expand Down
2 changes: 1 addition & 1 deletion example/bull.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function main() {
}
});

await queue.add({});
await queue.add({data: 'data'});

// adding delayed jobs
const delayedJob = await queue.add({}, {delay: 60 * 1000});
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dependencies": {
"@fastify/express": "^2.3.0",
"bee-queue": "^1.4.0",
"bull": "^4.12.2",
"bull": "^4.12.4",
"bullmq": "^4.8.0",
"express": "^4.17.1",
"fastify": "^4.13.0"
Expand Down
Loading

0 comments on commit 0ca990b

Please sign in to comment.