You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@annotator.apache.org by ra...@apache.org on 2022/04/24 04:23:33 UTC

[incubator-annotator] branch main updated (635a3c6 -> c02ae79)

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

randall pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git


    from 635a3c6  Bump copyright year to 2022
     new 3f6dafa  Use git archive instead of git clone
     new d78f69d  Consistently use tabs in Makefile
     new af1c6f1  Reduce Makefile repitition with dist variables
     new b79d8e7  Remove upper bound on Node.js version
     new a540942  Drop support for Node.js v12
     new 535666e  Better specify targets for modern code output
     new c02ae79  Upgrade Husky from v4 to v7

The 7 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:
 .editorconfig                          |  4 ++
 .eslintrc.js                           |  1 -
 .ratignore                             |  1 +
 Makefile                               | 50 +++++++++----------------
 babel.config.js                        |  6 ++-
 husky.config.js                        | 28 --------------
 husky/pre-commit                       | 23 ++++++++++++
 package.json                           |  6 ++-
 packages/apache-annotator/package.json |  2 +-
 packages/dom/package.json              |  2 +-
 packages/selector/package.json         |  2 +-
 yarn.lock                              | 67 +++++++++-------------------------
 12 files changed, 75 insertions(+), 117 deletions(-)
 delete mode 100644 husky.config.js
 create mode 100755 husky/pre-commit


[incubator-annotator] 02/07: Consistently use tabs in Makefile

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

randall pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit d78f69d2f63bcd3330a26487d6d5f963f6b65e92
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Fri Apr 15 14:54:32 2022 -0700

    Consistently use tabs in Makefile
---
 .editorconfig |  4 ++++
 Makefile      | 24 ++++++++++++------------
 2 files changed, 16 insertions(+), 12 deletions(-)

diff --git a/.editorconfig b/.editorconfig
index 1597c18..1bc1d35 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -8,3 +8,7 @@ indent_style = space
 insert_final_newline = true
 max_line_length = 80
 trim_trailing_whitespace = true
+
+[Makefile]
+indent_size = 8
+indent_style = tab
diff --git a/Makefile b/Makefile
index 7d6bfdd..791350c 100644
--- a/Makefile
+++ b/Makefile
@@ -14,19 +14,19 @@
 
 # What is the prerelease version?
 vsn_pre = $(shell git describe --tags --always --first-parent \
-        | grep -Eo -- '(-rc\.[0-9]+)?$$' \
-        2>/dev/null)
+	| grep -Eo -- '(-rc\.[0-9]+)?$$' \
+	2>/dev/null)
 
 # What is the release version?
 vsn_rel = $(shell git describe --tags --always --first-parent \
-        | grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+' \
-        | tail -c +2 \
-        2>/dev/null)
+	| grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+' \
+	| tail -c +2 \
+	2>/dev/null)
 
 # What is the release tag?
 vsn_tag = $(shell git describe --tags --always --first-parent \
-        | grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+(-rc.[0-9]+)?$$' \
-        2>/dev/null)
+	| grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+(-rc.[0-9]+)?$$' \
+	2>/dev/null)
 
 annotator_vsn = $(vsn_rel)
 
@@ -64,9 +64,9 @@ else
 dist:
 	@rm -rf apache-annotator-$(annotator_vsn)-incubating
 	@git archive \
-        --output apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
-        --prefix apache-annotator-$(annotator_vsn)-incubating/ \
-        $(vsn_tag)
+		--output apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
+		--prefix apache-annotator-$(annotator_vsn)-incubating/ \
+		$(vsn_tag)
 	@echo "Done: apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz"
 
 endif
@@ -80,6 +80,6 @@ distcheck: dist
 distsign: dist
 	@gpg -ab apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz
 	@sha256sum apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
-        > apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha256
+		> apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha256
 	@sha512sum apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
-        > apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha512
+		> apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha512


[incubator-annotator] 05/07: Drop support for Node.js v12

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

randall pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit a540942e5a82519061524da51772000afcb910ed
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Sat Apr 23 19:39:32 2022 -0700

    Drop support for Node.js v12
    
    Node.js version 12 is end of life soon.
---
 package.json                           | 2 +-
 packages/apache-annotator/package.json | 2 +-
 packages/dom/package.json              | 2 +-
 packages/selector/package.json         | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package.json b/package.json
index 59d0b68..d6a209d 100644
--- a/package.json
+++ b/package.json
@@ -78,7 +78,7 @@
     "webpack-dev-server": "^3.10.1"
   },
   "engines": {
-    "node": "^12.20 || ^14.15 || ^15.4 || >=16",
+    "node": "^14.15 || ^15.4 || >=16",
     "yarn": "^1.5.0"
   }
 }
