You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2019/10/10 16:28:46 UTC

[tinkerpop] branch master updated (f835b41 -> 9e96528)

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

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


    from f835b41  Merge branch 'tp34'
     new 7ac09b5  Partial revert of #1200 for a jackson version bump
     new d8dc877  Merge branch 'tp33' into tp34
     new 65640e2  Reverted a portion of #1200.
     new 9e96528  Merge branch 'tp34'

The 4 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:
 CHANGELOG.asciidoc    |  3 ---
 neo4j-gremlin/pom.xml |  4 ++--
 spark-gremlin/pom.xml | 22 +++-------------------
 3 files changed, 5 insertions(+), 24 deletions(-)


[tinkerpop] 01/04: Partial revert of #1200 for a jackson version bump

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

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

commit 7ac09b555fd9efa8eb5633d255df5b422ebb2fae
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu Oct 10 12:20:03 2019 -0400

    Partial revert of #1200 for a jackson version bump
    
    Left the part that updated our shaded version but reverted parts that tried to update upstream libraries that haven't been upgraded themselves yet. Was causing problems with doc generation...not sure why CTR
---
 CHANGELOG.asciidoc    |  3 ---
 neo4j-gremlin/pom.xml |  4 ++--
 spark-gremlin/pom.xml | 22 +++-------------------
 3 files changed, 5 insertions(+), 24 deletions(-)

diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 943813d..1349e6c 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -31,9 +31,6 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 * Fixed Java DSL annotation for generation of `addE()` which was formerly calling the wrong step.
 * Deprecated `scriptEvaluationTimeout` in favor of the more generic `evaluationTimeout`.
 * Bumped jackson-databind to 2.9.10 due to CVE-2019-14379, CVE-2019-14540, CVE-2019-16335.
-* Bumped jackson-annotations to 2.9.10 to align the version of jackson-databind.
-* Bumped jackson-module-scala_2.11 to 2.9.10 to align the version of jackson-databind.
-* Bumped scala-library and scala-reflect to 2.11.12 due to the upgrade of jackson-module-scala_2.11.
 * Added `ReservedKeysVerificationStrategy` to allow warnings or exceptions when certain keys are used for properties.
 * Added the `AbstractWarningVerificationStrategy` base class for "warning" style `VerificationStrategy` implementations.
 * Refactored `EdgeLabelVerificationStrategy` to use `AbstractWarningVerificationStrategy`.
diff --git a/neo4j-gremlin/pom.xml b/neo4j-gremlin/pom.xml
index 5bc4abb..1c5ad4e 100644
--- a/neo4j-gremlin/pom.xml
+++ b/neo4j-gremlin/pom.xml
@@ -153,13 +153,13 @@ limitations under the License.
                 <dependency>
                     <groupId>org.scala-lang</groupId>
                     <artifactId>scala-library</artifactId>
-                    <version>2.11.12</version>
+                    <version>2.11.8</version>
                     <scope>test</scope>
                 </dependency>
                 <dependency>
                     <groupId>org.scala-lang</groupId>
                     <artifactId>scala-reflect</artifactId>
-                    <version>2.11.12</version>
+                    <version>2.11.8</version>
                     <scope>test</scope>
                 </dependency>
                 <dependency>
diff --git a/spark-gremlin/pom.xml b/spark-gremlin/pom.xml
index 85df177..0e7b0e1 100644
--- a/spark-gremlin/pom.xml
+++ b/spark-gremlin/pom.xml
@@ -38,12 +38,6 @@
             <groupId>org.apache.tinkerpop</groupId>
             <artifactId>gremlin-core</artifactId>
             <version>${project.version}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>com.fasterxml.jackson.core</groupId>
-                    <artifactId>jackson-databind</artifactId>
-                </exclusion>
-            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.tinkerpop</groupId>
@@ -244,18 +238,13 @@
                     <groupId>org.apache.commons</groupId>
                     <artifactId>commons-compress</artifactId>
                 </exclusion>
