Skip to content

Commit 077e3eb

Browse files
committed
TinkerPop 3.7.3 release
1 parent a7012c6 commit 077e3eb

46 files changed

Lines changed: 76 additions & 48 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.asciidoc

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/gremlin-zamfir.png[width=185]
2222
2323
[[release-3-7-3]]
24-
=== TinkerPop 3.7.3 (NOT OFFICIALLY RELEASED YET)
24+
=== TinkerPop 3.7.3 (October 23, 2024)
2525
2626
This release also includes changes from <<release-3-6-8, 3.6.8>>.
2727
@@ -47,6 +47,34 @@ This release also includes changes from <<release-3-6-8, 3.6.8>>.
4747
* Fixed bug in Bytecode build logic where duplicate strategies were added instead of replacing the existing ones.
4848
* Bump Groovy to 4.0.23
4949
50+
==== Bugs
51+
52+
* TINKERPOP-3035 Add explicit property(IDictionary) for .NET
53+
* TINKERPOP-3050 security vulnerability in logback-core
54+
* TINKERPOP-3051 security vulnerability in logback-classic
55+
* TINKERPOP-3052 security vulnerability in ivy
56+
* TINKERPOP-3053 security vulnerability in netty-codec-http2
57+
* TINKERPOP-3076 Incorrect handling of large requests in Go GLV
58+
* TINKERPOP-3077 Javascript translator incorrectly handle quotes, null and undefined values
59+
* TINKERPOP-3079 The test `TraversalStrategiesTest#shouldAllowUserManipulationOfGlobalCache` is not idempotent, as it passes in the first run and fails in repeated runs in the same environment.
60+
* TINKERPOP-3081 When using authentication, evaluationTimeout is ignored
61+
* TINKERPOP-3089 min() and max() local forms not working properly with empty iterator input
62+
* TINKERPOP-3090 trim() steps not handling unicode characters properly
63+
* TINKERPOP-3093 optimization of readmap function
64+
* TINKERPOP-3105 Running 3.6.x python-driver with 3.7.x server leads to deserialization errors
65+
* TINKERPOP-3110 Incorrect Bytecode when multiple options are used in traversal
66+
* TINKERPOP-3116 async_timeout not declared in gremlinpython dependencies
67+
68+
==== Improvements
69+
70+
* TINKERPOP-2700 WebSocket compression may lead to attacks (CRIME / BREACH)
71+
* TINKERPOP-3041 Consistent construction of SeedStrategy
72+
* TINKERPOP-3080 AggregateStep can support all Operators predefined in TinkerPop
73+
* TINKERPOP-3082 Tinkerpop hardcoded the Spark AppName
74+
* TINKERPOP-3086 Upgrade gremlin-python to newer Python interpreter
75+
* TINKERPOP-3098 Gremlin Console bat file is missing log level configuration option
76+
* TINKERPOP-3102 Cardinality input with mergeE step shouldn't be allowed.
77+
5078
[[release-3-7-2]]
5179
=== TinkerPop 3.7.2 (April 8, 2024)
5280

docs/src/upgrade/release-3.7.x.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
2323
2424
== TinkerPop 3.7.3
2525
26-
*Release Date: NOT OFFICIALLY RELEASED YET*
26+
*Release Date: October 23, 2024*
2727
2828
Please see the link:https://github.com/apache/tinkerpop/blob/3.7.3/CHANGELOG.asciidoc#release-3-7-3[changelog] for a
2929
complete list of all the modifications that are part of this release.

gremlin-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<artifactId>tinkerpop</artifactId>
2323
<groupId>org.apache.tinkerpop</groupId>
24-
<version>3.7.3-SNAPSHOT</version>
24+
<version>3.7.3</version>
2525
</parent>
2626

2727
<artifactId>gremlin-annotations</artifactId>

gremlin-archetype/gremlin-archetype-dsl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<groupId>org.apache.tinkerpop</groupId>
2323
<artifactId>gremlin-archetype</artifactId>
24-
<version>3.7.3-SNAPSHOT</version>
24+
<version>3.7.3</version>
2525
</parent>
2626

2727
<artifactId>gremlin-archetype-dsl</artifactId>

gremlin-archetype/gremlin-archetype-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<groupId>org.apache.tinkerpop</groupId>
2323
<artifactId>gremlin-archetype</artifactId>
24-
<version>3.7.3-SNAPSHOT</version>
24+
<version>3.7.3</version>
2525
</parent>
2626

2727
<artifactId>gremlin-archetype-server</artifactId>

gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<groupId>org.apache.tinkerpop</groupId>
2323
<artifactId>gremlin-archetype</artifactId>
24-
<version>3.7.3-SNAPSHOT</version>
24+
<version>3.7.3</version>
2525
</parent>
2626

2727
<artifactId>gremlin-archetype-tinkergraph</artifactId>

gremlin-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<artifactId>tinkerpop</artifactId>
2323
<groupId>org.apache.tinkerpop</groupId>
24-
<version>3.7.3-SNAPSHOT</version>
24+
<version>3.7.3</version>
2525
</parent>
2626

2727
<artifactId>gremlin-archetype</artifactId>

gremlin-console/bin/gremlin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../target/apache-tinkerpop-gremlin-console-3.7.3-SNAPSHOT-standalone/bin/gremlin.sh
1+
../target/apache-tinkerpop-gremlin-console-3.7.3-standalone/bin/gremlin.sh

gremlin-console/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<artifactId>tinkerpop</artifactId>
2323
<groupId>org.apache.tinkerpop</groupId>
24-
<version>3.7.3-SNAPSHOT</version>
24+
<version>3.7.3</version>
2525
</parent>
2626
<artifactId>gremlin-console</artifactId>
2727
<name>Apache TinkerPop :: Gremlin Console</name>

gremlin-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020
<parent>
2121
<groupId>org.apache.tinkerpop</groupId>
2222
<artifactId>tinkerpop</artifactId>
23-
<version>3.7.3-SNAPSHOT</version>
23+
<version>3.7.3</version>
2424
</parent>
2525
<artifactId>gremlin-core</artifactId>
2626
<name>Apache TinkerPop :: Gremlin Core</name>

0 commit comments

Comments
 (0)