From b609524ea1735142140c892a05c02d1487621318 Mon Sep 17 00:00:00 2001 From: musketyr Date: Thu, 5 Dec 2024 10:29:37 +0100 Subject: [PATCH] SQS v1 resurrection --- docs/guide/src/docs/asciidoc/breaking-changes.adoc | 1 - docs/guide/src/docs/asciidoc/installation.adoc | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/guide/src/docs/asciidoc/breaking-changes.adoc b/docs/guide/src/docs/asciidoc/breaking-changes.adoc index 9d4cf603..b9671876 100644 --- a/docs/guide/src/docs/asciidoc/breaking-changes.adoc +++ b/docs/guide/src/docs/asciidoc/breaking-changes.adoc @@ -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, Consumer)` 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 diff --git a/docs/guide/src/docs/asciidoc/installation.adoc b/docs/guide/src/docs/asciidoc/installation.adoc index a38fa75b..59207c5c 100644 --- a/docs/guide/src/docs/asciidoc/installation.adoc +++ b/docs/guide/src/docs/asciidoc/installation.adoc @@ -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}")