re2 1.20.1 → 1.20.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/actions/linux-alpine-node-16/entrypoint.sh +2 -0
- package/.github/actions/linux-alpine-node-18/entrypoint.sh +3 -1
- package/.github/actions/linux-alpine-node-20/entrypoint.sh +3 -1
- package/.github/actions/linux-node-12/entrypoint.sh +2 -0
- package/.github/actions/linux-node-18/entrypoint.sh +3 -1
- package/.github/actions/linux-node-20/entrypoint.sh +3 -1
- package/README.md +1 -0
- package/binding.gyp +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -353,6 +353,7 @@ console.log('re2_res : ' + re2_res); // prints: re2_res : abc,a,b,c
|
|
|
353
353
|
|
|
354
354
|
## Release history
|
|
355
355
|
|
|
356
|
+
- 1.20.2 *Fix: added a missing C++ file, which caused a bug on Alpine Linux. Thx, [rbitanga-manticore](https://github.com/rbitanga-manticore).*
|
|
356
357
|
- 1.20.1 *Fix: files included in the npm package to build the C++ code.*
|
|
357
358
|
- 1.20.0 *Updated RE2. New version uses `abseil-cpp` and required the adaptation work. Thx, [Stefano Rivera](https://github.com/stefanor).*
|
|
358
359
|
- 1.19.2 *Bugfix: infinite loop in matchAll() with empty matches. Thx, [ziyunfei](https://github.com/ziyunfei).*
|
package/binding.gyp
CHANGED
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"vendor/abseil-cpp/absl/base/internal/throw_delegate.cc",
|
|
48
48
|
"vendor/abseil-cpp/absl/base/internal/unscaledcycleclock.cc",
|
|
49
49
|
"vendor/abseil-cpp/absl/container/internal/raw_hash_set.cc",
|
|
50
|
+
"vendor/abseil-cpp/absl/debugging/internal/address_is_readable.cc",
|
|
50
51
|
"vendor/abseil-cpp/absl/debugging/stacktrace.cc",
|
|
51
52
|
"vendor/abseil-cpp/absl/debugging/symbolize.cc",
|
|
52
53
|
"vendor/abseil-cpp/absl/flags/commandlineflag.cc",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "re2",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.2",
|
|
4
4
|
"description": "Bindings for RE2: fast, safe alternative to backtracking regular expression engines.",
|
|
5
5
|
"homepage": "https://github.com/uhop/node-re2",
|
|
6
6
|
"bugs": "https://github.com/uhop/node-re2/issues",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"node-gyp": "^9.4.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@types/node": "^20.
|
|
19
|
+
"@types/node": "^20.5.3",
|
|
20
20
|
"heya-unit": "^0.3.0",
|
|
21
21
|
"typescript": "^5.1.6"
|
|
22
22
|
},
|