From 49ac29df0a940a3707f23c789b3bab8e0cc2846f Mon Sep 17 00:00:00 2001 From: Eugene Lazutkin Date: Wed, 15 Nov 2023 02:04:23 -0600 Subject: [PATCH] New version: 1.20.8. --- README.md | 1 + package-lock.json | 12 ++++++------ package.json | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6f2aae8..f5aae61 100644 --- a/README.md +++ b/README.md @@ -353,6 +353,7 @@ console.log('re2_res : ' + re2_res); // prints: re2_res : abc,a,b,c ## Release history +- 1.20.8 *Updated deps: `install-artifact-from-github`. A default HTTPS agent is used for fetching precompiled artifacts avoiding unnecessary long wait times.* - 1.20.7 *Added more `absail-cpp` files that manifested itself on ARM Alpine. Thx, [Laura Hausmann](https://github.com/zotanmew).* - 1.20.6 *Updated deps, notably `node-gyp`.* - 1.20.5 *Updated deps, added Node 21 and retired Node 16 as pre-compilation targets.* diff --git a/package-lock.json b/package-lock.json index 99b69d2..8aab090 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,16 +1,16 @@ { "name": "re2", - "version": "1.20.7", + "version": "1.20.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "re2", - "version": "1.20.7", + "version": "1.20.8", "hasInstallScript": true, "license": "BSD-3-Clause", "dependencies": { - "install-artifact-from-github": "^1.3.3", + "install-artifact-from-github": "^1.3.4", "nan": "^2.18.0", "node-gyp": "^10.0.1" }, @@ -420,9 +420,9 @@ } }, "node_modules/install-artifact-from-github": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.3.3.tgz", - "integrity": "sha512-x79SL0d8WOi1ZjXSTUqqs0GPQZ92YArJAN9O46wgU9wdH2U9ecyyhB9YGDbPe2OLV4ptmt6AZYRQZ2GydQZosQ==", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.3.4.tgz", + "integrity": "sha512-a41E4kwwUANzNHjxJqLINaiY0ML96FH3GaW/XVJf+YiVzvNycU/ohZDdNzWL5Ava+e7Tv+2HioI267XjthZsYg==", "bin": { "install-from-cache": "bin/install-from-cache.js", "save-to-github-cache": "bin/save-to-github-cache.js" diff --git a/package.json b/package.json index 6b91f60..5e89ca1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "re2", - "version": "1.20.7", + "version": "1.20.8", "description": "Bindings for RE2: fast, safe alternative to backtracking regular expression engines.", "homepage": "https://github.com/uhop/node-re2", "bugs": "https://github.com/uhop/node-re2/issues", @@ -11,7 +11,7 @@ "test": "tests" }, "dependencies": { - "install-artifact-from-github": "^1.3.3", + "install-artifact-from-github": "^1.3.4", "nan": "^2.18.0", "node-gyp": "^10.0.1" },