Skip to content

Commit

Permalink
TinkerPop 3.6.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazcy committed May 13, 2023
1 parent 3b09a3b commit 9ae2b89
Show file tree
Hide file tree
Showing 40 changed files with 50 additions and 50 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,15 @@ limitations under the License.
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/gremlin-victorian.png[width=185]
[[release-3-6-4]]
=== TinkerPop 3.6.4 (Release Date: NOT OFFICIALLY RELEASED YET)
This release also includes changes from <<release-3-5-7, 3.5.7>>.
=== TinkerPop 3.6.4 (Release Date: May 12, 2023)
* Fixed bug in `TextP.regex` and `TextP.notRegex` serialization for Java GLV.
* Fixed a memory leak in the Gremlin.Net driver that only occurred if a CancellationToken was provided.
==== Bugs
* TINKERPOP-2945 TextP.regex() Serialization Failing in Java driver
* TINKERPOP-2944 Memory leak in Gremlin.Net driver if CancellationToken is used
[[release-3-6-3]]
=== TinkerPop 3.6.3 (Release Date: May 1, 2023)
Expand Down
10 changes: 3 additions & 7 deletions docs/src/upgrade/release-3.6.x.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,10 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
== TinkerPop 3.6.4
*Release Date: NOT OFFICIALLY RELEASED YET*
*Release Date: May 12, 2023*
Please see the link:https://github.com/apache/tinkerpop/blob/3.6.4/CHANGELOG.asciidoc#release-3-6-4[changelog] for a complete list of all the modifications that are part of this release.
=== Upgrading for Users
== TinkerPop 3.6.3
*Release Date: May 1, 2023*
Expand All @@ -41,8 +37,8 @@ Please see the link:https://github.com/apache/tinkerpop/blob/3.6.3/CHANGELOG.asc
==== Deprecation Warning for Go 1.17
Release 3.6.3 will be the last version of 3.6.x to use Go 1.17 for `gremlin-go` as this runtime is no longer supported.
The following release (3.6.4) of `gremlin-go` will use the latest available version of Go.
Release 3.6.3 will be one of the last versions of 3.6.x to use Go 1.17 for `gremlin-go` as this runtime is no longer supported.
Upcoming releases of `gremlin-go` will attempt to use the latest available version of Go.
=== Upgrading for Providers
Expand Down
2 changes: 1 addition & 1 deletion gremlin-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>tinkerpop</artifactId>
<groupId>org.apache.tinkerpop</groupId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>

<artifactId>gremlin-annotations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-archetype/gremlin-archetype-dsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-archetype</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>

<artifactId>gremlin-archetype-dsl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-archetype/gremlin-archetype-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-archetype</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>

<artifactId>gremlin-archetype-server</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-archetype</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>

<artifactId>gremlin-archetype-tinkergraph</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>tinkerpop</artifactId>
<groupId>org.apache.tinkerpop</groupId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>

<artifactId>gremlin-archetype</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-console/bin/gremlin.sh
2 changes: 1 addition & 1 deletion gremlin-console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>tinkerpop</artifactId>
<groupId>org.apache.tinkerpop</groupId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-console</artifactId>
<name>Apache TinkerPop :: Gremlin Console</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-core</artifactId>
<name>Apache TinkerPop :: Gremlin Core</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-dotnet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-dotnet</artifactId>
<name>Apache TinkerPop :: Gremlin.Net</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ limitations under the License.
<ProjectReference Include="../Gremlin.Net/Gremlin.Net.csproj" />

<!-- do not edit the version directly - maven updates it automatically -->
<PackageReference Include="Gremlin.Net" Version="3.6.4-SNAPSHOT" />
<PackageReference Include="Gremlin.Net" Version="3.6.4" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Gremlin.Net Template</title>

<!-- do not edit the version directly - maven updates it automatically -->
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>

<description>Gremlin.Net template to create a console application with dotnet new.</description>
<authors>Apache TinkerPop</authors>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ limitations under the License.

