You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/03/16 08:43:49 UTC

[camel] branch main updated (2908d03e27d -> a2ae10e2859)

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

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


    from 2908d03e27d Regen for commit 0b7a5a6a2ba62d135aa688f61b976f5983a211d6
     new a19dd313747 CAMEL-18636 - azure data lake component: authentication can not be configured using string properties - Do not validate the configuration in component
     new eeb650a9655 Upgrade AWS SDK v2 to version 2.20.25
     new a2ae10e2859 Sync deps

The 3 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:
 camel-dependencies/pom.xml                                        | 2 +-
 .../camel/component/azure/storage/datalake/DataLakeComponent.java | 8 --------
 parent/pom.xml                                                    | 2 +-
 3 files changed, 2 insertions(+), 10 deletions(-)


[camel] 02/03: Upgrade AWS SDK v2 to version 2.20.25

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

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

commit eeb650a9655cbcc9f431b0fbe49c30eae9afbeb4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 16 09:11:32 2023 +0100

    Upgrade AWS SDK v2 to version 2.20.25
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 94320cc768e..33d62d7d708 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -68,7 +68,7 @@
         <avro-ipc-jetty-version>1.11.1</avro-ipc-jetty-version>
         <avro-ipc-netty-version>1.11.1</avro-ipc-netty-version>
         <awaitility-version>4.2.0</awaitility-version>
-        <aws-java-sdk2-version>2.20.24</aws-java-sdk2-version>
+        <aws-java-sdk2-version>2.20.25</aws-java-sdk2-version>
         <aws-xray-version>2.6.1</aws-xray-version>
         <axiom-version>1.2.14</axiom-version>
         <azure-sdk-bom-version>1.2.10</azure-sdk-bom-version>


[camel] 03/03: Sync deps

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

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

commit a2ae10e285928b522efeeb651d4f3c83e7b4f5bc
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 16 09:43:35 2023 +0100

    Sync deps
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 camel-dependencies/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 79f20bbf574..a3db1b60a61 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -73,7 +73,7 @@
         <avro-ipc-jetty-version>1.11.1</avro-ipc-jetty-version>
         <avro-ipc-netty-version>1.11.1</avro-ipc-netty-version>
         <awaitility-version>4.2.0</awaitility-version>
-        <aws-java-sdk2-version>2.20.24</aws-java-sdk2-version>
+        <aws-java-sdk2-version>2.20.25</aws-java-sdk2-version>
         <aws-xray-version>2.6.1</aws-xray-version>
         <axiom-version>1.2.14</axiom-version>
         <azure-sdk-bom-version>1.2.10</azure-sdk-bom-version>


[camel] 01/03: CAMEL-18636 - azure data lake component: authentication can not be configured using string properties - Do not validate the configuration in component

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

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

commit a19dd3137478843bc7b91928a714fe0e7bc9badd
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 15 11:38:35 2023 +0100

    CAMEL-18636 - azure data lake component: authentication can not be configured using string properties - Do not validate the configuration in component
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../camel/component/azure/storage/datalake/DataLakeComponent.java | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeComponent.java b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeComponent.java
index 962ebb97808..7e6178a86b6 100644
--- a/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeComponent.java
+++ b/components/camel-azure/camel-azure-storage-datalake/src/main/java/org/apache/camel/component/azure/storage/datalake/DataLakeComponent.java
@@ -67,7 +67,6 @@ public class DataLakeComponent extends DefaultComponent {
         setProperties(endpoint, parameters);
 
         setCredentialsFromRegistry(configuration);
-        validateConfiguration(configuration);
 
         return endpoint;
     }
@@ -98,11 +97,4 @@ public class DataLakeComponent extends DefaultComponent {
         }
     }
 
-    private void validateConfiguration(final DataLakeConfiguration config) {
-        if (config.getServiceClient() == null && config.getClientSecretCredential() == null
-                && config.getSharedKeyCredential() == null) {
-            throw new IllegalArgumentException("client or credentials must be specified");
-        }
-    }
-
 }