re2 1.20.7 → 1.20.8

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 +1 -0
  2. 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.8 *Updated deps: `install-artifact-from-github`. A default HTTPS agent is used for fetching precompiled artifacts avoiding unnecessary long wait times.*
356
357
  - 1.20.7 *Added more `absail-cpp` files that manifested itself on ARM Alpine. Thx, [Laura Hausmann](https://github.com/zotanmew).*
357
358
  - 1.20.6 *Updated deps, notably `node-gyp`.*
358
359
  - 1.20.5 *Updated deps, added Node 21 and retired Node 16 as pre-compilation targets.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "re2",
3
- "version": "1.20.7",
3
+ "version": "1.20.8",
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",
@@ -11,7 +11,7 @@
11
11
  "test": "tests"
12
12
  },
13
13
  "dependencies": {
14
- "install-artifact-from-github": "^1.3.3",
14
+ "install-artifact-from-github": "^1.3.5",
15
15
  "nan": "^2.18.0",
16
16
  "node-gyp": "^10.0.1"
17
17
  },