This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new fb684c168a3 CAMEL-19737: Updates aws2-sns queueUrl to queueArn
fb684c168a3 is described below
commit fb684c168a3618bc5cd3781b56a2f691abf76784
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Sep 1 13:28:01 2023 +0200
CAMEL-19737: Updates aws2-sns queueUrl to queueArn
---
.../ROOT/pages/camel-4-migration-guide.adoc | 23 +++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
b/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
index d6ee3aa9f67..aeeca720ea5 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
@@ -508,4 +508,25 @@ If the route or consumer is suspended then http status 503
is now returned inste
=== camel-twitter
-The component was updated to use Twitter4j version 4.1.2, which
https://twitter4j.org/2022/10/21/264[has moved the packages] used by a few of
its classes. If accessing certain twitter-related data, such as the Twit
status, you need to update the packages used from `twitter4j.Status` to
`twitter4j.v1.Status`.
\ No newline at end of file
+The component was updated to use Twitter4j version 4.1.2, which
https://twitter4j.org/2022/10/21/264[has moved the packages] used by a few of
its classes. If accessing certain twitter-related data, such as the Twit
status, you need to update the packages used from `twitter4j.Status` to
`twitter4j.v1.Status`.
+
+
+== Upgrading Camel 4.0.0 to 4.0.1
+
+=== camel-aws2-sns
+
+The `queueUrl` parameter has been replaced by the `queueArn` parameter
+
+For Example before
+
+----
+from("direct:start")
+
.to("aws2-sns://mytopic?subject=mySubject&autoCreateTopic=true&subscribeSNStoSQS=true&queueUrl=https://xxxx")
+----
+
+Should be changed to
+
+----
+from("direct:start")
+
.to("aws2-sns://mytopic?subject=mySubject&autoCreateTopic=true&subscribeSNStoSQS=true&queueArn=arn:aws:sqs:xxxxx")
+----