re2 1.23.1 → 1.23.3

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -416,6 +416,8 @@ The same applies to `\P{...}`.
416
416
 
417
417
  ## Release history
418
418
 
419
+ - 1.23.3 *Updated Abseil and dev dependencies.*
420
+ - 1.23.2 *Updated dev dependencies.*
419
421
  - 1.23.1 *Updated Abseil and dev dependencies.*
420
422
  - 1.23.0 *Updated all dependencies, upgraded tooling. New feature: `RE2.Set` (thx, [Wes](https://github.com/wrmedford)).*
421
423
  - 1.22.3 *Technical release: upgraded QEMU emulations to native ARM runners to speed up the build process.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "re2",
3
- "version": "1.23.1",
3
+ "version": "1.23.3",
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,18 +16,19 @@
16
16
  ],
17
17
  "dependencies": {
18
18
  "install-artifact-from-github": "^1.4.0",
19
- "nan": "^2.24.0",
20
- "node-gyp": "^12.1.0"
19
+ "nan": "^2.25.0",
20
+ "node-gyp": "^12.2.0"
21
21
  },
22
22
  "devDependencies": {
23
- "@types/node": "^25.0.10",
24
- "nano-benchmark": "^1.0.7",
25
- "tape-six": "^1.4.5",
26
- "tape-six-proc": "^1.1.6",
23
+ "@types/node": "^25.2.2",
24
+ "nano-benchmark": "^1.0.9",
25
+ "tape-six": "^1.7.0",
26
+ "tape-six-proc": "^1.2.2",
27
27
  "typescript": "^5.9.3"
28
28
  },
29
29
  "scripts": {
30
30
  "test": "tape6-proc --flags FO",
31
+ "test:seq": "tape6-seq --flags FO",
31
32
  "save-to-github": "save-to-github-cache --artifact build/Release/re2.node",
32
33
  "install": "install-from-cache --artifact build/Release/re2.node --host-var RE2_DOWNLOAD_MIRROR --skip-path-var RE2_DOWNLOAD_SKIP_PATH --skip-ver-var RE2_DOWNLOAD_SKIP_VER || node-gyp -j max rebuild",
33
34
  "verify-build": "node scripts/verify-build.js",