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:59 UTC

[tinkerpop] branch tp32 updated (a93d9a9 -> c3e714f)

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

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


    from a93d9a9  Added PMC invite email template to dev docs CTR
     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
     new c3e714f  Merge pull request #952 from apache/TINKERPOP-1959

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 #952 from apache/TINKERPOP-1959

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

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

commit c3e714f4b293fd5c0aad678f453db00a75985d9f
Merge: a93d9a9 6132b7a
Author: stephen mallette <sp...@users.noreply.github.com>
AuthorDate: Mon Oct 8 16:31:55 2018 -0400

    Merge pull request #952 from apache/TINKERPOP-1959
    
    TINKERPOP-1959 submit scripts in javascript

 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(-)