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 2021/01/29 17:17:31 UTC

[camel] branch master updated (812d364 -> 9aec78c)

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

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


    from 812d364  CAMEL-16110: don't leak internal QUERY_STRING header (#4956)
     new 1ad9dd0  Upgrade Directory Watcher to version 0.14.0
     new fbd4859  Camel-file-watch: Use FileHash because HashCode has been removed
     new 9aec78c  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 +-
 .../test/java/org/apache/camel/component/file/watch/TestHasher.java | 6 +++---
 parent/pom.xml                                                      | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)


[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 master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 9aec78cdc1e0a5c6e327a68ea46dfe21972654e2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jan 29 17:07:12 2021 +0100

    Sync deps
---
 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 832b591..aaf1c2a 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -171,7 +171,7 @@
     <depends-maven-plugin-version>1.4.0</depends-maven-plugin-version>
     <derby-version>10.14.2.0</derby-version>
     <digitalocean-api-client-version>2.17</digitalocean-api-client-version>
-    <directory-watcher-version>0.13.0</directory-watcher-version>
+    <directory-watcher-version>0.14.0</directory-watcher-version>
     <disruptor-version>3.4.2</disruptor-version>
     <djl-mxnet-native-version>1.7.0-backport</djl-mxnet-native-version>
     <djl-pytorch-native-version>1.7.0</djl-pytorch-native-version>


[camel] 02/03: Camel-file-watch: Use FileHash because HashCode has been removed

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

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

commit fbd48594182e3694e1e9f2de5654eb778649c828
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jan 29 17:03:24 2021 +0100

    Camel-file-watch: Use FileHash because HashCode has been removed
---
 .../test/java/org/apache/camel/component/file/watch/TestHasher.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/TestHasher.java b/components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/TestHasher.java
index 50e5670..8acf0cb 100644
--- a/components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/TestHasher.java
+++ b/components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/TestHasher.java
@@ -19,18 +19,18 @@ package org.apache.camel.component.file.watch;
 import java.io.IOException;
 import java.nio.file.Path;
 
+import io.methvin.watcher.hashing.FileHash;
 import io.methvin.watcher.hashing.FileHasher;
-import io.methvin.watcher.hashing.HashCode;
 
 /**
  * For unit test only!
  */
 public class TestHasher implements FileHasher {
     @Override
-    public HashCode hash(Path path) throws IOException {
+    public FileHash hash(Path path) throws IOException {
         // Always return constant
         // This should cause every event is triggered only once (hashcode remains the same), so we can test this.
         // Never use this in production code
-        return HashCode.fromLong(1L);
+        return FileHash.fromLong(1L);
     }
 }


[camel] 01/03: Upgrade Directory Watcher to version 0.14.0

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

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

commit 1ad9dd0bec2b2e39f05fa2c487cae11f2897576a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jan 29 16:58:54 2021 +0100

    Upgrade Directory Watcher to version 0.14.0
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 16ec8b3..641bbd9 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -150,7 +150,7 @@
         <depends-maven-plugin-version>1.4.0</depends-maven-plugin-version>
         <derby-version>10.14.2.0</derby-version>
         <digitalocean-api-client-version>2.17</digitalocean-api-client-version>
-        <directory-watcher-version>0.13.0</directory-watcher-version>
+        <directory-watcher-version>0.14.0</directory-watcher-version>
         <disruptor-version>3.4.2</disruptor-version>
         <dnsjava-version>3.3.1</dnsjava-version>
         <djl-version>0.9.0</djl-version>