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/11/19 19:17:45 UTC

[camel] branch master updated: camel-salesforce: Change default API version to 50. (#4636)

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 46c8bc2  camel-salesforce: Change default API version to 50. (#4636)
46c8bc2 is described below

commit 46c8bc22b73a24ddb0e0014311b2a637a1719891
Author: Jeremy Ross <je...@jeremyross.org>
AuthorDate: Thu Nov 19 13:17:27 2020 -0600

    camel-salesforce: Change default API version to 50. (#4636)
---
 .../apache/camel/component/salesforce/SalesforceEndpointConfig.java  | 2 +-
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_7.adoc  | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceEndpointConfig.java b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceEndpointConfig.java
index 400751d..ca9ce28 100644
--- a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceEndpointConfig.java
+++ b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/SalesforceEndpointConfig.java
@@ -41,7 +41,7 @@ import org.apache.camel.spi.UriParams;
 public class SalesforceEndpointConfig implements Cloneable {
 
     // default API version
-    public static final String DEFAULT_VERSION = "34.0";
+    public static final String DEFAULT_VERSION = "50.0";
 
     // general parameter
     public static final String API_VERSION = "apiVersion";
diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_7.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_7.adoc
index 7efc8c1..e7b21f1 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_7.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_7.adoc
@@ -258,3 +258,8 @@ In this context, it wasn't having any sense to maintain the autodiscoverClient o
 
 The camel-aws2-athena has now support for autowiring the amazonAthenaClient option with AthenaClient instance coming from the registry.
 In this context, it wasn't having any sense to maintain the autodiscoverClient option, which has been now removed.
+
+=== camel-salesforce
+
+The default API version for camel-salesforce has been updated to 50.0. Older versions are still supported and can be set via the `apiVersion`
+component option.
\ No newline at end of file