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 2022/10/26 13:26:59 UTC

[tinkerpop] branch 3.5-dev updated (b694a2d44b -> d66ce688ed)

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

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


    from b694a2d44b Merge pull request #1832 from acoady/2815_3.5-dev
     add bb96489031 TINKERPOP-2471 Add logging to .NET
     new d66ce688ed Merge pull request #1827 from apache/TINKERPOP-2471

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:
 CHANGELOG.asciidoc                                 |  1 +
 docs/src/reference/gremlin-variants.asciidoc       | 11 +++
 docs/src/upgrade/release-3.5.x.asciidoc            | 18 ++++
 .../Gremlin.Net.Template.csproj                    |  3 +-
 gremlin-dotnet/src/Gremlin.Net.Template/Program.cs | 20 +++--
 .../src/Gremlin.Net/Driver/ConnectionPool.cs       | 16 +++-
 .../src/Gremlin.Net/Driver/GremlinClient.cs        | 23 +++--
 gremlin-dotnet/src/Gremlin.Net/Driver/Log.cs       | 46 ++++++++++
 .../Driver/Remote/DriverRemoteConnection.cs        | 69 +++++++--------
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |  3 +-
 .../src/Gremlin.Net/Process/Traversal/Bytecode.cs  |  6 ++
 .../Gremlin.Net/Process/Traversal/Instruction.cs   |  2 +-
 gremlin-dotnet/src/pom.xml                         |  2 +-
 .../Docs/Reference/GremlinVariantsTests.cs         | 15 +++-
 .../Driver/DriverRemoteConnectionTests.cs          | 97 ++++++++++++++++++++++
 .../Driver/GremlinClientTests.cs                   | 30 +++++++
 .../Driver/MockedLoggerExtensions.cs}              | 38 ++++-----
 .../Gremlin.Net.IntegrationTest.csproj             |  2 +
 .../Driver/ConnectionPoolTests.cs                  | 12 +--
 .../Process/Traversal/BytecodeTests.cs             | 14 ++++
 20 files changed, 346 insertions(+), 82 deletions(-)
 create mode 100644 gremlin-dotnet/src/Gremlin.Net/Driver/Log.cs
 create mode 100644 gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Driver/DriverRemoteConnectionTests.cs
 copy gremlin-dotnet/test/{Gremlin.Net.UnitTest/Driver/DriverRemoteConnectionTests.cs => Gremlin.Net.IntegrationTest/Driver/MockedLoggerExtensions.cs} (51%)


[tinkerpop] 01/01: Merge pull request #1827 from apache/TINKERPOP-2471

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

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

commit d66ce688ed9440b37e93405f6abe1fba4eb6f746
Merge: b694a2d44b bb96489031
Author: Florian Hockmann <fh...@florian-hockmann.de>
AuthorDate: Wed Oct 26 15:26:52 2022 +0200

    Merge pull request #1827 from apache/TINKERPOP-2471
    
    TINKERPOP-2471 Add logging to .NET

 CHANGELOG.asciidoc                                 |  1 +
 docs/src/reference/gremlin-variants.asciidoc       | 11 +++
 docs/src/upgrade/release-3.5.x.asciidoc            | 18 ++++
 .../Gremlin.Net.Template.csproj                    |  3 +-
 gremlin-dotnet/src/Gremlin.Net.Template/Program.cs | 20 +++--
 .../src/Gremlin.Net/Driver/ConnectionPool.cs       | 16 +++-
 .../src/Gremlin.Net/Driver/GremlinClient.cs        | 23 +++--
 gremlin-dotnet/src/Gremlin.Net/Driver/Log.cs       | 46 ++++++++++
 .../Driver/Remote/DriverRemoteConnection.cs        | 69 +++++++--------
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |  3 +-
 .../src/Gremlin.Net/Process/Traversal/Bytecode.cs  |  6 ++
 .../Gremlin.Net/Process/Traversal/Instruction.cs   |  2 +-
 gremlin-dotnet/src/pom.xml                         |  2 +-
 .../Docs/Reference/GremlinVariantsTests.cs         | 15 +++-
 .../Driver/DriverRemoteConnectionTests.cs          | 97 ++++++++++++++++++++++
 .../Driver/GremlinClientTests.cs                   | 30 +++++++
 .../Driver/MockedLoggerExtensions.cs}              | 41 +++++----
 .../Gremlin.Net.IntegrationTest.csproj             |  2 +
 .../Driver/ConnectionPoolTests.cs                  | 12 +--
 .../Process/Traversal/BytecodeTests.cs             | 14 ++++
 20 files changed, 348 insertions(+), 83 deletions(-)