Skip to content

Commit 6333c73

Browse files
TinkerPop 3.4.12 release
1 parent 3b5e087 commit 6333c73

File tree

33 files changed

+46
-33
lines changed

33 files changed

+46
-33
lines changed

CHANGELOG.asciidoc

Lines changed: 14 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/avant-gremlin.png[width=185]
2222
2323
[[release-3-4-12]]
24-
=== TinkerPop 3.4.12 (Release Date: NOT OFFICIALLY RELEASED YET)
24+
=== TinkerPop 3.4.12 (Release Date: July 19, 2021)
2525
2626
* Coerced single `set` arguments to `P.within` and `P.without` to `list` in Python which serializes to a more expected form for `P` instances.
2727
* Fixed bug in the `vertexLabelKey` validation for `GraphMLWriter` which was inadvertently validating the `edgeLabelKey`.
@@ -32,6 +32,19 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
3232
* Defaulted `DriverRemoteConnection` to "g" if it the `TraversalSource` binding isn't supplied in Python.
3333
* Initialized metrics in `ProfileStep` even if the step hasn't iterated.
3434
35+
==== Bugs
36+
37+
* TINKERPOP-2358 Potential connection leak on client disposing
38+
* TINKERPOP-2554 Extracting step metrics from ProfileStep throws NPE if the step was not triggered
39+
* TINKERPOP-2565 GraphMLWriter does not check vertexLabelKey conflict
40+
* TINKERPOP-2578 Set arguments to P within/without are wrapped in List
41+
* TINKERPOP-2580 Update the custom DSL documentation
42+
43+
==== Improvements
44+
45+
* TINKERPOP-2548 Add getter for indexer used in IndexStep
46+
* TINKERPOP-2577 Remove unused test coverage dependencies from Gremlin.NET
47+
3548
[[release-3-4-11]]
3649
=== TinkerPop 3.4.11 (Release Date: May 3, 2021)
3750

docs/src/upgrade/release-3.4.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.4.12
2525
26-
*Release Date: NOT OFFICIALLY RELEASED YET*
26+
*Release Date: July 19, 2021*
2727
2828
Please see the link:https://github.com/apache/tinkerpop/blob/3.4.12/CHANGELOG.asciidoc#release-3-4-12[changelog] for a
2929
complete list of all the modifications that are part of this release.

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.4.12-SNAPSHOT</version>
24+
<version>3.4.12</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.4.12-SNAPSHOT</version>
24+
<version>3.4.12</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.4.12-SNAPSHOT</version>
24+
<version>3.4.12</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.4.12-SNAPSHOT</version>
24+
<version>3.4.12</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.4.12-SNAPSHOT-standalone/bin/gremlin.sh
1+
../target/apache-tinkerpop-gremlin-console-3.4.12-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.4.12-SNAPSHOT</version>
24+
<version>3.4.12</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.4.12-SNAPSHOT</version>
23+
<version>3.4.12</version>
2424
</parent>
2525
<artifactId>gremlin-core</artifactId>
2626
<name>Apache TinkerPop :: Gremlin Core</name>

gremlin-dotnet/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>tinkerpop</artifactId>
24-
<version>3.4.12-SNAPSHOT</version>
24+
<version>3.4.12</version>
2525
</parent>
2626
<artifactId>gremlin-dotnet</artifactId>
2727
<name>Apache TinkerPop :: Gremlin.Net</name>

0 commit comments

Comments
 (0)