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 2018/11/02 07:46:09 UTC

[camel] branch camel-2.21.x updated (a841ad0 -> f4253f7)

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

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


    from a841ad0  Add XML references for release 2.21.3
     new b01ef24  CAMEL-12838 - Camel Twitter Send Direct Message Endpoint not working, use cameltweet user in the test
     new f4253f7  CAMEL-12838 - Upgrade Twitter4j and related bundle to version 4.0.7

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:
 .../org/apache/camel/component/twitter/DirectMessageProducerTest.java | 2 +-
 parent/pom.xml                                                        | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


[camel] 02/02: CAMEL-12838 - Upgrade Twitter4j and related bundle to version 4.0.7

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

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

commit f4253f704cf4f32bbced569b89cdcf4e4f2a717f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Nov 2 08:45:25 2018 +0100

    CAMEL-12838 - Upgrade Twitter4j and related bundle to version 4.0.7
---
 parent/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 1fadda7..977ba1a6 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -695,8 +695,8 @@
     <tinybundles-version>2.1.1</tinybundles-version>
     <tika-version>1.18</tika-version>
     <twilio-version>7.9.1</twilio-version>
-    <twitter4j-bundle-version>4.0.6_1</twitter4j-bundle-version>
-    <twitter4j-version>4.0.6</twitter4j-version>
+    <twitter4j-bundle-version>4.0.7_1</twitter4j-bundle-version>
+    <twitter4j-version>4.0.7</twitter4j-version>
     <uberfire-maven-support-version>1.3.0.Final</uberfire-maven-support-version>
     <undertow-version>1.4.23.Final</undertow-version>
     <univocity-parsers-version>2.3.1</univocity-parsers-version>


[camel] 01/02: CAMEL-12838 - Camel Twitter Send Direct Message Endpoint not working, use cameltweet user in the test

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

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

commit b01ef247c9d3fb05f8699386c0f643fb60a17220
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Nov 2 08:37:11 2018 +0100

    CAMEL-12838 - Camel Twitter Send Direct Message Endpoint not working, use cameltweet user in the test
---
 .../org/apache/camel/component/twitter/DirectMessageProducerTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-twitter/src/test/java/org/apache/camel/component/twitter/DirectMessageProducerTest.java b/components/camel-twitter/src/test/java/org/apache/camel/component/twitter/DirectMessageProducerTest.java
index 1a4db99..b647b94 100644
--- a/components/camel-twitter/src/test/java/org/apache/camel/component/twitter/DirectMessageProducerTest.java
+++ b/components/camel-twitter/src/test/java/org/apache/camel/component/twitter/DirectMessageProducerTest.java
@@ -67,7 +67,7 @@ public class DirectMessageProducerTest extends CamelTwitterTestSupport {
             public void configure() {
                 from("direct:tweets")
                         //.to("log:org.apache.camel.component.twitter?level=INFO&showAll=true&multiline=true")
-                        .to("twitter-directmessage:user?" + getUriTokens())
+                        .to("twitter-directmessage:cameltweet?" + getUriTokens())
                         //.to("log:org.apache.camel.component.twitter?level=INFO&showAll=true&multiline=true")
                         .to("mock:result");
             }