You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by co...@apache.org on 2023/06/02 22:07:28 UTC

[tinkerpop] branch master updated: CTR Update docs/gremlint to use gremlint 3.6.4.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6a62327d1c CTR Update docs/gremlint to use gremlint 3.6.4.
6a62327d1c is described below

commit 6a62327d1cb82b8abfc6080e31866212c09a0fb7
Author: Cole Greer <co...@bitquilltech.com>
AuthorDate: Fri Jun 2 15:06:10 2023 -0700

    CTR Update docs/gremlint to use gremlint 3.6.4.
    
    Updated release docs to add check to update gremlint before publishing the site.
---
 docs/gremlint/package-lock.json         | 17 ++++++++++-------
 docs/gremlint/package.json              |  5 ++++-
 docs/gremlint/src/components/Footer.tsx |  2 +-
 docs/src/dev/developer/release.asciidoc |  1 +
 4 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/docs/gremlint/package-lock.json b/docs/gremlint/package-lock.json
index 8d1e592864..db091cc049 100644
--- a/docs/gremlint/package-lock.json
+++ b/docs/gremlint/package-lock.json
@@ -10,7 +10,7 @@
       "license": "Apache-2.0",
       "dependencies": {
         "customize-cra": "^1.0.0",
-        "gremlint": "^3.5.2",
+        "gremlint": "^3.6.4",
         "react": "^17.0.2",
         "react-app-rewired": "^2.1.11",
         "react-dom": "^17.0.2",
@@ -33,6 +33,9 @@
         "prettier": "^2.7.0",
         "tslint": "^6.1.3",
         "tslint-config-prettier": "^1.18.0"
+      },
+      "engines": {
+        "node": "16"
       }
     },
     "node_modules/@babel/code-frame": {
@@ -7912,9 +7915,9 @@
       "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="
     },
     "node_modules/gremlint": {
-      "version": "3.5.2",
-      "resolved": "https://registry.npmjs.org/gremlint/-/gremlint-3.5.2.tgz",
-      "integrity": "sha512-bXxxYIjYOmXbQds0tTwS2zWszhDpvxcmgFpskYG8SHVZHrkvFB5UsFDT7XaGESOT2S6bSm80BmZfhvd/k0HYfQ==",
+      "version": "3.6.4",
+      "resolved": "https://registry.npmjs.org/gremlint/-/gremlint-3.6.4.tgz",
+      "integrity": "sha512-wbuAkS/K4MIEtECVDPSwrxixfLlAUHJGFVrR/bhJDfjqEOllGU9UYXeoNU0GUCla5l1RdspeRV2sVb0fgi93Og==",
       "engines": {
         "node": ">=10"
       }
@@ -21144,9 +21147,9 @@
       "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="
     },
     "gremlint": {
-      "version": "3.5.2",
-      "resolved": "https://registry.npmjs.org/gremlint/-/gremlint-3.5.2.tgz",
-      "integrity": "sha512-bXxxYIjYOmXbQds0tTwS2zWszhDpvxcmgFpskYG8SHVZHrkvFB5UsFDT7XaGESOT2S6bSm80BmZfhvd/k0HYfQ=="
+      "version": "3.6.4",
+      "resolved": "https://registry.npmjs.org/gremlint/-/gremlint-3.6.4.tgz",
+      "integrity": "sha512-wbuAkS/K4MIEtECVDPSwrxixfLlAUHJGFVrR/bhJDfjqEOllGU9UYXeoNU0GUCla5l1RdspeRV2sVb0fgi93Og=="
     },
     "gzip-size": {
       "version": "6.0.0",
diff --git a/docs/gremlint/package.json b/docs/gremlint/package.json
index eadc75ec1e..d4834923e2 100644
--- a/docs/gremlint/package.json
+++ b/docs/gremlint/package.json
@@ -5,7 +5,7 @@
   "private": true,
   "dependencies": {
     "customize-cra": "^1.0.0",
-    "gremlint": "^3.5.2",
+    "gremlint": "^3.6.4",
     "react": "^17.0.2",
     "react-app-rewired": "^2.1.11",
     "react-dom": "^17.0.2",
@@ -56,5 +56,8 @@
     "prettier": "^2.7.0",
     "tslint": "^6.1.3",
     "tslint-config-prettier": "^1.18.0"
+  },
+  "engines": {
+    "node": "16"
   }
 }
diff --git a/docs/gremlint/src/components/Footer.tsx b/docs/gremlint/src/components/Footer.tsx
index 20207dcbad..4983de7c0a 100644
--- a/docs/gremlint/src/components/Footer.tsx
+++ b/docs/gremlint/src/components/Footer.tsx
@@ -36,7 +36,7 @@ const Footer = () => (
   <CenteredContainer>
     <FooterContent>
       <p>Gremlint version: {gremlintVersion}</p>
-      <p>Copyright © 2015-2022 The Apache Software Foundation.</p>
+      <p>Copyright © 2015-2023 The Apache Software Foundation.</p>
     </FooterContent>
   </CenteredContainer>
 );
diff --git a/docs/src/dev/developer/release.asciidoc b/docs/src/dev/developer/release.asciidoc
index 1fb92ed3da..e26ad7e8a3 100644
--- a/docs/src/dev/developer/release.asciidoc
+++ b/docs/src/dev/developer/release.asciidoc
@@ -287,6 +287,7 @@ and link:https://hub.docker.com/r/tinkerpop/gremlin-server/[Server]
 .. Update `community.html`, specifically the version numbers for our official releases.
 .. Update link:https://tinkerpop.apache.org/download.html[Downloads] page, when moving "Current Releases" to "Archived
 Releases" recall that the hyperlink must change to point to version in the link:https://archive.apache.org/dist/tinkerpop/[Apache Archives].
+.. Update `docs/gremlint/package.json` with the latest version of gremlint.
 .. Preview changes locally with `bin/generate-home.sh` then commit changes to git.
 . Wait for zip distributions to sync to the Apache mirrors (i.e ensure the download links work from a mirror).
 . `bin/publish-home.sh <username>` to publish the updated web site with new releases.