-                <!-- jackson-core conflicts -->
-                <exclusion>
-                    <groupId>com.fasterxml.jackson.module</groupId>
-                    <artifactId>jackson-module-scala_2.11</artifactId>
-                </exclusion>
             </exclusions>
         </dependency>
         <!-- consistent dependencies -->
         <dependency>
             <groupId>org.scala-lang</groupId>
             <artifactId>scala-library</artifactId>
-            <version>2.11.12</version>
+            <version>2.11.8</version>
         </dependency>
         <dependency>
             <groupId>org.scala-lang.modules</groupId>
@@ -271,7 +260,7 @@
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
-            <version>2.9.10</version>
+            <version>2.6.5</version>
         </dependency>
         <dependency>
             <groupId>commons-lang</groupId>
@@ -281,7 +270,7 @@
         <dependency>
             <groupId>com.thoughtworks.paranamer</groupId>
             <artifactId>paranamer</artifactId>
-            <version>2.8</version>
+            <version>2.6</version>
         </dependency>
         <dependency>
             <groupId>org.xerial.snappy</groupId>
@@ -303,11 +292,6 @@
             <artifactId>commons-compress</artifactId>
             <version>1.19</version>
         </dependency>
-        <dependency>
-            <groupId>com.fasterxml.jackson.module</groupId>
-            <artifactId>jackson-module-scala_2.11</artifactId>
-            <version>2.9.10</version>
-        </dependency>
         <!-- TEST -->
         <dependency>
             <groupId>org.apache.tinkerpop</groupId>


[tinkerpop] 03/04: Reverted a portion of #1200.

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

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

commit 65640e2f9a90a0b215871cc5f61b48a4f3ad417b
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu Oct 10 12:26:16 2019 -0400

    Reverted a portion of #1200.
    
    This was done for tp33 first where that PR originally landed. On tp34 though we were at 2.6.7 jackson-databind on this branch. CTR
---
 spark-gremlin/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spark-gremlin/pom.xml b/spark-gremlin/pom.xml
index 0f05782..8f4b337 100644
--- a/spark-gremlin/pom.xml
+++ b/spark-gremlin/pom.xml
@@ -264,7 +264,7 @@
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
-            <version>2.6.5</version>
+            <version>2.6.7</version>
         </dependency>
         <dependency>
             <groupId>commons-lang</groupId>


[tinkerpop] 02/04: Merge branch 'tp33' into tp34

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

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

commit d8dc877791e0b5e9108d8784dc40c571561c7e64
Merge: ae9d257 7ac09b5
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu Oct 10 12:21:07 2019 -0400

    Merge branch 'tp33' into tp34

 CHANGELOG.asciidoc    |  3 ---
 neo4j-gremlin/pom.xml |  4 ++--
 spark-gremlin/pom.xml | 22 +++-------------------
 3 files changed, 5 insertions(+), 24 deletions(-)



[tinkerpop] 04/04: Merge branch 'tp34'

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

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

commit 9e965283d687544835774e051195ee567e197d18
Merge: f835b41 65640e2
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu Oct 10 12:28:30 2019 -0400

    Merge branch 'tp34'

 CHANGELOG.asciidoc    |  3 ---
 neo4j-gremlin/pom.xml |  4 ++--
 spark-gremlin/pom.xml | 22 +++-------------------
 3 files changed, 5 insertions(+), 24 deletions(-)

diff --cc neo4j-gremlin/pom.xml
index 9cb372c,6de9f97..ceecedc
--- a/neo4j-gremlin/pom.xml
+++ b/neo4j-gremlin/pom.xml
@@@ -163,15 -151,9 +163,15 @@@ limitations under the License
                      </exclusions>
                  </dependency>
                  <dependency>
 +                    <groupId>org.apache.commons</groupId>
 +                    <artifactId>commons-text</artifactId>
 +                    <version>1.6</version>
 +                    <scope>test</scope>
 +                </dependency>
 +                <dependency>
                      <groupId>org.scala-lang</groupId>
                      <artifactId>scala-library</artifactId>
-                     <version>2.11.12</version>
+                     <version>2.11.8</version>
                      <scope>test</scope>
                  </dependency>
                  <dependency>