You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2021/02/10 08:42:30 UTC

[camel] branch master updated (6af49ac -> 34d31e2)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 6af49ac  CAMEL-16716: camel-kafka - Bug in header filter strategy regexp pattern
     new c53091b  Polished
     new 34d31e2  Camel 3.9

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../ROOT/pages/camel-3x-upgrade-guide-3_8.adoc     | 41 +++++++++++-----------
 .../ROOT/pages/camel-3x-upgrade-guide-3_9.adoc     |  8 +++++
 2 files changed, 29 insertions(+), 20 deletions(-)
 create mode 100644 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc


[camel] 02/02: Camel 3.9

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 34d31e2667868bbc1ea8907d46ff58926b2946b6
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Feb 10 09:41:52 2021 +0100

    Camel 3.9
---
 .../modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc            | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc
new file mode 100644
index 0000000..4419422
--- /dev/null
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc
@@ -0,0 +1,8 @@
+= Apache Camel 3.x Upgrade Guide
+
+This document is for helping you upgrade your Apache Camel application
+from Camel 3.x to 3.y. For example if you are upgrading Camel 3.0 to 3.2, then you should follow the guides
+from both 3.0 to 3.1 and 3.1 to 3.2.
+
+== Upgrading Camel 3.8 to 3.9
+


[camel] 01/02: Polished

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c53091b982946f3eb52087bd7f425d886ff62984
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Feb 10 09:41:27 2021 +0100

    Polished
---
 .../ROOT/pages/camel-3x-upgrade-guide-3_8.adoc     | 41 +++++++++++-----------
 1 file changed, 21 insertions(+), 20 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc
index 49ec4f2..c83593e 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc
@@ -76,26 +76,26 @@ The components are now reactive and non-blocking, and support the optimized toD
 Many of the previous features and configuration options have been removed/renamed.
 To migrate you need to read their documentation and see what options they now offer.
 
-=== Camel-AWS2-SNS
+=== camel-aws2-sns
 
 The policy option now expects a file, since the policy is going to be complex. It can be from classpath:, http: or file: etc.
 
-=== Camel-AWS2-SQS
+=== camel-aws2-sqs
 
 The policy option now expects a file, since the policy is going to be complex. It can be from classpath:, http: or file: etc.
 
-=== Camel-Github
+=== camel-github
 
 The Camel Github Commit consumer has been changed a bit.
 
 For each exchange now in the body you'll get the commit full message as a String and not the Commit Object like before.
 
-Other information has been stored in headers declared in GitHubConstants class:
+Other information has been stored in headers declared in `GitHubConstants` class:
 
-* GITHUB_COMMIT_AUTHOR - "CamelGitHubCommitAuthor" - The commit Author
-* GITHUB_COMMIT_COMMITTER - "CamelGitHubCommitCommitter" - The committer name
-* GITHUB_COMMIT_SHA - "CamelGitHubCommitSha" - The commit sha
-* GITHUB_COMMIT_URL - "CamelGitHubCommitUrl" - The commit url
+* GITHUB_COMMIT_AUTHOR - `CamelGitHubCommitAuthor` - The commit Author
+* GITHUB_COMMIT_COMMITTER - `CamelGitHubCommitCommitter` - The committer name
+* GITHUB_COMMIT_SHA - `CamelGitHubCommitSha` - The commit sha
+* GITHUB_COMMIT_URL - `CamelGitHubCommitUrl` - The commit url
 
 The Camel Github Events consumer has been changed a bit.
 
@@ -103,9 +103,9 @@ For each exchange now in the body you'll get the event type as a String and not
 
 Other information has been stored in headers declared in GitHubConstants class:
 
-* GITHUB_EVENT_PAYLOAD - "CamelGitHubEventPayload" - The event payload
+* GITHUB_EVENT_PAYLOAD - `CamelGitHubEventPayload` - The event payload
 
-=== Camel-infinispan
+=== camel-infinispan
 
 There are now two components for Infinispan:
 
@@ -114,17 +114,18 @@ There are now two components for Infinispan:
 
 As consequence of the refactor:
 
-- the remote and embedded endpoints provide support the same capabilities, as example queries were only possible on a remote cache and now they are suported on both remote and local/embedded caches
-- the configuration options for the endpoint are now specific to the context which remove the possibility to mix unrelated propertis
-- some classes have been relocated, as example, indempotent and aggregation repositories have been moved from `org.apache.camel.component.infinispan.processor.*` to `org.apache.camel.component.infinispan.embedded` or `org.apache.camel.component.infinispan.remote`:
-+
-org.apache.camel.component.infinispan.embedded.InfinispanEmbeddedAggregationRepository
-org.apache.camel.component.infinispan.embedded.InfinispanEmbeddedIdempotentRepository
-org.apache.camel.component.infinispan.remote.InfinispanRemoteAggregationRepository
-org.apache.camel.component.infinispan.remote.InfinispanRemoteIdempotentRepository
+The remote and embedded endpoints provide support the same capabilities, as example queries were only possible on a remote cache and now they are supported on both remote and local/embedded caches.
+The configuration options for the endpoint are now specific to the context which remove the possibility to mix unrelated properties.
+Some classes have been relocated (such as indempotent and aggregation repositories) have been moved from `org.apache.camel.component.infinispan.processor.*` to `org.apache.camel.component.infinispan.embedded` or `org.apache.camel.component.infinispan.remote`:
+- `org.apache.camel.component.infinispan.embedded.InfinispanEmbeddedAggregationRepository`
+- `org.apache.camel.component.infinispan.embedded.InfinispanEmbeddedIdempotentRepository`
+- `org.apache.camel.component.infinispan.remote.InfinispanRemoteAggregationRepository`
+- `org.apache.camel.component.infinispan.remote.InfinispanRemoteIdempotentRepository`
 
-=== Camel-AWS
+=== camel-aws
 
-All the camel-aws components except camel-aws-xray have been deprecated. We suggest to migrate to Camel-AWS2-* components, because in future releases the AWS components will be removed and with the next LTS release (3.10 probably) camel-aws2 components will be renamed to camel-aws.
+All the camel-aws components except camel-aws-xray have been deprecated. We suggest migrating to camel-aws2-* components,
+because in future releases the AWS components will be removed and with the next LTS release (3.10 probably)
+camel-aws2 components will be renamed to camel-aws.