You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by fl...@apache.org on 2021/10/27 12:33:55 UTC

[tinkerpop] branch master updated (679116d -> d916c5c)

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

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


    from 679116d  Merge branch '3.5-dev'
     add 9406ee6  TINKERPOP-2556 Add tx() support for .NET
     add b9f72d4  Merge branch 'TINKERPOP-2556' into 3.5-dev
     new d916c5c  Merge branch '3.5-dev'

The 1 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:
 .github/workflows/build-test.yml                   |   2 +-
 CHANGELOG.asciidoc                                 |   1 +
 docs/src/reference/gremlin-variants.asciidoc       |  12 ++
 docs/src/upgrade/release-3.5.x.asciidoc            |   8 ++
 .../Driver/Remote/DriverRemoteConnection.cs        |  26 +++-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |   1 +
 .../Process/Remote/IRemoteConnection.cs            |  16 +++
 .../Process/Remote/RemoteTransaction.cs            |  84 +++++++++++++
 .../src/Gremlin.Net/Process/Traversal/Bytecode.cs  |   2 +-
 .../Traversal/GraphOp.cs}                          |  27 ++--
 .../Process/Traversal/GraphTraversalSource.cs      |  37 +++++-
 .../Docs/Reference/GremlinVariantsTests.cs         |  56 ++++++---
 .../GraphTraversalSourceTests.cs                   |   4 +-
 .../DriverRemoteConnection/GraphTraversalTests.cs  |   2 +-
 .../GraphTraversalTransactionTests.cs              | 107 ++++++++++++++++
 .../Remote/RemoteTransactionTests.cs}              |  28 +++--
 gremlin-dotnet/test/pom.xml                        | 137 +++++++++++++++++++++
 17 files changed, 498 insertions(+), 52 deletions(-)
 create mode 100644 gremlin-dotnet/src/Gremlin.Net/Process/Remote/RemoteTransaction.cs
 copy gremlin-dotnet/src/Gremlin.Net/{Structure/IO/GraphSON/GraphSON2Reader.cs => Process/Traversal/GraphOp.cs} (58%)
 create mode 100644 gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Process/Traversal/DriverRemoteConnection/GraphTraversalTransactionTests.cs
 copy gremlin-dotnet/test/Gremlin.Net.UnitTest/{Driver/DriverRemoteConnectionTests.cs => Process/Remote/RemoteTransactionTests.cs} (56%)

[tinkerpop] 01/01: Merge branch '3.5-dev'

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

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

commit d916c5ce8baffc6b4c086608df41a8091e359b71
Merge: 679116d b9f72d4
Author: Florian Hockmann <fh...@florian-hockmann.de>
AuthorDate: Thu Oct 21 22:08:13 2021 +0200

    Merge branch '3.5-dev'

 .github/workflows/build-test.yml                   |   2 +-
 CHANGELOG.asciidoc                                 |   1 +
 docs/src/reference/gremlin-variants.asciidoc       |  12 ++
 docs/src/upgrade/release-3.5.x.asciidoc            |   8 ++
 .../Driver/Remote/DriverRemoteConnection.cs        |  26 +++-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |   1 +
 .../Process/Remote/IRemoteConnection.cs            |  16 +++
 .../Process/Remote/RemoteTransaction.cs            |  84 +++++++++++++
 .../src/Gremlin.Net/Process/Traversal/Bytecode.cs  |   2 +-
 .../IRemoteConnection.cs => Traversal/GraphOp.cs}  |  29 +++--
 .../Process/Traversal/GraphTraversalSource.cs      |  37 +++++-
 .../Docs/Reference/GremlinVariantsTests.cs         |  56 ++++++---
 .../GraphTraversalSourceTests.cs                   |   4 +-
 .../DriverRemoteConnection/GraphTraversalTests.cs  |   2 +-
 .../GraphTraversalTransactionTests.cs              | 107 ++++++++++++++++
 .../Process/Remote/RemoteTransactionTests.cs       |  57 +++++++++
 gremlin-dotnet/test/pom.xml                        | 137 +++++++++++++++++++++
 17 files changed, 543 insertions(+), 38 deletions(-)

diff --cc gremlin-dotnet/test/pom.xml
index d6ab999,1870207..98d095a
--- a/gremlin-dotnet/test/pom.xml
+++ b/gremlin-dotnet/test/pom.xml
@@@ -114,13 -124,13 +124,18 @@@ limitations under the License
                              </dependency>
                              <dependency>
                                  <groupId>org.apache.tinkerpop</groupId>
 +                                <artifactId>gremlin-language</artifactId>
 +                                <version>${project.version}</version>
 +                            </dependency>
 +                            <dependency>
++                                <groupId>org.apache.tinkerpop</groupId>
+                                 <artifactId>neo4j-gremlin</artifactId>
+                                 <version>${project.version}</version>
+                             </dependency>
+                             <dependency>
 -                                <groupId>log4j</groupId>
 -                                <artifactId>log4j</artifactId>
 -                                <version>${log4j.version}</version>
 +                                <groupId>ch.qos.logback</groupId>
 +                                <artifactId>logback-classic</artifactId>
 +                                <version>${logback.version}</version>
                                  <scope>runtime</scope>
                              </dependency>
                              <dependency>