Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
path: ~/.cargo/bin/cargo-audit
key: cargo-audit-${{ runner.os }}
- run: cargo install cargo-audit --locked
- run: cargo install cargo-audit --locked --force
- run: cargo audit

cargo-vet:
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ All notable changes to this project are documented in this file.

### Breaking Changes

- **api**: `Parts<Ctx, IdType>` becomes to `ExecutionContext<Connection, IdType>` and merges Ctx into the task ([#751](https://github.com/apalis-dev/apalis/pull/751))
- **api**: Changed `Task<Args, Ctx, Idtype>` to `Task<Args, Connection, IdType>` ([#751](https://github.com/apalis-dev/apalis/pull/751))
- **api**: `Parts<Ctx, Id>` becomes to `ExecutionContext<Connection, Id>` and merges Ctx into the task ([#751](https://github.com/apalis-dev/apalis/pull/751))
- **api**: Changed `Task<Args, Ctx, Idtype>` to `Task<Args, Connection, Id>` ([#751](https://github.com/apalis-dev/apalis/pull/751))
- **crates**: Moved backend crates to respective repos ([#586](https://github.com/apalis-dev/apalis/pull/586))
- **api**: `Backend` must be the second input in `WorkerBuilder` ([#586](https://github.com/apalis-dev/apalis/pull/586))
- **api**: `Backend` now uses rust default poll based mechanism and is standardized: ([#755](https://github.com/apalis-dev/apalis/pull/755))

```rust
let worker = WorkerBuilder::new("tasty-banana")
Expand Down
Loading
Loading