<PropertyGroup Label="Package">
<!-- do not edit the version directly - maven updates it automatically -->
<Version>3.6.4-SNAPSHOT</Version>
<Version>3.6.4</Version>
<Title>Gremlin.Net</Title>
<Authors>Apache TinkerPop</Authors>
<Description>Gremlin.Net for Apache TinkerPop™ is a language variant and driver for .NET.
Expand Down
2 changes: 1 addition & 1 deletion gremlin-dotnet/src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-dotnet</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-dotnet-source</artifactId>
<name>Apache TinkerPop :: Gremlin.Net - Source</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-dotnet/test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>gremlin-dotnet</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-dotnet-tests</artifactId>
<name>Apache TinkerPop :: Gremlin.Net - Tests</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-driver</artifactId>
<name>Apache TinkerPop :: Gremlin Driver</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-go/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-go</artifactId>
<name>Apache TinkerPop :: Gremlin Go</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-groovy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-groovy</artifactId>
<name>Apache TinkerPop :: Gremlin Groovy</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-javascript/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-javascript</artifactId>
<name>Apache TinkerPop :: Gremlin Javascript</name>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gremlin",
"version": "3.6.4-alpha1",
"version": "3.6.4",
"description": "JavaScript Gremlin Language Variant",
"author": "Apache TinkerPop team",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion gremlin-language/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>

<artifactId>gremlin-language</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-python/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-python</artifactId>
<name>Apache TinkerPop :: Gremlin Python</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-server</artifactId>
<name>Apache TinkerPop :: Gremlin Server</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-shaded</artifactId>
<name>Apache TinkerPop :: Gremlin Shaded</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-test</artifactId>
<name>Apache TinkerPop :: Gremlin Test</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-tools/gremlin-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>gremlin-tools</artifactId>
<groupId>org.apache.tinkerpop</groupId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>

<artifactId>gremlin-benchmark</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-tools/gremlin-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>gremlin-tools</artifactId>
<groupId>org.apache.tinkerpop</groupId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-coverage</artifactId>
<name>Apache TinkerPop :: Gremlin Coverage</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-tools/gremlin-io-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>gremlin-tools</artifactId>
<groupId>org.apache.tinkerpop</groupId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlin-io-test</artifactId>
<name>Apache TinkerPop :: Gremlin IO Test</name>
Expand Down
2 changes: 1 addition & 1 deletion gremlin-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>tinkerpop</artifactId>
<groupId>org.apache.tinkerpop</groupId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>

<artifactId>gremlin-tools</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions gremlint/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gremlint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gremlint",
"version": "3.6.4-alpha1",
"version": "3.6.4",
"description": "Linter/code formatter for Gremlin",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion gremlint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>gremlint</artifactId>
<name>Apache TinkerPop :: Gremlint</name>
Expand Down
2 changes: 1 addition & 1 deletion hadoop-gremlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>hadoop-gremlin</artifactId>
<name>Apache TinkerPop :: Hadoop Gremlin</name>
Expand Down
2 changes: 1 addition & 1 deletion neo4j-gremlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>neo4j-gremlin</artifactId>
<name>Apache TinkerPop :: Neo4j Gremlin</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ limitations under the License.
</parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
<packaging>pom</packaging>
<name>Apache TinkerPop</name>
<description>A Graph Computing Framework</description>
Expand Down
2 changes: 1 addition & 1 deletion spark-gremlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>spark-gremlin</artifactId>
<name>Apache TinkerPop :: Spark Gremlin</name>
Expand Down
2 changes: 1 addition & 1 deletion sparql-gremlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>tinkerpop</artifactId>
<groupId>org.apache.tinkerpop</groupId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>sparql-gremlin</artifactId>
<name>Apache TinkerPop :: SPARQL Gremlin</name>
Expand Down
2 changes: 1 addition & 1 deletion tinkergraph-gremlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<groupId>org.apache.tinkerpop</groupId>
<artifactId>tinkerpop</artifactId>
<version>3.6.4-SNAPSHOT</version>
<version>3.6.4</version>
</parent>
<artifactId>tinkergraph-gremlin</artifactId>
<name>Apache TinkerPop :: TinkerGraph Gremlin</name>
Expand Down

0 comments on commit 9ae2b89

Please sign in to comment.