diff --git a/packages/apache-annotator/package.json b/packages/apache-annotator/package.json
index b502156..57181f9 100644
--- a/packages/apache-annotator/package.json
+++ b/packages/apache-annotator/package.json
@@ -20,7 +20,7 @@
     "@babel/runtime-corejs3": "^7.13.10"
   },
   "engines": {
-    "node": "^12.20 || ^14.15 || ^15.4 || >=16"
+    "node": "^14.15 || ^15.4 || >=16"
   },
   "publishConfig": {
     "access": "public"
diff --git a/packages/dom/package.json b/packages/dom/package.json
index a18125d..4e1789b 100644
--- a/packages/dom/package.json
+++ b/packages/dom/package.json
@@ -19,7 +19,7 @@
     "@medv/finder": "^2.1.0"
   },
   "engines": {
-    "node": "^12.20 || ^14.15 || ^15.4 || >=16"
+    "node": "^14.15 || ^15.4 || >=16"
   },
   "publishConfig": {
     "access": "public"
diff --git a/packages/selector/package.json b/packages/selector/package.json
index d29f819..2d1f8e6 100644
--- a/packages/selector/package.json
+++ b/packages/selector/package.json
@@ -17,7 +17,7 @@
     "@babel/runtime-corejs3": "^7.13.10"
   },
   "engines": {
-    "node": "^12.20 || ^14.15 || ^15.4 || >=16"
+    "node": "^14.15 || ^15.4 || >=16"
   },
   "publishConfig": {
     "access": "public"


[incubator-annotator] 01/07: Use git archive instead of git clone

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

randall pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit 3f6dafa4dd4ed5ae0bb5d56c6ff7a326abc0a3e5
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Fri Apr 15 14:46:09 2022 -0700

    Use git archive instead of git clone
    
    Including a git directory in the dist tarball is a convenient trick for
    easing comparison between the archive and the release tag, but it is not
    necessary and may be confusing.
---
 Makefile | 20 +++++---------------
 1 file changed, 5 insertions(+), 15 deletions(-)

diff --git a/Makefile b/Makefile
index 019b4ad..7d6bfdd 100644
--- a/Makefile
+++ b/Makefile
@@ -23,10 +23,9 @@ vsn_rel = $(shell git describe --tags --always --first-parent \
         | tail -c +2 \
         2>/dev/null)
 
-# Is this a tagged release?
+# What is the release tag?
 vsn_tag = $(shell git describe --tags --always --first-parent \
         | grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+(-rc.[0-9]+)?$$' \
-        | tail -c +2 \
         2>/dev/null)
 
 annotator_vsn = $(vsn_rel)
@@ -64,19 +63,10 @@ else
 .PHONY: dist
 dist:
 	@rm -rf apache-annotator-$(annotator_vsn)-incubating
-	@git clone \
-        --config advice.detachedHead=false \
-        --config versionsort.suffix=-rc \
-        --depth 1 \
-        --no-tags \
-        --quiet \
-        file://"$(shell git rev-parse --show-toplevel)" \
-        apache-annotator-$(annotator_vsn)-incubating
-	@git --git-dir apache-annotator-$(annotator_vsn)-incubating/.git config \
-        remote.origin.url https://github.com/apache/incubator-annotator.git
-	@tar czf \
-        apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
-        apache-annotator-$(annotator_vsn)-incubating
+	@git archive \
+        --output apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
+        --prefix apache-annotator-$(annotator_vsn)-incubating/ \
+        $(vsn_tag)
 	@echo "Done: apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz"
 
 endif


[incubator-annotator] 03/07: Reduce Makefile repitition with dist variables

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

randall pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit af1c6f112ed9ff7f8b2fd493b2142bf14c9768f0
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Sat Apr 23 19:19:24 2022 -0700

    Reduce Makefile repitition with dist variables
---
 Makefile | 24 ++++++++++--------------
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/Makefile b/Makefile
index 791350c..146e494 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,8 @@ vsn_tag = $(shell git describe --tags --always --first-parent \
 	| grep -Eo -- '^v[0-9]+\.[0-9]\.[0-9]+(-rc.[0-9]+)?$$' \
 	2>/dev/null)
 
-annotator_vsn = $(vsn_rel)
+distdir = apache-annotator-$(vsn_rel)-incubating
+disttar = apache-annotator-$(vsn_rel)$(vsn_pre)-incubating.tar.gz
 
 .PHONY: all
 all: build
@@ -62,24 +63,19 @@ else
 
 .PHONY: dist
 dist:
-	@rm -rf apache-annotator-$(annotator_vsn)-incubating
-	@git archive \
-		--output apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
-		--prefix apache-annotator-$(annotator_vsn)-incubating/ \
-		$(vsn_tag)
-	@echo "Done: apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz"
+	@rm -rf $(distdir)
+	@git archive --output $(disttar) --prefix $(distdir)/ $(vsn_tag)
+	@echo "Done: $(disttar)"
 
 endif
 
 .PHONY: distcheck
 distcheck: dist
-	@tar xzf apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz
-	@make -C apache-annotator-$(annotator_vsn)-incubating check
+	@tar xzf $(disttar)
+	@make -C $(distdir) check
 
 .PHONY: distsign
 distsign: dist
-	@gpg -ab apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz
-	@sha256sum apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
-		> apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha256
-	@sha512sum apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz \
-		> apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz.sha512
+	@gpg -ab $(disttar)
+	@sha256sum $(disttar) > $(disttar).sha256
+	@sha512sum $(disttar) > $(disttar).sha512


[incubator-annotator] 06/07: Better specify targets for modern code output

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

randall pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit 535666e20fb8724faf2bff53497169f26d2fad43
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Sat Apr 23 20:13:04 2022 -0700

    Better specify targets for modern code output
    
    Set the esmodules target to eliminate browsers that are part of the
    browserslist defaults but that do not support modules. Set the node
    minimum node version.
---
 babel.config.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/babel.config.js b/babel.config.js
index dfa8a03..80d693b 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -89,6 +89,10 @@ module.exports = (api) => {
       ['@babel/env', envOptions],
       ['@babel/typescript', typescriptOptions],
     ],
-    targets: TEST ? { node: 'current' } : 'defaults',
+    targets: {
+      browsers: 'defaults',
+      esmodules: true,
+      node: TEST ? 'current' : '14.15',
+    },
   };
 };


