Skip to content

Commit 71053f3

Browse files
committed
TinkerPop 3.6.8 release
1 parent 8518f75 commit 71053f3

47 files changed

Lines changed: 71 additions & 52 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: 20 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-victorian.png[width=185]
2222
2323
[[release-3-6-8]]
24-
=== TinkerPop 3.6.8 (NOT OFFICIALLY RELEASED YET)
24+
=== TinkerPop 3.6.8 (October 23, 2024)
2525
2626
* Fixed a bug in GremlinServer not properly propagating arguments when authentication is enabled.
2727
* Fixed bug in Java driver where connection pool was not removing dead connections under certain error conditions.
@@ -39,6 +39,25 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
3939
* Throw more descriptive error in `gremlin-go` when request size exceeds `WriteBufferSize`
4040
* Fixed a missing runtime dependency in `gremlin-python`
4141
42+
==== Bugs
43+
44+
* TINKERPOP-3035 Add explicit property(IDictionary) for .NET
45+
* TINKERPOP-3050 security vulnerability in logback-core
46+
* TINKERPOP-3051 security vulnerability in logback-classic
47+
* TINKERPOP-3052 security vulnerability in ivy
48+
* TINKERPOP-3053 security vulnerability in netty-codec-http2
49+
* TINKERPOP-3076 Incorrect handling of large requests in Go GLV
50+
* TINKERPOP-3077 Javascript translator incorrectly handle quotes, null and undefined values
51+
* 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.
52+
* TINKERPOP-3081 When using authentication, evaluationTimeout is ignored
53+
* TINKERPOP-3116 async_timeout not declared in gremlinpython dependencies
54+
55+
==== Improvements
56+
57+
* TINKERPOP-2700 WebSocket compression may lead to attacks (CRIME / BREACH)
58+
* TINKERPOP-3086 Upgrade gremlin-python to newer Python interpreter
59+
* TINKERPOP-3098 Gremlin Console bat file is missing log level configuration option
60+
4261
[[release-3-6-7]]
4362
=== TinkerPop 3.6.7 (April 8, 2024)
4463

docs/src/index.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ of this reference guide.
3232
2. <<tutorials,Tutorials>> - Brief but detailed explanations of specific technologies, patterns, use cases or best
3333
practices related to TinkerPop.
3434
3. <<publications,Publications>> - Blog posts, technical papers, presentation materials, etc.
35-
4. <<developer,Developer>> - Documentation for contributors to TinkerPop or for providers (i.e. those who implement
35+
4. link:https://tinkerpop.apache.org/docs/x.y.z/dev/developer[Developer] - Documentation for contributors to TinkerPop or for providers (i.e. those who implement
3636
TinkerPop's interfaces).
3737
5. link:https://tinkerpop.apache.org/javadocs/x.y.z/full/[Javadoc] - The full Javadoc for all TinkerPop modules. There
3838
is also an abridged version of the link:https://tinkerpop.apache.org/javadocs/x.y.z/core/[core] interfaces which may

docs/src/reference/the-traversal.asciidoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,11 @@ Spawn steps, which actually yield a traversal, typically match the names of exis
378378
379379
* `addE()` - Adds an `Edge` to start the traversal (<<addedge-step, example>>).
380380
* `addV()` - Adds a `Vertex` to start the traversal (<<addvertex-step, example>>).
381-
* `E()` - Reads edges from the graph to start the traversal (<<graph-step, example>>).
381+
* `call()` - Makes a provider-specific service call to start the traversal (<<call-step, example>>).
382+
* `E()` - Reads edges from the graph to start the traversal (<<e-step, example>>).
382383
* `inject()` - Inserts arbitrary objects to start the traversal (<<inject-step, example>>).
384+
* `mergeE()` - Adds an `Edge` in a "create if not exist" fashion to start the traversal (<<mergeedge-step, example>>)
385+
* `mergeV()` - Adds a `Vertex` in a "create if not exist" fashion to start the traversal (<<mergevertex-step, example>>)
383386
* `V()` - Reads vertices from the graph to start the traversal (<<graph-step, example>>).
384387
385388
[[graph-traversal-steps]]

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

Lines changed: 1 addition & 4 deletions
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.6.8
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.6.8/CHANGELOG.asciidoc#release-3-6-8[changelog] for a
2929
complete list of all the modifications that are part of this release.
@@ -36,9 +36,6 @@ complete list of all the modifications that are part of this release.
3636
`gremlin-go` has upgraded to Go 1.22 as Go 1.21 has passed end of life.
3737
3838
39-
=== Upgrading for Providers
40-
41-
4239
== TinkerPop 3.6.7
4340
4441
*Release Date: April 8, 2024*

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.6.8-SNAPSHOT</version>
24+
<version>3.6.8</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.6.8-SNAPSHOT</version>
24+
<version>3.6.8</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.6.8-SNAPSHOT</version>
24+
<version>3.6.8</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.6.8-SNAPSHOT</version>
24+
<version>3.6.8</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.6.8-SNAPSHOT</version>
24+
<version>3.6.8</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.6.8-SNAPSHOT-standalone/bin/gremlin.sh
1+
../target/apache-tinkerpop-gremlin-console-3.6.8-standalone/bin/gremlin.sh

0 commit comments

Comments
 (0)