You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2019/02/14 19:15:58 UTC

[tinkerpop] branch TINKERPOP-2134 updated (c7af254 -> e181a43)

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

spmallette pushed a change to branch TINKERPOP-2134
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


 discard c7af254  f
 discard 945525e  TINKERPOP-2134 Bump to Groovy 2.5.6
     new f799335  GraphBinary: use exception instead of assertion for msb check CTR
     new 8061512  Avoid using ByteBuf#readCharSequence() for Netty 4.0 compat CTR
     new e21e225  Dynamically register SparqlStrategy for GraphSON CTR
     new a8becb8  Fixed bad download links on home page - grrrr CTR
     new a30ff44  Bump to kerby 1.0.0 CTR
     new 22eaae7  Merge branch 'tp33'
     new 91a9051  Updated NOTICE copyright date CTR
     new 56687a1  Add LICENSE and NOTICE for javascript
     new bb43b91  Merge branch 'tp33'
     new c66c497  TINKERPOP-2154 GraphBinary: Release working buffers on failure
     new c2a0d4b  TINKERPOP-2154 fix add missing license to file
     new 5bf5503  TINKERPOP-2154 changelog
     new c710445  Merge pull request #1058 from apache/TINKERPOP-2154
     new c8502ab  Updated nuget packages to have LICENSE/NOTICE in them
     new 2d68758  Pinned more_itertools in gremlin_python
     new 095cfb6  Removed unecessary build steps in dotnet and js CTR
     new a726cc3  Merge branch 'tp33'
     new 03f9274  Changed loop break check to break out of the connection creation loop if greater than or equal to the expected amount of connections are created
     new 54912dd  Merge pull request #1057 from IsaacBoy/TINKERPOP-2155
     new b1a7e04  fix: Path#toString() variable reference bug
     new d1985b7  Merge pull request #1056 from thefliik/patch-1
     new e11cbe1  Added changelog entries for recent PRs CTR
     new bb67885  Use clean plugin to kill .NET directories generated during builds
     new 4af04a3  Merge branch 'tp33'
     new 29a9a7b  Added retry to some tests that were timer based
     new b10d96f  Merge branch 'tp33'
     new e181a43  TINKERPOP-2134 Bump to Groovy 2.5.6

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c7af254)
            \
             N -- N -- N   refs/heads/TINKERPOP-2134 (e181a43)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 14943 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                                 |   4 +
 NOTICE                                             |   6 +-
 docs/site/home/index.html                          |   6 +-
 gremlin-console/src/main/static/NOTICE             |   2 +-
 .../structure/io/graphson/GraphSONModule.java      |  21 ++++
 .../src/main/jython => gremlin-dotnet}/LICENSE     |   0
 gremlin-dotnet/NOTICE                              |   5 +
 .../glv/Gremlin.Net.Template.nuspec.template       |   6 +-
 gremlin-dotnet/glv/Gremlin.Net.csproj.template     |   5 +
 gremlin-dotnet/pom.xml                             |  20 ++++
 .../Gremlin.Net.Template.nuspec                    |   6 +-
 .../src/Gremlin.Net/Driver/ConnectionPool.cs       |   4 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |   5 +
 gremlin-dotnet/src/pom.xml                         |  25 ++++-
 gremlin-dotnet/test/pom.xml                        |  23 +++-
 .../driver/ser/binary/GraphBinaryWriter.java       |  21 ++--
 .../ser/binary/RequestMessageSerializer.java       |   9 +-
 .../ser/binary/ResponseMessageSerializer.java      |   9 +-
 .../driver/ser/binary/types/BindingSerializer.java |   9 +-
 .../driver/ser/binary/types/BulkSetSerializer.java |  12 ++-
 .../ser/binary/types/ByteCodeSerializer.java       |  25 +++--
 .../ser/binary/types/CollectionSerializer.java     |  10 +-
 .../ser/binary/types/CustomTypeSerializer.java     |   3 -
 .../driver/ser/binary/types/EdgeSerializer.java    |  33 +++---
 .../driver/ser/binary/types/GraphSerializer.java   |  79 +++++++++-----
 .../driver/ser/binary/types/LambdaSerializer.java  |  14 ++-
 .../driver/ser/binary/types/MapSerializer.java     |  14 ++-
 .../driver/ser/binary/types/MetricsSerializer.java |  27 +++--
 .../driver/ser/binary/types/PathSerializer.java    |  11 +-
 .../driver/ser/binary/types/StringSerializer.java  |   6 +-
 .../binary/types/TraversalMetricsSerializer.java   |  16 ++-
 .../binary/types/TraversalStrategySerializer.java  |  11 +-
 .../ser/binary/types/TraverserSerializer.java      |  11 +-
 .../driver/ser/binary/types/TreeSerializer.java    |  16 ++-
 .../ser/binary/types/VertexPropertySerializer.java |  23 ++--
 .../driver/ser/binary/types/VertexSerializer.java  |  19 ++--
 .../binary/GraphBinaryMessageSerializerV1Test.java |   9 ++
 .../ser/binary/TypeSerializerFailureTests.java     | 116 +++++++++++++++++++++
 gremlin-javascript/pom.xml                         |  30 ++++--
 .../main/javascript/gremlin-javascript}/LICENSE    |   0
 .../src/main/javascript/gremlin-javascript/NOTICE  |   5 +
 .../gremlin-javascript/lib/structure/graph.js      |   4 +-
 gremlin-python/pom.xml                             |   1 -
 gremlin-python/src/main/jython/NOTICE              |   2 +-
 gremlin-python/src/main/jython/setup.py            |   3 +
 gremlin-server/pom.xml                             |   2 +-
 .../tinkerpop/gremlin/server/auth/JaasKrbUtil.java |  15 +--
 gremlin-server/src/main/static/NOTICE              |   2 +-
 .../gremlin/server/GremlinDriverIntegrateTest.java |  30 ++++--
 gremlin-test/pom.xml                               |   2 +-
 hadoop-gremlin/pom.xml                             |   9 ++
 .../hadoop/structure/io/ObjectWritable.java        |   2 +-
 pom.xml                                            |   5 +
 53 files changed, 593 insertions(+), 160 deletions(-)
 copy {gremlin-python/src/main/jython => gremlin-dotnet}/LICENSE (100%)
 create mode 100644 gremlin-dotnet/NOTICE
 create mode 100644 gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/driver/ser/binary/TypeSerializerFailureTests.java
 copy {gremlin-python/src/main/jython => gremlin-javascript/src/main/javascript/gremlin-javascript}/LICENSE (100%)
 create mode 100644 gremlin-javascript/src/main/javascript/gremlin-javascript/NOTICE