[incubator-annotator] 07/07: Upgrade Husky from v4 to v7

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

randall pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit c02ae791f5272e866f7455a83c267dab8888c9ea
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Sat Apr 23 21:15:48 2022 -0700

    Upgrade Husky from v4 to v7
---
 .eslintrc.js     |  1 -
 .ratignore       |  1 +
 husky.config.js  | 28 -----------------------
 husky/pre-commit | 23 +++++++++++++++++++
 package.json     |  4 +++-
 yarn.lock        | 67 ++++++++++++++------------------------------------------
 6 files changed, 44 insertions(+), 80 deletions(-)

diff --git a/.eslintrc.js b/.eslintrc.js
index fcbd83d..cb0beeb 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -74,7 +74,6 @@ module.exports = {
         '.mocharc.js',
         'babel-register.js',
         'babel.config.js',
-        'husky.config.js',
         'nyc.config.js',
         'web/webpack.config.js',
       ],
diff --git a/.ratignore b/.ratignore
index b31f5da..987b7b1 100644
--- a/.ratignore
+++ b/.ratignore
@@ -6,6 +6,7 @@
 \.npmignore
 \.ratignore
 \.travis.yml
+husky.sh
 lerna\.json
 node_modules
 package\.json
diff --git a/husky.config.js b/husky.config.js
deleted file mode 100644
index 029aa3a..0000000
--- a/husky.config.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * SPDX-FileCopyrightText: 2016-2022 The Apache Software Foundation
- * SPDX-License-Identifier: Apache-2.0
- * @license
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-module.exports = {
-  hooks: {
-    'pre-commit': 'lint-staged',
-  },
-  skipCI: true,
-};
diff --git a/husky/pre-commit b/husky/pre-commit
new file mode 100755
index 0000000..9785eaf
--- /dev/null
+++ b/husky/pre-commit
@@ -0,0 +1,23 @@
+#!/bin/sh
+# SPDX-FileCopyrightText: 2016-2022 The Apache Software Foundation
+# SPDX-License-Identifier: Apache-2.0
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+. "$(dirname "$0")/_/husky.sh"
+
+yarn run lint-staged
diff --git a/package.json b/package.json
index d6a209d..9bc212a 100644
--- a/package.json
+++ b/package.json
@@ -22,6 +22,7 @@
     "clean": "tsc --build --clean && lerna exec -- rimraf DISCLAIMER-WIP LICENSE NOTICE README.md coverage docs lib web/dist",
     "docs": "tsc --build && typedoc",
     "lint": "eslint .",
