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 2020/04/09 08:42:06 UTC

[tinkerpop] branch master updated (86e0fe9 -> 0ea7336)

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 86e0fe9  Merge branch '3.4-dev'
     add 0ea7336   TINKERPOP-2349 Migrate to System.Text.Json

No new revisions were added by this update.

Summary of changes:
 docs/src/upgrade/release-3.5.x.asciidoc            |  13 +
 gremlin-dotnet/glv/Gremlin.Net.csproj.template     |  10 +-
 .../src/Gremlin.Net/Driver/Connection.cs           |   7 +-
 .../Gremlin.Net/Driver/JsonMessageSerializer.cs    |  12 +-
 .../Gremlin.Net/Driver/Messages/ResponseMessage.cs |   6 +-
 .../Gremlin.Net/Driver/Messages/ResponseResult.cs  |   9 +-
 .../Gremlin.Net/Driver/Messages/ResponseStatus.cs  |   8 +-
 .../Driver/SingleMessageResultReceiver.cs          |   6 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |  10 +-
 .../IO/GraphSON/BigIntegerDeserializer.cs          |   7 +-
 .../Structure/IO/GraphSON/BulkSetSerializer.cs     |  14 +-
 .../IO/GraphSON/ByteBufferDeserializer.cs          |   6 +-
 .../Structure/IO/GraphSON/ByteConverter.cs         |   6 +-
 .../Structure/IO/GraphSON/CharConverter.cs         |  10 +-
 .../Structure/IO/GraphSON/DateDeserializer.cs      |   6 +-
 .../Structure/IO/GraphSON/DecimalConverter.cs      |  14 +-
 .../Structure/IO/GraphSON/DirectionDeserializer.cs |   6 +-
 .../Structure/IO/GraphSON/DoubleConverter.cs       |  45 +-
 .../Structure/IO/GraphSON/DurationDeserializer.cs  |   6 +-
 .../Structure/IO/GraphSON/EdgeDeserializer.cs      |  22 +-
 .../Structure/IO/GraphSON/FloatConverter.cs        |   6 +-
 .../Structure/IO/GraphSON/GraphSONReader.cs        |  64 ++-
 .../Structure/IO/GraphSON/GraphSONWriter.cs        |   9 +-
 .../Structure/IO/GraphSON/IGraphSONDeserializer.cs |   4 +-
 .../Structure/IO/GraphSON/Int16Converter.cs        |   7 +-
 .../Structure/IO/GraphSON/Int32Converter.cs        |   7 +-
 .../Structure/IO/GraphSON/Int64Converter.cs        |   7 +-
 .../Structure/IO/GraphSON/ListSerializer.cs        |  15 +-
 .../Structure/IO/GraphSON/MapSerializer.cs         |  16 +-
 .../Structure/IO/GraphSON/NumberConverter.cs       |  17 +-
 .../Structure/IO/GraphSON/Path3Deserializer.cs     |   8 +-
 .../Structure/IO/GraphSON/PathDeserializer.cs      |  12 +-
 .../Structure/IO/GraphSON/PropertyDeserializer.cs  |  12 +-
 .../Structure/IO/GraphSON/SetSerializer.cs         |  10 +-
 .../Structure/IO/GraphSON/TDeserializer.cs         |   6 +-
 .../Structure/IO/GraphSON/TraverserReader.cs       |   8 +-
 .../Structure/IO/GraphSON/UuidDeserializer.cs      |   8 +-
 .../Structure/IO/GraphSON/VertexDeserializer.cs    |  10 +-
 .../IO/GraphSON/VertexPropertyDeserializer.cs      |  14 +-
 .../Docs/Dev/Provider/IndexTests.cs                |   8 +-
 .../Driver/GremlinClientTests.cs                   |  42 +-
 .../Gherkin/CommonSteps.cs                         |  63 ++-
 .../Driver/JsonMessageSerializerTests.cs           |  11 +-
 .../Gremlin.Net.UnitTest.csproj                    |   1 -
 .../Structure/IO/GraphSON/GraphSONReaderTests.cs   | 572 +++++++++++----------
 .../Structure/IO/GraphSON/GraphSONWriterTests.cs   |   2 +
 46 files changed, 644 insertions(+), 518 deletions(-)