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 2018/10/08 20:31:53 UTC

[tinkerpop] branch tp33 updated (88b5347 -> 57b003a)

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

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


    from 88b5347  CTR: added missing import
     add b6478d6  Initial Commit for TINKERPOP-1959 solution.
     add c04ddae  Refactor of RemoteStrategy apply()
     add 090f139  Fix on eval() incorrect documentation
     add 3f87545  Fixed issue where eval was added to wrong class in GraphTravesal
     add a8e5454  Client and Translator classes for better handling of scripts
     add e464d82  Fix for numbers not being translated correctly in the bytecode translator
     add 12e8350  Changed Client implementation to wrap DriverRemoteConnection
     add cbedb32  Test added to Client to confirm correct handling of non JS native types. Changed script submission to accept GraphSON v2. Reverted TraversalSource template to original. Removed configuration of standardOp Processor. Updated CHANGELOG and upgrade documentation.
     add d43031a  Merge branch 'pr-922' into TINKERPOP-1959
     add ad624be  TINKERPOP-1959 Handled EnumValue serialization in script bindings
     add 67e56dd  TINKERPOP-1959 Refactored request arg serialization to be more general
     add 54a12eb  TINKERPOP-1959 Minor fixes to upgrade docs
     add 6132b7a  TINKERPOP-1959 Minor fix to upgrade docs
     add fe6149a  Merge branch 'TINKERPOP-1959' into TINKERPOP-1959-tp33
     new 57b003a  Merge pull request #956 from apache/TINKERPOP-1959-tp33

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                                 |  2 +
 docs/src/upgrade/release-3.2.x-incubating.asciidoc | 41 ++++++++++
 .../main/javascript/gremlin-javascript/index.js    |  6 +-
 .../gremlin-javascript/lib/driver/client.js        | 87 ++++++++++++++++++++
 .../lib/driver/driver-remote-connection.js         | 32 +++++---
 .../lib/driver/remote-connection.js                |  6 +-
 .../gremlin-javascript/lib/process/bytecode.js     |  4 +-
 .../gremlin-javascript/lib/process/translator.js   | 93 ++++++++++++++++++++++
 .../javascript/gremlin-javascript/test/helper.js   |  5 ++
 ...{remote-connection-tests.js => client-tests.js} | 37 ++++++---
 .../gremlin-javascript/test/unit/graphson-test.js  |  4 +
 .../test/unit/translator-test.js                   | 68 ++++++++++++++++
 .../gremlin/server/gremlin-server-integration.yaml |  1 +
 13 files changed, 356 insertions(+), 30 deletions(-)
 create mode 100644 gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/client.js
 create mode 100644 gremlin-javascript/src/main/javascript/gremlin-javascript/lib/process/translator.js
 copy gremlin-javascript/src/main/javascript/gremlin-javascript/test/integration/{remote-connection-tests.js => client-tests.js} (57%)
 create mode 100644 gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/translator-test.js


[tinkerpop] 01/01: Merge pull request #956 from apache/TINKERPOP-1959-tp33

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

spmallette pushed a commit to branch tp33
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 57b003af27e81a0424ce144e81a754e0212e3565
Merge: 88b5347 fe6149a
Author: stephen mallette <sp...@users.noreply.github.com>
AuthorDate: Mon Oct 8 16:31:48 2018 -0400

    Merge pull request #956 from apache/TINKERPOP-1959-tp33
    
    TINKERPOP-1959 submit scripts in javascript [tp33]

 CHANGELOG.asciidoc                                 |  2 +
 docs/src/upgrade/release-3.2.x-incubating.asciidoc | 41 ++++++++++
 .../main/javascript/gremlin-javascript/index.js    |  6 +-
 .../gremlin-javascript/lib/driver/client.js        | 87 ++++++++++++++++++++
 .../lib/driver/driver-remote-connection.js         | 32 +++++---
 .../lib/driver/remote-connection.js                |  6 +-
 .../gremlin-javascript/lib/process/bytecode.js     |  4 +-
 .../gremlin-javascript/lib/process/translator.js   | 93 ++++++++++++++++++++++
 .../javascript/gremlin-javascript/test/helper.js   |  5 ++
 .../test/integration/client-tests.js               | 73 +++++++++++++++++
 .../gremlin-javascript/test/unit/graphson-test.js  |  4 +
 .../test/unit/translator-test.js                   | 68 ++++++++++++++++
 .../gremlin/server/gremlin-server-integration.yaml |  1 +
 13 files changed, 403 insertions(+), 19 deletions(-)