You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pa...@apache.org on 2018/08/15 19:41:34 UTC

[camel] branch master updated (28771d0 -> d748261)

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

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


    from 28771d0  CAMEL-12734: camel-sql and camel-elsql consumer now support dynamic query parameters in route from. Notice its limited to be mostly about calling beans via simple expressions.
     new 4f27348  Upgrade AssertJ to version 3.11.0
     new d748261  caffeine-cache: use caffeine-cache instead of caffeine-loadcache in component doc example

The 2 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-caffeine/src/main/docs/caffeine-cache-component.adoc      | 6 +++---
 parent/pom.xml                                                      | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)


[camel] 01/02: Upgrade AssertJ to version 3.11.0

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

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

commit 4f273486f218bcaaf4e33d34957b22b2e119835d
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Wed Aug 15 21:34:34 2018 +0200

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

diff --git a/parent/pom.xml b/parent/pom.xml
index 23bb7ab..11208eb 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -65,7 +65,7 @@
     <asciidoctorj-version>1.5.6</asciidoctorj-version>
     <asm-version>5.0.4</asm-version>
     <aspectj-version>1.9.1</aspectj-version>
-    <assertj-version>3.10.0</assertj-version>
+    <assertj-version>3.11.0</assertj-version>
     <asterisk-java-version>1.0.0-final</asterisk-java-version>
     <asterisk-java-bundle-version>1.0.0-final_1</asterisk-java-bundle-version>
     <atmos-client-version>2.2.2</atmos-client-version>


[camel] 02/02: caffeine-cache: use caffeine-cache instead of caffeine-loadcache in component doc example

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

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

commit d7482617012124ef1a91e632d05f702c1172ee0b
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Wed Aug 15 21:41:25 2018 +0200

    caffeine-cache: use caffeine-cache instead of caffeine-loadcache in component doc example
---
 .../camel-caffeine/src/main/docs/caffeine-cache-component.adoc      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-caffeine/src/main/docs/caffeine-cache-component.adoc b/components/camel-caffeine/src/main/docs/caffeine-cache-component.adoc
index 6e29d0e..7b5f10f 100644
--- a/components/camel-caffeine/src/main/docs/caffeine-cache-component.adoc
+++ b/components/camel-caffeine/src/main/docs/caffeine-cache-component.adoc
@@ -4,7 +4,7 @@
 *Available as of Camel version 2.20*
 
 The *caffeine-cache* component enables you to perform caching operations using
-The simple cache from Caffeine.
+the simple cache from Caffeine.
 
 Maven users will need to add the following dependency to
 their `pom.xml` for this component:
@@ -136,8 +136,8 @@ You can use your cache with the following code:
         return new RouteBuilder() {
             public void configure() {
                 from("direct://start")
-                    .toF("caffeine-loadcache://%s?cache=#cache&action=PUT&key=1", "test")
-                    .toF("caffeine-loadcache://%s?cache=#cache&key=1&action=GET", "test")
+                    .toF("caffeine-cache://%s?cache=#cache&action=PUT&key=1", "test")
+                    .toF("caffeine-cache://%s?cache=#cache&key=1&action=GET", "test")
                     .log("Test! ${body}")
                     .to("mock:result");
             }