+    "prepare": "is-ci || husky install husky",
     "prepublishOnly": "yarn run build",
     "publish": "lerna publish",
     "publish:ci": "yarn run publish --canary --exact --force-publish '*' --no-verify-access --yes minor",
@@ -61,7 +62,8 @@
     "eslint-plugin-prettier": "^3.1.4",
     "file-loader": "^6.0.0",
     "global-jsdom": "^8.0.0",
-    "husky": "^4.2.1",
+    "husky": "^7.0.0",
+    "is-ci": "^3.0.1",
     "jsdom": "^16.2.2",
     "lerna": "^3.20.2",
     "lint-staged": "^10.0.2",
diff --git a/yarn.lock b/yarn.lock
index da94354..772c950 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3097,6 +3097,11 @@ ci-info@^2.0.0:
   resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
   integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
 
+ci-info@^3.2.0:
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2"
+  integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==
+
 cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
   version "1.0.4"
   resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
@@ -3261,11 +3266,6 @@ compare-func@^1.3.1:
     array-ify "^1.0.0"
     dot-prop "^3.0.0"
 
-compare-versions@^3.5.1:
-  version "3.5.1"
-  resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.5.1.tgz#26e1f5cf0d48a77eced5046b9f67b6b61075a393"
-  integrity sha512-9fGPIB7C6AyM18CJJBHt5EnCZDG3oiTJYy0NjfIAGjKpzv0tkxWko7TNQHF5ymqm7IH03tqmeuBxtvD+Izh6mg==
-
 component-emitter@^1.2.1:
   version "1.3.0"
   resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
@@ -4730,7 +4730,7 @@ find-up@^3.0.0:
   dependencies:
     locate-path "^3.0.0"
 
-find-up@^4.0.0, find-up@^4.1.0:
+find-up@^4.1.0:
   version "4.1.0"
   resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
   integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
@@ -4738,13 +4738,6 @@ find-up@^4.0.0, find-up@^4.1.0:
     locate-path "^5.0.0"
     path-exists "^4.0.0"
 
-find-versions@^3.2.0:
-  version "3.2.0"
-  resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e"
-  integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==
-  dependencies:
-    semver-regex "^2.0.0"
-
 findup-sync@3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1"
@@ -5459,21 +5452,10 @@ humanize-ms@^1.2.1:
   dependencies:
     ms "^2.0.0"
 
-husky@^4.2.1:
-  version "4.2.1"
-  resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.1.tgz#b09f1bd9129e6c323cc515dc17081d0615e2d7c1"
-  integrity sha512-Qa0lRreeIf4Tl92sSs42ER6qc3hzoyQPPorzOrFWfPEVbdi6LuvJEqWKPk905fOWIR76iBpp7ECZNIwk+a8xuQ==
-  dependencies:
-    chalk "^3.0.0"
-    ci-info "^2.0.0"
-    compare-versions "^3.5.1"
-    cosmiconfig "^6.0.0"
-    find-versions "^3.2.0"
-    opencollective-postinstall "^2.0.2"
-    pkg-dir "^4.2.0"
-    please-upgrade-node "^3.2.0"
-    slash "^3.0.0"
-    which-pm-runs "^1.0.0"
+husky@^7.0.0:
+  version "7.0.4"
+  resolved "https://registry.yarnpkg.com/husky/-/husky-7.0.4.tgz#242048245dc49c8fb1bf0cc7cfb98dd722531535"
+  integrity sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==
 
 iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@~0.4.13:
   version "0.4.24"
