Skip to content

Commit

Permalink
SQS v1 resurrection
Browse files Browse the repository at this point in the history
  • Loading branch information
musketyr committed Dec 5, 2024
1 parent 031377c commit b609524
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion docs/guide/src/docs/asciidoc/breaking-changes.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
== 3.0.0
* removed Redis Queue implementation due the minimal use and complexity of the implementation
* removed AWS SDK v1 implementation as it has been superseded by AWS SDK v2 one
* removed deprecated `JobQueue#readMessages(String, int, Duration, Argument<T>, Consumer<T>)` method
* reading queues returns `QueueMessage` instead of the message itself and the underlying implementation must properly call `delete` or `requeue` on the message to either remove it from the queue or return it back to the queue for processing
3 changes: 3 additions & 0 deletions docs/guide/src/docs/asciidoc/installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ dependencies {
// to enable /jobs endpoint
implementation("com.agorapulse:micronaut-worker-management:{project-version}")
// to enable AWS SDK v1 SQS queues integration
implementation("com.agorapulse:micronaut-worker-queues-sqs-v1:{project-version}")
// to enable AWS SDK v2 SQS queues integration
implementation("com.agorapulse:micronaut-worker-queues-sqs-v2:{project-version}")
Expand Down

0 comments on commit b609524

Please sign in to comment.