From 282abdf8507bb0b98239424a5e129dbbf37d0218 Mon Sep 17 00:00:00 2001 From: Eugene Lazutkin Date: Wed, 25 Oct 2023 11:28:33 -0500 Subject: [PATCH] Updated deps, new version: 1.20.5. --- 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 382d9f4..1c032e8 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.5 *Updated deps, added Node 21 and retired Node 16 as pre-compilation targets.* - 1.20.4 *Updated deps. Fix: the 2nd argument of the constructor overrides flags. Thx, [gost-serb](https://github.com/gost-serb).* - 1.20.3 *Fix: subsequent numbers are incorporated into group if they would form a legal group reference. Thx, [Oleksii Vasyliev](https://github.com/le0pard).* - 1.20.2 *Fix: added a missing C++ file, which caused a bug on Alpine Linux. Thx, [rbitanga-manticore](https://github.com/rbitanga-manticore).* diff --git a/package-lock.json b/package-lock.json index e987deb..ace38e6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "re2", - "version": "1.20.4", + "version": "1.20.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "re2", - "version": "1.20.4", + "version": "1.20.5", "hasInstallScript": true, "license": "BSD-3-Clause", "dependencies": { @@ -15,7 +15,7 @@ "node-gyp": "^9.4.0" }, "devDependencies": { - "@types/node": "^20.8.7", + "@types/node": "^20.8.8", "heya-unit": "^0.3.0", "typescript": "^5.2.2" } @@ -111,9 +111,9 @@ } }, "node_modules/@types/node": { - "version": "20.8.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.7.tgz", - "integrity": "sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ==", + "version": "20.8.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz", + "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==", "dev": true, "dependencies": { "undici-types": "~5.25.1" diff --git a/package.json b/package.json index 2d2db6a..0c19fae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "re2", - "version": "1.20.4", + "version": "1.20.5", "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", @@ -16,7 +16,7 @@ "node-gyp": "^9.4.0" }, "devDependencies": { - "@types/node": "^20.8.7", + "@types/node": "^20.8.8", "heya-unit": "^0.3.0", "typescript": "^5.2.2" },