Skip to content

Commit

Permalink
chore: fix CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
drobnikj committed Jun 6, 2022
1 parent 488bcd8 commit 2e0beb8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
2.5.1 / 2022/06/06
===================
- Add methods to list all requests in queue, `requestQueueClient.listRequests()` and `requestQueueClient.paginateRequests()`.
The paginate requests returns async iterator, you can use it:
```
for await (const page of rqClient.paginateRequests()) {
// Do something with page.items
}
```
- Fix ActorRun - correct type for `status`

2.5.0 / 2022/05/23
===================
- Add `origin` param to the last actor/task run endpoints
Expand Down

0 comments on commit 2e0beb8

Please sign in to comment.