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/11/26 00:04:21 UTC

[tinkerpop] branch TINKERPOP-2314 updated (10a1527 -> 035afd1)

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

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


 discard 10a1527  TINKERPOP-2314 Employ by(String) for Map when possible
     add 2d0fd64  Bump to Jackson databind 2.9.10.1 CTR
     add 20a5093  Merge branch 'tp33' into tp34
     add 050f66a  Pretty big javadoc cleanup.
     add c7461d7  Merge branch 'tp33' into tp34
     add 75e3acc  Javadoc fixes
     add fd0ecd6  A body of commits to debug/fix a failing travis test
     add f4e1df5  Increase default max wait time for a connection with java driver
     add a75cfb6  Move SSL tests to their own test class
     add adebb32  Break up server/console test builds for travis
     add 035afd1  TINKERPOP-2314 Employ by(String) for Map when possible

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   (10a1527)
            \
             N -- N -- N   refs/heads/TINKERPOP-2314 (035afd1)

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.

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |  10 +-
 .../gremlin-server-integration-secure.yaml         |   1 +
 .../gremlin-server/gremlin-server-integration.yaml |   1 +
 .../GephiTraversalVisualizationStrategy.groovy     |   2 +-
 .../gremlin/process/computer/ComputerResult.java   |   5 +-
 .../gremlin/process/computer/GraphComputer.java    |  51 ++--
 .../gremlin/process/computer/MapReduce.java        |  13 +-
 .../gremlin/process/computer/VertexProgram.java    |   6 +-
 .../computer/bulkloading/OneTimeBulkLoader.java    |   8 +-
 .../computer/traversal/step/VertexComputing.java   |   5 +-
 .../computer/util/DefaultComputerResult.java       |   6 +-
 .../remote/traversal/AbstractRemoteTraversal.java  |   4 +-
 .../process/remote/traversal/RemoteTraversal.java  |   2 +-
 .../gremlin/process/traversal/Bindings.java        |   5 +-
 .../gremlin/process/traversal/Compare.java         |   2 +-
 .../tinkerpop/gremlin/process/traversal/Step.java  |   9 +-
 .../gremlin/process/traversal/Traversal.java       |  17 +-
 .../process/traversal/TraversalSideEffects.java    |  10 +-
 .../gremlin/process/traversal/TraversalSource.java |  24 +-
 .../traversal/dsl/graph/GraphTraversal.java        |   8 +-
 .../gremlin/process/traversal/step/Barrier.java    |  10 +-
 .../gremlin/process/traversal/step/Bypassing.java  |   4 +-
 .../process/traversal/step/FromToModulating.java   |   5 +-
 .../process/traversal/step/GraphComputing.java     |   8 +-
 .../process/traversal/step/LambdaHolder.java       |   7 +-
 .../process/traversal/step/MemoryComputing.java    |   4 +-
 .../process/traversal/step/map/GroupStep.java      |   4 +-
 .../process/traversal/step/util/WithOptions.java   |  18 +-
 .../step/util/event/MutationListener.java          |   8 +-
 .../strategy/decoration/EventStrategy.java         |   2 +-
 .../traversal/util/FastNoSuchElementException.java |   4 +-
 .../process/traversal/util/TraversalMatrix.java    |   4 +-
 .../apache/tinkerpop/gremlin/structure/Column.java |   3 +-
 .../apache/tinkerpop/gremlin/structure/Graph.java  |  24 +-
 .../tinkerpop/gremlin/structure/Property.java      |   2 +-
 .../gremlin/structure/VertexProperty.java          |   2 +-
 .../gremlin/structure/io/GraphMigrator.java        |   2 +-
 .../tinkerpop/gremlin/structure/io/IoCore.java     |   6 +-
 .../structure/io/graphml/GraphMLWriter.java        |   2 +-
 .../structure/io/graphson/GraphSONReader.java      |   5 +-
 .../io/gryo/VertexByteArrayInputStream.java        |   4 +-
 .../structure/io/gryo/kryoshim/InputShim.java      |   5 +-
 .../structure/io/gryo/kryoshim/KryoShim.java       |   5 +-
 .../structure/io/gryo/kryoshim/OutputShim.java     |   5 +-
 .../structure/io/gryo/kryoshim/SerializerShim.java |   5 +-
 .../gremlin/structure/util/ElementHelper.java      |  38 +--
 .../gremlin/structure/util/GraphFactory.java       |  17 +-
 .../gremlin/structure/util/StringFactory.java      |   8 +-
 .../util/star/StarGraphGraphSONDeserializer.java   |   8 +-
 .../gremlin/util/function/TriConsumer.java         |   2 +-
 .../apache/tinkerpop/gremlin/driver/Client.java    |   6 +-
 .../tinkerpop/gremlin/driver/Connection.java       |   2 +-
 .../apache/tinkerpop/gremlin/driver/Settings.java  |   2 +-
 .../driver/ser/AbstractMessageSerializer.java      |   7 +-
 .../ser/GraphSONMessageSerializerGremlinV2d0.java  |   3 +-
 .../driver/ser/GraphSONMessageSerializerV3d0.java  |   3 +-
 .../tinkerpop/gremlin/driver/ser/Serializers.java  |   6 +-
 .../gremlin/groovy/engine/GremlinExecutor.java     |  13 +-
 .../gremlin/server/AbstractChannelizer.java        |   6 +-
 .../apache/tinkerpop/gremlin/server/Context.java   |   3 +-
 .../tinkerpop/gremlin/server/GremlinServer.java    |   2 +-
 .../gremlin/server/channel/NioChannelizer.java     |   4 +-
 .../server/channel/WebSocketChannelizer.java       |   4 +-
 .../gremlin/server/op/AbstractEvalOpProcessor.java |   3 +-
 .../gremlin/server/op/session/Session.java         |   8 +-
 .../server/op/session/SessionOpProcessor.java      |   7 +-
 .../server/op/standard/StandardOpProcessor.java    |   2 +-
 .../gremlin/server/GremlinServerIntegrateTest.java | 329 +-------------------
 .../server/GremlinServerSessionIntegrateTest.java  |  46 +--
 .../server/GremlinServerSslIntegrateTest.java      | 340 +++++++++++++++++++++
 .../gremlin/server/gremlin-server-integration.yaml |   1 +
 gremlin-shaded/pom.xml                             |   2 +-
 .../tinkerpop/gremlin/AbstractGraphProvider.java   |   2 +-
 .../tinkerpop/gremlin/AbstractGremlinSuite.java    |  13 +-
 .../tinkerpop/gremlin/FeatureRequirementSet.java   |   3 +-
 .../org/apache/tinkerpop/gremlin/GraphHelper.java  |   2 +-
 .../apache/tinkerpop/gremlin/GraphProvider.java    |  11 +-
 .../apache/tinkerpop/gremlin/LoadGraphWith.java    |   3 +-
 .../algorithm/generator/AbstractGenerator.java     |   6 +-
 .../gremlin/structure/FeatureSupportTest.java      |  22 +-
 .../gremlin/structure/GraphConstructionTest.java   |   6 +-
 .../tinkerpop/gremlin/structure/GraphTest.java     |   2 +-
 .../tinkerpop/gremlin/structure/PropertyTest.java  |  12 +-
 .../tinkerpop/gremlin/structure/VariablesTest.java |  19 +-
 .../gremlin/process/GraphMutateBenchmark.java      |   5 +-
 .../gremlin/process/GraphTraversalBenchmark.java   |   4 +-
 .../apache/tinkerpop/gremlin/hadoop/Constants.java |   4 +-
 .../hadoop/structure/io/GraphFilterAware.java      |   9 +-
 .../structure/io/script/ScriptInputFormat.java     |   6 +-
 .../structure/io/script/ScriptOutputFormat.java    |   8 +-
 .../gremlin/neo4j/structure/Neo4jGraph.java        |   2 +-
 .../gremlin/spark/structure/io/InputRDD.java       |   8 +-
 .../gremlin/spark/structure/io/OutputRDD.java      |   8 +-
 .../gremlin/tinkergraph/structure/TinkerGraph.java |   7 +-
 .../structure/TinkerIoRegistryV2d0.java            |   8 +-
 .../structure/TinkerIoRegistryV3d0.java            |   4 +-
 96 files changed, 739 insertions(+), 644 deletions(-)
 create mode 100644 gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSslIntegrateTest.java