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

kenhuuu pushed a change to branch v4-java-interceptor
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 16e29ccb01 Update RequestInterceptor to better work with HTTP.
     add ad850719ab Updates to Strategy Construction for TP4 (#2781)
     add 6db623c37f Custom Strategy Construction (#2806)
     add 8acda807fe Revert change to code value in GraphSONv4 CTR.
     add f0e973d710 Merge pull request #2790
     add 132584eb60 Make properties optional in GraphSONv4 again CTR
     add 8380c37dd4 CTR Fix ignores for SeedStrategy feature tests
     add 0f798424f8 Update `DateTime` serializer according to GraphBinaryV4 IO 
specs  (#2776)
     add 287f8aa61f Update serializers for `label` as a singleton list of 
string according to GraphBinaryV4 IO spec. (#2780)
     add 26902f9eaf Added ordered `value_flag` `0x02` to Map serializers in 
Java and Python drivers according to GraphBinaryV4 IO spec. (#2779)
     add 8d9cc28d3e Fix typename for datetime in GraphSON example CTR
     add 2baa71dd53 Fix NullPointerException being thrown by outbound encoder. 
(#2800)
     add 3d69b6c15e CTR Fix Python Translator for withoutStrategies()
     add caef5c0920 Update RequestInterceptor to better work with HTTP.

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   (16e29ccb01)
            \
             N -- N -- N   refs/heads/v4-java-interceptor (caef5c0920)

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:
 CHANGELOG.asciidoc                                 |  11 +
 docs/src/dev/developer/for-committers.asciidoc     |   3 +-
 docs/src/dev/io/graphson.asciidoc                  | 108 ++---
 docs/src/upgrade/release-4.x.x.asciidoc            |  50 ++
 .../tinkerpop/gremlin/jsr223/CoreImports.java      |  10 +
 .../jsr223/DefaultGremlinScriptEngineManager.java  |   2 +-
 .../gremlin/language/grammar/ArgumentVisitor.java  |   6 +-
 .../language/grammar/GenericLiteralVisitor.java    |   6 +-
 .../translator/DotNetTranslateVisitor.java         |   8 +-
 .../language/translator/GoTranslateVisitor.java    |  11 +-
 .../translator/GroovyTranslateVisitor.java         |  23 +
 .../language/translator/JavaTranslateVisitor.java  |   9 +-
 .../translator/JavascriptTranslateVisitor.java     |   9 +-
 .../translator/PythonTranslateVisitor.java         |  30 +-
 .../gremlin/process/traversal/GremlinLang.java     |  22 +-
 .../process/traversal/TraversalStrategies.java     |   7 +-
 .../traversal/dsl/graph/GraphTraversal.java        |  18 +-
 .../gremlin/process/traversal/dsl/graph/__.java    |  11 +-
 .../process/traversal/step/map/AsDateStep.java     |  24 +-
 .../process/traversal/step/map/DateAddStep.java    |  49 +-
 .../process/traversal/step/map/DateDiffStep.java   |  23 +-
 .../traversal/strategy/TraversalStrategyProxy.java |  41 +-
 .../strategy/decoration/ElementIdStrategy.java     |  16 +-
 .../strategy/decoration/OptionsStrategy.java       |   2 +-
 .../gremlin/structure/io/binary/DataType.java      |  37 +-
 .../structure/io/binary/GraphBinaryWriter.java     |  10 +
 .../io/binary/TypeSerializerRegistry.java          |  93 +---
 .../structure/io/binary/types/ClassSerializer.java |  47 --
 .../structure/io/binary/types/DateSerializer.java  |  54 ---
 ...TimeSerializer.java => DateTimeSerializer.java} |  19 +-
 .../structure/io/binary/types/EdgeSerializer.java  |  20 +-
 .../structure/io/binary/types/EnumSerializer.java  |  10 -
 .../structure/io/binary/types/GraphSerializer.java |  19 +-
 .../io/binary/types/InetAddressSerializer.java     |  56 ---
 .../io/binary/types/InstantSerializer.java         |  46 --
 .../io/binary/types/LambdaSerializer.java          |  59 ---
 .../io/binary/types/LocalDateSerializer.java       |  46 --
 .../io/binary/types/LocalDateTimeSerializer.java   |  50 --
 .../io/binary/types/LocalTimeSerializer.java       |  46 --
 .../structure/io/binary/types/MapSerializer.java   |  29 ++
 .../io/binary/types/MetricsSerializer.java         |  67 ---
 .../io/binary/types/MonthDaySerializer.java        |  46 --
 .../io/binary/types/OffsetTimeSerializer.java      |  51 ---
 .../io/binary/types/PeriodSerializer.java          |  46 --
 .../io/binary/types/SimpleTypeSerializer.java      |  12 +-
 .../io/binary/types/SingleTypeSerializer.java      |   2 -
 .../binary/types/TraversalMetricsSerializer.java   |  53 ---
 .../binary/types/TraversalStrategySerializer.java  |  68 ---
 .../io/binary/types/VertexPropertySerializer.java  |   8 +-
 .../io/binary/types/VertexSerializer.java          |  10 +-
 .../io/binary/types/YearMonthSerializer.java       |  46 --
 .../io/binary/types/ZoneOffsetSerializer.java      |  47 --
 .../io/binary/types/ZonedDateTimeSerializer.java   |  51 ---
 .../io/graphson/GraphSONSerializersV4.java         |  70 ++-
 .../structure/io/graphson/GraphSONXModuleV4.java   |   4 +-
 .../tinkerpop/gremlin/util/DatetimeHelper.java     |  26 +-
 .../jsr223/GremlinLangScriptEngineTest.java        |  66 +++
 .../grammar/GeneralLiteralVisitorTest.java         |  39 +-
 .../language/translator/GremlinTranslatorTest.java |  23 +-
 .../process/traversal/step/map/AsDateStepTest.java |  16 +-
 .../traversal/step/map/DateAddStepTest.java        |  45 +-
 .../traversal/step/map/DateDiffStepTest.java       |  44 +-
 .../strategy/TraversalStrategyProxyTest.java       |  64 +++
 .../graphson/GraphSONMapperEmbeddedTypeTest.java   |  25 +-
 .../GraphSONMapperPartialEmbeddedTypeTest.java     |   6 +-
 .../structure/io/graphson/GraphSONMapperTest.java  |  24 +-
 .../tinkerpop/gremlin/util/DatetimeHelperTest.java |  54 +--
 .../driver/handler/GremlinResponseHandler.java     |   9 +
 .../driver/handler/HttpGremlinRequestEncoder.java  |  23 +-
 .../jsr223/GremlinGroovyScriptEngineTest.java      |  62 +++
 .../gremlin-javascript/test/cucumber/gremlin.js    |  74 +++
 gremlin-python/build/generate.groovy               |   2 +-
 .../gremlin_python/process/graph_traversal.py      |   2 +-
 .../python/gremlin_python/process/strategies.py    |  37 +-
 .../python/gremlin_python/process/traversal.py     | 134 +-----
 .../src/main/python/gremlin_python/statics.py      |   8 -
 .../gremlin_python/structure/io/graphbinaryV4.py   | 508 ++++-----------------
 .../src/main/python/radish/feature_steps.py        |   2 +-
 gremlin-python/src/main/python/radish/gremlin.py   |  98 +++-
 .../src/main/python/tests/driver/test_client.py    |   2 +-
 .../tests/driver/test_driver_remote_connection.py  |  12 +-
 .../main/python/tests/process/test_gremlin_lang.py |   4 +-
 .../main/python/tests/process/test_strategies.py   |  16 +-
 .../main/python/tests/process/test_traversal.py    |   1 -
 .../src/main/python/tests/structure/io/model.py    |   4 +-
 .../tests/structure/io/test_functionalityio.py     |  27 +-
 .../tests/structure/io/test_graphbinaryV4.py       |  59 ++-
 .../tests/structure/io/test_graphbinaryv4model.py  |   2 +
 .../driver/remote/AbstractRemoteGraphProvider.java |   2 +-
 .../GraphBinaryGroovyRemoteGraphProvider.java      |   5 -
 .../GraphBinaryRemoteComputerFeatureTest.java      |   3 +-
 .../server/GremlinServerAuthzIntegrateTest.java    |  15 -
 .../server/GremlinServerHttpIntegrateTest.java     |   4 +-
 .../gremlin/server/GremlinServerIntegrateTest.java |   1 +
 .../server/GremlinServerSslIntegrateTest.java      |  22 +-
 .../process/traversal/step/OrderabilityTest.java   |  13 +-
 .../EarlyLimitStrategyProcessTest.java             |   2 +
 .../io/graphbinary/bulked-traverser-v4.gbin        | Bin 81 -> 93 bytes
 .../io/graphbinary/max-offsetdatetime-v4.gbin      | Bin 20 -> 20 bytes
 .../io/graphbinary/meta-vertexproperty-v4.gbin     | Bin 55 -> 61 bytes
 .../io/graphbinary/min-offsetdatetime-v4.gbin      | Bin 20 -> 20 bytes
 .../structure/io/graphbinary/no-prop-edge-v4.gbin  | Bin 62 -> 80 bytes
 .../io/graphbinary/no-prop-vertex-v4.gbin          | Bin 24 -> 30 bytes
 .../structure/io/graphbinary/prop-path-v4.gbin     | Bin 575 -> 635 bytes
 .../set-cardinality-vertexproperty-v4.gbin         | Bin 72 -> 78 bytes
 .../structure/io/graphbinary/tinker-graph-v4.gbin  | Bin 2264 -> 2504 bytes
 .../io/graphbinary/traversal-edge-v4.gbin          | Bin 81 -> 99 bytes
 .../io/graphbinary/traversal-path-v4.gbin          | Bin 108 -> 126 bytes
 .../io/graphbinary/traversal-tree-v4.gbin          | Bin 152 -> 176 bytes
 .../io/graphbinary/traversal-vertex-v4.gbin        | Bin 405 -> 441 bytes
 .../graphbinary/traversal-vertexproperty-v4.gbin   | Bin 39 -> 45 bytes
 .../structure/io/graphbinary/var-type-map-v4.gbin  | Bin 79 -> 99 bytes
 .../io/graphbinary/vertex-traverser-v4.gbin        | Bin 415 -> 451 bytes
 .../structure/io/graphson/bulked-traverser-v4.json |   4 +-
 .../structure/io/graphson/empty-binary-v4.json     |   2 +-
 .../structure/io/graphson/forever-duration-v4.json |   2 +-
 .../gremlin/structure/io/graphson/max-byte-v4.json |   2 +-
 .../io/graphson/max-offsetdatetime-v4.json         |   2 +-
 .../structure/io/graphson/max-short-v4.json        |   2 +-
 .../io/graphson/meta-vertexproperty-v4.json        |   2 +-
 .../gremlin/structure/io/graphson/min-byte-v4.json |   2 +-
 .../io/graphson/min-offsetdatetime-v4.json         |   2 +-
 .../structure/io/graphson/min-short-v4.json        |   2 +-
 .../structure/io/graphson/multi-byte-char-v4.json  |   2 +-
 .../structure/io/graphson/neg-bigdecimal-v4.json   |   2 +-
 .../structure/io/graphson/neg-biginteger-v4.json   |   2 +-
 .../structure/io/graphson/no-prop-edge-v4.json     |   6 +-
 .../structure/io/graphson/no-prop-vertex-v4.json   |   2 +-
 .../structure/io/graphson/pos-bigdecimal-v4.json   |   2 +-
 .../structure/io/graphson/pos-biginteger-v4.json   |   2 +-
 .../structure/io/graphson/prop-path-v4.json        |  20 +-
 .../set-cardinality-vertexproperty-v4.json         |   2 +-
 .../structure/io/graphson/single-byte-char-v4.json |   2 +-
 .../structure/io/graphson/str-binary-v4.json       |   2 +-
 .../structure/io/graphson/tinker-graph-v4.json     | 190 ++++----
 .../io/graphson/traversal-edge-v4-no-types.json    |   8 +-
 .../structure/io/graphson/traversal-edge-v4.json   |  10 +-
 .../io/graphson/traversal-path-v4-no-types.json    |   6 +-
 .../structure/io/graphson/traversal-path-v4.json   |   6 +-
 .../structure/io/graphson/traversal-tree-v4.json   |   8 +-
 .../io/graphson/traversal-vertex-v4-no-types.json  |   2 +-
 .../structure/io/graphson/traversal-vertex-v4.json |  12 +-
 .../traversal-vertexproperty-v4-no-types.json      |   2 +-
 .../io/graphson/traversal-vertexproperty-v4.json   |   2 +-
 .../structure/io/graphson/vertex-traverser-v4.json |  12 +-
 .../structure/io/graphson/zero-duration-v4.json    |   2 +-
 .../AdjacentToIncidentStrategy.feature}            |  44 +-
 .../ByModulatorOptimizationStrategy.feature}       |  42 +-
 .../ComputerFinalizationStrategy.feature}          |  30 +-
 .../ComputerVerificationStrategy.feature}          |  30 +-
 .../ConnectiveStrategy.feature}                    |  31 +-
 .../CountStrategy.feature}                         |  32 +-
 .../EarlyLimitStrategy.feature}                    |  36 +-
 .../EdgeLabelVerificationStrategy.feature}         |  65 +--
 .../ElementIdStrategy.feature}                     |  30 +-
 .../FilterRankingStrategy.feature}                 |  30 +-
 .../GraphFilterStrategy.feature}                   |  30 +-
 .../HaltedTraverserStrategy.feature}               |  49 +-
 .../IdentityRemovalStrategy.feature}               |  38 +-
 .../IncidentToAdjacentStrategy.feature}            |  38 +-
 .../InlineFilterStrategy.feature}                  |  30 +-
 .../LambdaRestrictionStrategy.feature}             |  32 +-
 .../LazyBarrierStrategy.feature}                   |  30 +-
 .../integrated/MatchAlgorithmStrategy.feature      |  63 +++
 .../integrated/MatchPredicateStrategy.feature      |  49 ++
 .../MessagePassingReductionStrategy.feature}       |  30 +-
 .../OptionsStrategy.feature}                       |  38 +-
 .../OrderLimitStrategy.feature}                    |  30 +-
 .../PathProcessorStrategy.feature}                 |  43 +-
 .../PathRetractionStrategy.feature}                |  30 +-
 .../ProductiveByStrategy.feature}                  |  32 +-
 .../ProfileStrategy.feature}                       |  30 +-
 .../ReferenceElementStrategy.feature}              |  30 +-
 .../RepeatUnrollStrategy.feature}                  |  30 +-
 .../ReservedKeysVerificationStrategy.feature       |  50 ++
 .../SeedStrategy.feature}                          |  34 +-
 .../StandardVerificationStrategy.feature}          |  30 +-
 .../VertexProgramRestrictionStrategy.feature}      |  59 +--
 .../VertexProgramStrategy.feature}                 |  30 +-
 .../gremlin/test/features/map/AsDate.feature       |   1 +
 .../gremlin/test/features/map/DateAdd.feature      |   1 +
 .../io/AbstractTypedCompatibilityTest.java         |   3 +-
 .../io/AbstractUntypedCompatibilityTest.java       |  33 +-
 .../tinkerpop/gremlin/structure/io/Model.java      |   6 +-
 .../gremlin/util/ser/AbstractRoundTripTest.java    |  69 +--
 .../util/ser/binary/types/sample/SamplePerson.java |   8 +-
 .../types/sample/SamplePersonSerializer.java       |   4 +-
 .../types/sample/SamplePersonSerializerTest.java   |   7 +-
 .../spark/SparkGraphFeatureIntegrateTest.java      |   2 +-
 .../tinkergraph/structure/TinkerIoRegistryV4.java  |   2 +-
 .../TinkerGraphComputerFeatureTest.java            |   2 +-
 .../TinkerTransactionGraphComputerFeatureTest.java |   2 +-
 192 files changed, 2010 insertions(+), 2987 deletions(-)
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/ClassSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/DateSerializer.java
 rename 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/{OffsetDateTimeSerializer.java
 => DateTimeSerializer.java} (68%)
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/InetAddressSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/InstantSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/LambdaSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/LocalDateSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/LocalDateTimeSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/LocalTimeSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/MetricsSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/MonthDaySerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/OffsetTimeSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/PeriodSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/TraversalMetricsSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/TraversalStrategySerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/YearMonthSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/ZoneOffsetSerializer.java
 delete mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/ZonedDateTimeSerializer.java
 create mode 100644 
gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/TraversalStrategyProxyTest.java
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{map/Fold.feature
 => integrated/AdjacentToIncidentStrategy.feature} (67%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/ByModulatorOptimizationStrategy.feature} (63%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/ComputerFinalizationStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/ComputerVerificationStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/ConnectiveStrategy.feature} (63%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/CountStrategy.feature} (65%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/EarlyLimitStrategy.feature} (63%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{map/Fold.feature
 => integrated/EdgeLabelVerificationStrategy.feature} (56%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/ElementIdStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/FilterRankingStrategy.feature} (67%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/GraphFilterStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{map/Fold.feature
 => integrated/HaltedTraverserStrategy.feature} (63%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/IdentityRemovalStrategy.feature} (66%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/IncidentToAdjacentStrategy.feature} (66%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/InlineFilterStrategy.feature} (64%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/LambdaRestrictionStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{sideEffect/Fail.feature
 => integrated/LazyBarrierStrategy.feature} (65%)
 create mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/integrated/MatchAlgorithmStrategy.feature
 create mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/integrated/MatchPredicateStrategy.feature
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/MessagePassingReductionStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Or.feature
 => integrated/OptionsStrategy.feature} (68%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/OrderLimitStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/PathProcessorStrategy.feature} (61%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/PathRetractionStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/ProductiveByStrategy.feature} (62%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/ProfileStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/ReferenceElementStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/RepeatUnrollStrategy.feature} (65%)
 create mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/integrated/ReservedKeysVerificationStrategy.feature
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/SeedStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/StandardVerificationStrategy.feature} (70%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{map/Fold.feature
 => integrated/VertexProgramRestrictionStrategy.feature} (60%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => integrated/VertexProgramStrategy.feature} (70%)

Reply via email to