@@ -5704,6 +5686,13 @@ is-ci@^2.0.0:
   dependencies:
     ci-info "^2.0.0"
 
+is-ci@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867"
+  integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==
+  dependencies:
+    ci-info "^3.2.0"
+
 is-core-module@^2.2.0:
   version "2.2.0"
   resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a"
@@ -7320,11 +7309,6 @@ onigasm@^2.2.5:
   dependencies:
     lru-cache "^5.1.1"
 
-opencollective-postinstall@^2.0.2:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89"
-  integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==
-
 opn@^5.5.0:
   version "5.5.0"
   resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
@@ -7778,13 +7762,6 @@ pkg-dir@^3.0.0:
   dependencies:
     find-up "^3.0.0"
 
-pkg-dir@^4.2.0:
-  version "4.2.0"
-  resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
-  integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
-  dependencies:
-    find-up "^4.0.0"
-
 pkg-up@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
@@ -8543,11 +8520,6 @@ semver-compare@^1.0.0:
   resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
   integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
 
-semver-regex@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338"
-  integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==
-
 "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0:
   version "5.7.1"
   resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
@@ -9998,11 +9970,6 @@ which-module@^2.0.0:
   resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
   integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
 
-which-pm-runs@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
-  integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
-
 which@1, which@^1.2.14, which@^1.2.9, which@^1.3.1:
   version "1.3.1"
   resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"


[incubator-annotator] 04/07: Remove upper bound on Node.js version

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

randall pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit b79d8e75e1a89bee78efaf9921e6c91b782efd7f
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Sat Apr 23 19:23:48 2022 -0700

    Remove upper bound on Node.js version
---
 package.json                           | 2 +-
 packages/apache-annotator/package.json | 2 +-
 packages/dom/package.json              | 2 +-
 packages/selector/package.json         | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package.json b/package.json
index a82e065..59d0b68 100644
--- a/package.json
+++ b/package.json
@@ -78,7 +78,7 @@
     "webpack-dev-server": "^3.10.1"
   },
   "engines": {
-    "node": "^12.20 || ^14.15 || ^15.4 || ^16.0 || ^17.0",
+    "node": "^12.20 || ^14.15 || ^15.4 || >=16",
     "yarn": "^1.5.0"
   }
 }
diff --git a/packages/apache-annotator/package.json b/packages/apache-annotator/package.json
index 0e5d73a..b502156 100644
--- a/packages/apache-annotator/package.json
+++ b/packages/apache-annotator/package.json
@@ -20,7 +20,7 @@
     "@babel/runtime-corejs3": "^7.13.10"
   },
   "engines": {
-    "node": "^12.20 || ^14.15 || ^15.4 || ^16.0 || ^17.0"
+    "node": "^12.20 || ^14.15 || ^15.4 || >=16"
   },
   "publishConfig": {
     "access": "public"
diff --git a/packages/dom/package.json b/packages/dom/package.json
index 1ebdfa2..a18125d 100644
--- a/packages/dom/package.json
+++ b/packages/dom/package.json
@@ -19,7 +19,7 @@
     "@medv/finder": "^2.1.0"
   },
   "engines": {
-    "node": "^12.20 || ^14.15 || ^15.4 || ^16.0 || ^17.0"
+    "node": "^12.20 || ^14.15 || ^15.4 || >=16"
   },
   "publishConfig": {
     "access": "public"
diff --git a/packages/selector/package.json b/packages/selector/package.json
index 0cb6525..d29f819 100644
--- a/packages/selector/package.json
+++ b/packages/selector/package.json
@@ -17,7 +17,7 @@
     "@babel/runtime-corejs3": "^7.13.10"
   },
   "engines": {
-    "node": "^12.20 || ^14.15 || ^15.4 || ^16.0 || ^17.0"
+    "node": "^12.20 || ^14.15 || ^15.4 || >=16"
   },
   "publishConfig": {
     "access": "public"