You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/02/10 13:47:40 UTC

[incubator-inlong] branch release-1.0.0 updated (7737dee -> 755536c)

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

dockerzhang pushed a change to branch release-1.0.0
in repository https://gitbox.apache.org/repos/asf/incubator-inlong.git.


    omit 7737dee  [INLONG-2455] unify the module name for sort and manager (#2456)
     new 755536c  [INLONG-2441] [Inlong-Audit] Modify the version of audit protobuf (#2444)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7737dee)
            \
             N -- N -- N   refs/heads/release-1.0.0 (755536c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 inlong-agent/agent-plugins/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

[incubator-inlong] 01/01: [INLONG-2441] [Inlong-Audit] Modify the version of audit protobuf (#2444)

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

dockerzhang pushed a commit to branch release-1.0.0
in repository https://gitbox.apache.org/repos/asf/incubator-inlong.git

commit 755536cece927ed3c985f58c9162926cdeb2534f
Author: dockerzhang <do...@apache.org>
AuthorDate: Thu Feb 10 21:47:13 2022 +0800

    [INLONG-2441] [Inlong-Audit] Modify the version of audit protobuf (#2444)
---
 inlong-agent/agent-plugins/pom.xml                    | 2 +-
 inlong-manager/manager-plugin-examples/pom.xml        | 4 ++--
 inlong-sdk/dataproxy-sdk/pom.xml                      | 2 +-
 inlong-sdk/sort-sdk/pom.xml                           | 4 ++--
 inlong-sort-standalone/pom.xml                        | 2 +-
 inlong-sort-standalone/sort-standalone-common/pom.xml | 2 +-
 inlong-sort-standalone/sort-standalone-dist/pom.xml   | 2 +-
 inlong-sort-standalone/sort-standalone-source/pom.xml | 4 ++--
 8 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/inlong-agent/agent-plugins/pom.xml b/inlong-agent/agent-plugins/pom.xml
index 6db93d4..0739708 100644
--- a/inlong-agent/agent-plugins/pom.xml
+++ b/inlong-agent/agent-plugins/pom.xml
@@ -78,7 +78,7 @@
 
         <dependency>
             <groupId>org.apache.inlong</groupId>
-            <artifactId>inlong-dataproxy-sdk</artifactId>
+            <artifactId>dataproxy-sdk</artifactId>
             <version>1.0.0-incubating</version>
         </dependency>
         <dependency>
diff --git a/inlong-manager/manager-plugin-examples/pom.xml b/inlong-manager/manager-plugin-examples/pom.xml
index 5659edf..0c434f5 100644
--- a/inlong-manager/manager-plugin-examples/pom.xml
+++ b/inlong-manager/manager-plugin-examples/pom.xml
@@ -24,9 +24,9 @@
         <groupId>org.apache.inlong</groupId>
         <version>1.0.0-incubating</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
-
     <artifactId>manager-plugin-examples</artifactId>
+    <modelVersion>4.0.0</modelVersion>
+    <name>Apache InLong - Manager Plugin Examples</name>
 
     <dependencies>
         <dependency>
diff --git a/inlong-sdk/dataproxy-sdk/pom.xml b/inlong-sdk/dataproxy-sdk/pom.xml
index 6805746..652a95f 100644
--- a/inlong-sdk/dataproxy-sdk/pom.xml
+++ b/inlong-sdk/dataproxy-sdk/pom.xml
@@ -26,7 +26,7 @@
         <artifactId>inlong-sdk</artifactId>
         <version>1.0.0-incubating</version>
     </parent>
-    <artifactId>inlong-dataproxy-sdk</artifactId>
+    <artifactId>dataproxy-sdk</artifactId>
     <name>Apache InLong - DataProxy SDK</name>
     <packaging>jar</packaging>
     <build>
diff --git a/inlong-sdk/sort-sdk/pom.xml b/inlong-sdk/sort-sdk/pom.xml
index 5d5ed57..0ff99d8 100644
--- a/inlong-sdk/sort-sdk/pom.xml
+++ b/inlong-sdk/sort-sdk/pom.xml
@@ -26,7 +26,7 @@
         <artifactId>inlong-sdk</artifactId>
         <version>1.0.0-incubating</version>
     </parent>
-    <artifactId>inlong-sort-sdk</artifactId>
+    <artifactId>sort-sdk</artifactId>
     <version>1.0.0-incubating</version>
 
     <name>Apache InLong - Sort SDK</name>
@@ -88,7 +88,7 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
-            <version>4.5.10</version>
+            <version>4.5.13</version>
         </dependency>
 
         <dependency>
diff --git a/inlong-sort-standalone/pom.xml b/inlong-sort-standalone/pom.xml
index 64d741f..f86601b 100644
--- a/inlong-sort-standalone/pom.xml
+++ b/inlong-sort-standalone/pom.xml
@@ -29,7 +29,7 @@
     </parent>
     <packaging>pom</packaging>
     <artifactId>inlong-sort-standalone</artifactId>
-    <name>Apache InLong - Sort - Standalone</name>
+    <name>Apache InLong - Sort Standalone</name>
 
     <modules>
         <module>sort-standalone-common</module>
diff --git a/inlong-sort-standalone/sort-standalone-common/pom.xml b/inlong-sort-standalone/sort-standalone-common/pom.xml
index 9c3a705..a54c25c 100644
--- a/inlong-sort-standalone/sort-standalone-common/pom.xml
+++ b/inlong-sort-standalone/sort-standalone-common/pom.xml
@@ -27,7 +27,7 @@
         <version>1.0.0-incubating</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <name>Apache InLong - SortStandalone Common</name>
+    <name>Apache InLong - Sort Standalone Common</name>
     <artifactId>sort-standalone-common</artifactId>
 
     <properties>
diff --git a/inlong-sort-standalone/sort-standalone-dist/pom.xml b/inlong-sort-standalone/sort-standalone-dist/pom.xml
index ce4f1ac..d4dc11d 100644
--- a/inlong-sort-standalone/sort-standalone-dist/pom.xml
+++ b/inlong-sort-standalone/sort-standalone-dist/pom.xml
@@ -30,7 +30,7 @@
 
     <artifactId>sort-standalone-dist</artifactId>
     <packaging>pom</packaging>
-    <name>Apache InLong - SortStandalone Dist</name>
+    <name>Apache InLong - Sort Standalone Dist</name>
 
     <properties>
         <maven.compiler.source>8</maven.compiler.source>
diff --git a/inlong-sort-standalone/sort-standalone-source/pom.xml b/inlong-sort-standalone/sort-standalone-source/pom.xml
index 1b60f0f..ff570b9 100644
--- a/inlong-sort-standalone/sort-standalone-source/pom.xml
+++ b/inlong-sort-standalone/sort-standalone-source/pom.xml
@@ -27,7 +27,7 @@
         <version>1.0.0-incubating</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <name>Apache InLong - SortStandalone Source</name>
+    <name>Apache InLong - Sort Standalone Source</name>
     <artifactId>sort-standalone-source</artifactId>
 
     <properties>
@@ -44,7 +44,7 @@
         </dependency>
         <dependency>
             <groupId>org.apache.inlong</groupId>
-            <artifactId>inlong-sort-sdk</artifactId>
+            <artifactId>sort-sdk</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>