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

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


 discard f67b49171b remove graphson test
 discard a093f4df18 rework dotnet translations
 discard 540bb69585 move backslash back to unit test
 discard 938d769bf2 add missing test imports
 discard bb0d29eaeb translations + feature tests
 discard cdf59f1e62 Add Char, Duration, Binary support to gremlin-lang.
     add 66662ca166 Add gremlator: client-side Gremlin query translator SPA
     add 6d0172d5c4 Upgraded gremlator to vite and better matched gremlint
     add 8b3d94778c Merge pull request #3382 from apache/gremlator
     add d03f568d35 CTR Regen feature test files
     add 485f3a6da1 Merge branch '3.8-dev'
     add 247201c9d0 Clean up and upgrade gremlin-js dependencies CTR
     add 2bd0280c8e docs/gremlint and docs/gremlator dependency upgrade CTR
     add 157b213776 TINKERPOP-3233 Added escaped characters to docs (#3383)
     new cd13fe6df6 Add Char, Duration, Binary support to gremlin-lang.
     new b5423bb36e change to seconds and nanos

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   (f67b49171b)
            \
             N -- N -- N   refs/heads/stringify-params (b5423bb36e)

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 2 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:
 .github/dependabot.yml                             |   11 +
 CHANGELOG.asciidoc                                 |    3 +
 bin/generate-home.sh                               |   10 +
 docs/{gremlint => gremlator}/.gitignore            |    2 +-
 docs/{gremlint => gremlator}/.prettierrc           |    0
 docs/{gremlint => gremlator}/LICENSE               |    0
 docs/{gremlint => gremlator}/README.md             |   19 +-
 docs/{gremlint => gremlator}/index.html            |   10 +-
 docs/{gremlint => gremlator}/package-lock.json     | 5278 ++++++++++++++------
 docs/{gremlint => gremlator}/package.json          |   23 +-
 docs/{gremlint => gremlator}/public/favicon.ico    |  Bin
 docs/{gremlint => gremlator}/public/manifest.json  |    8 +-
 docs/{gremlint => gremlator}/public/robots.txt     |    0
 .../components/Title.tsx => gremlator/src/App.tsx} |   47 +-
 .../src/components/ErrorAlert.tsx}                 |   58 +-
 .../src/components/Footer.tsx                      |   30 +-
 docs/gremlator/src/components/LanguageTabs.tsx     |   69 +
 .../src/components/Navigator.tsx                   |   50 +-
 docs/gremlator/src/components/QueryInput.tsx       |  104 +
 .../gremlator/src/components/TranslationResult.tsx |  104 +
 .../src/App.test.tsx => gremlator/src/index.tsx}   |   12 +-
 .../src/store/actions.ts}                          |    4 +-
 .../src => docs/gremlator/src/store}/index.ts      |    6 +-
 .../src/store/initialState.ts                      |   14 +-
 docs/gremlator/src/store/reducers.ts               |   59 +
 docs/{gremlint => gremlator}/src/store/types.ts    |   44 +-
 docs/gremlator/src/views/QueryTranslator/index.tsx |   76 +
 docs/{gremlint => gremlator}/tsconfig.json         |   10 +-
 docs/{gremlint => gremlator}/tslint.json           |    0
 docs/{gremlint => gremlator}/vite.config.ts        |   20 +-
 docs/gremlint/index.html                           |    1 -
 docs/gremlint/package-lock.json                    |  421 +-
 docs/gremlint/package.json                         |    4 +-
 docs/gremlint/src/components/Footer.tsx            |    5 +
 docs/src/dev/developer/release.asciidoc            |    1 +
 docs/src/reference/gremlin-variants.asciidoc       |   19 +
 docs/src/upgrade/release-4.x.x.asciidoc            |   21 +
 .../language/grammar/GenericLiteralVisitor.java    |   32 +-
 .../translator/DotNetTranslateVisitor.java         |   19 +-
 .../language/translator/GoTranslateVisitor.java    |   10 +-
 .../translator/GroovyTranslateVisitor.java         |   10 +-
 .../language/translator/JavaTranslateVisitor.java  |   10 +-
 .../translator/PythonTranslateVisitor.java         |   19 +-
 .../gremlin/process/traversal/GremlinLang.java     |   13 +-
 .../grammar/GeneralLiteralVisitorTest.java         |   72 +-
 .../language/translator/GremlinTranslatorTest.java |   38 +-
 .../gremlin/process/traversal/GremlinLangTest.java |    5 -
 gremlin-dotnet/build/generate.groovy               |    1 -
 .../Gremlin.Net/Process/Traversal/GremlinLang.cs   |   12 +-
 .../Gherkin/CommonSteps.cs                         |   21 +-
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |   20 +-
 .../Process/Traversal/GremlinLangTests.cs          |   23 -
 gremlin-go/driver/cucumber/cucumberSteps_test.go   |   49 +-
 gremlin-go/driver/cucumber/gremlin.go              |   17 +-
 gremlin-go/driver/gremlinlang.go                   |   60 +-
 gremlin-go/driver/gremlinlang_test.go              |   22 -
 .../language/translator/DotNetTranslateVisitor.ts  |   77 +-
 .../lib/language/translator/GoTranslateVisitor.ts  |   42 +-
 .../language/translator/GroovyTranslateVisitor.ts  |   11 +-
 .../language/translator/JavaTranslateVisitor.ts    |   11 +-
 .../language/translator/PythonTranslateVisitor.ts  |   56 +-
 gremlin-js/gremlin-javascript/lib/utils.ts         |    5 +-
 gremlin-js/gremlin-javascript/package.json         |   16 +-
 .../gremlin-javascript/test/cucumber/gremlin.js    |   17 +-
 .../test/unit/element-comparison-test.js           |    7 +-
 gremlin-js/gremlin-mcp/tsconfig.json               |    2 +-
 gremlin-js/package-lock.json                       | 3420 ++++++-------
 gremlin-language/src/main/antlr4/Gremlin.g4        |    2 +-
 .../python/gremlin_python/process/traversal.py     |   48 +-
 .../src/main/python/tests/feature/feature_steps.py |   21 +-
 .../src/main/python/tests/feature/gremlin.py       |   17 +-
 .../python/tests/unit/process/test_gremlin_lang.py |    8 -
 .../tinkerpop/gremlin/features/StepDefinition.java |   17 +-
 .../gremlin/language/translator/translations.json  |  170 +-
 .../gremlin/test/features/data/Duration.feature    |   82 +-
 75 files changed, 6451 insertions(+), 4574 deletions(-)
 copy docs/{gremlint => gremlator}/.gitignore (99%)
 copy docs/{gremlint => gremlator}/.prettierrc (100%)
 copy docs/{gremlint => gremlator}/LICENSE (100%)
 copy docs/{gremlint => gremlator}/README.md (55%)
 copy docs/{gremlint => gremlator}/index.html (79%)
 copy docs/{gremlint => gremlator}/package-lock.json (50%)
 copy docs/{gremlint => gremlator}/package.json (74%)
 copy docs/{gremlint => gremlator}/public/favicon.ico (100%)
 copy docs/{gremlint => gremlator}/public/manifest.json (51%)
 copy docs/{gremlint => gremlator}/public/robots.txt (100%)
 copy docs/{gremlint/src/components/Title.tsx => gremlator/src/App.tsx} (54%)
 copy docs/{gremlint/src/components/TextButton.tsx => 
gremlator/src/components/ErrorAlert.tsx} (56%)
 copy docs/{gremlint => gremlator}/src/components/Footer.tsx (66%)
 create mode 100644 docs/gremlator/src/components/LanguageTabs.tsx
 copy docs/{gremlint => gremlator}/src/components/Navigator.tsx (56%)
 create mode 100644 docs/gremlator/src/components/QueryInput.tsx
 create mode 100644 docs/gremlator/src/components/TranslationResult.tsx
 copy docs/{gremlint/src/App.test.tsx => gremlator/src/index.tsx} (82%)
 copy docs/{gremlint/src/react-app-env.d.ts => gremlator/src/store/actions.ts} 
(88%)
 copy {gremlin-js/gremlint/src => docs/gremlator/src/store}/index.ts (83%)
 copy docs/{gremlint => gremlator}/src/store/initialState.ts (77%)
 create mode 100644 docs/gremlator/src/store/reducers.ts
 copy docs/{gremlint => gremlator}/src/store/types.ts (55%)
 create mode 100644 docs/gremlator/src/views/QueryTranslator/index.tsx
 copy docs/{gremlint => gremlator}/tsconfig.json (79%)
 copy docs/{gremlint => gremlator}/tslint.json (100%)
 copy docs/{gremlint => gremlator}/vite.config.ts (79%)

Reply via email to