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 2020/09/18 07:01:58 UTC

[camel] branch master updated: CAMEL-15478: Add note to 3.6 upgrade guide

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


The following commit(s) were added to refs/heads/master by this push:
     new cbf1296  CAMEL-15478: Add note to 3.6 upgrade guide
cbf1296 is described below

commit cbf1296cfb918b905de67b137da24df2027ac0ce
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Sep 18 09:01:39 2020 +0200

    CAMEL-15478: Add note to 3.6 upgrade guide
---
 .../ROOT/pages/camel-3x-upgrade-guide-3_6.adoc     | 29 ++++++++++++++++++----
 1 file changed, 24 insertions(+), 5 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
index 25ef8e5..206f42b 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
@@ -9,11 +9,27 @@ from both 3.0 to 3.1 and 3.1 to 3.2.
 === API components upgrade
 
 The `camel-braintree`, `camel-twilio` and `camel-zendesk` has updated to newer versions and regenerated their API
-signatures in the Camel components which may change some of the existing singatures and as well bring in new.
+signatures in the Camel components which changed a few existing API methods and adding new API methods as well.
 
-=== Camel Karaf
+=== API components overhauled
 
-The following features has been removed due they become not compatible with OSGi: `camel-atmosphere-websocket`.
+The following API component has been overhauled, by having a new Java source parser to inspect API and fully generate
+Camel endpoint configuration and documentation gathered from javadoc.
+
+The components affected are:
+
+- camel-as2
+- camel-box
+- camel-braintree
+- camel-fhir
+- camel-google-calendar
+- camel-google-drive
+- camel-google-email
+- camel-google-sheets
+- camel-olingo2
+- camel-olingo4
+- camel-twilio
+- camel-zendesk
 
 === Customizers
 
@@ -108,15 +124,18 @@ To configure the component to use a pre-configured cache, it is not more require
 
 As example, the following code:
 
-
 [source,java]
 ----
 .to("caffeine-cache://cache?cache=#myCache&action=PUT&key=1")
 ----
 
-Should eb repolaced by:
+Should eb replaced by:
 
 [source,java]
 ----
 .to("caffeine-cache://myCache?action=PUT&key=1")
 ----
+
+=== Camel Karaf
+
+The following features has been removed due they become not compatible with OSGi: `camel-atmosphere-websocket`.