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 2022/11/30 11:55:45 UTC

[camel] branch main updated: Update upgrade guide

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 08ba68ca702 Update upgrade guide
08ba68ca702 is described below

commit 08ba68ca702237800304bcc9616e1809c03e4187
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Nov 30 12:55:34 2022 +0100

    Update upgrade guide
---
 .../modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc   | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc
index 3f3e0351f5b..a7e495e07a9 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_20.adoc
@@ -12,6 +12,21 @@ The `org.apache.camel.support.jsse.SSLContextParameters` is now using `ResourceL
 to load keystore and other resources in a standard way. Therefore, the `SSLContextParameters` now must have been pre-configured
 with a `CamelContext` otherwise an exception is thrown.
 
+== camel-bom
+
+The `camel-bom` BOM no longer includes dependencies with `<type>test-jar</type>` as these are for internal testing
+of the Apache Camel project.
+
+The following Maven Plugins has been fixed to use correct GAV:
+
+- camel-debezium-maven-plugin
+- camel-salesforce-maven-plugin
+- camel-servicenow-maven-plugin
+
+from `<groupdId>org.apache.camel</groupdId>` to `<groupdId>org.apache.camel.maven</groupdId>`.
+
+Dependencies not intended for end users has been removed, such as all `-parent` JARs.
+
 === camel-jsonpath
 
 There is a new option `unpackArray` that unpacks a single-element Json array, matched by a Jsonpath, into an object. This option is disabled by default (this behaviour was enabled by default in previous Camel versions). There is a new expression `jsonpathUnpack(String text, Class<?> resultType)` that makes use of this new option.