This is an automated email from the ASF dual-hosted git repository.
Cole-Greer pushed a change to branch JS-streaming
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard 67d7c74c71 Response Streaming in JS
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 249285b460 Response Streaming in JS
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 (67d7c74c71)
\
N -- N -- N refs/heads/JS-streaming (249285b460)
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:
.github/dependabot.yml | 11 +
CHANGELOG.asciidoc | 1 +
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 | 3002 +++++++++++++++++---
docs/{gremlint => gremlator}/package.json | 17 +-
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/src/components/Footer.tsx | 5 +
docs/src/dev/developer/release.asciidoc | 1 +
docs/src/upgrade/release-4.x.x.asciidoc | 9 +
gremlin-js/package-lock.json | 1 +
35 files changed, 3179 insertions(+), 625 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 (56%)
copy docs/{gremlint => gremlator}/package.json (80%)
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%)