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.
@@ -1,5 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
+ set -e
4
+
3
5
  npm config set unsafe-perm true
4
6
  export USERNAME=`whoami`
5
7
  export DEVELOPMENT_SKIP_GETTING_ASSET=true
@@ -1,6 +1,8 @@
1
1
  #!/bin/sh
2
2
 
3
- npm config set unsafe-perm true
3
+ set -e
4
+
5
+ #npm config set unsafe-perm true
4
6
  export USERNAME=`whoami`
5
7
  export DEVELOPMENT_SKIP_GETTING_ASSET=true
6
8
  npm i
@@ -1,6 +1,8 @@
1
1
  #!/bin/sh
2
2
 
3
- npm config set unsafe-perm true
3
+ set -e
4
+
5
+ #npm config set unsafe-perm true
4
6
  export USERNAME=`whoami`
5
7
  export DEVELOPMENT_SKIP_GETTING_ASSET=true
6
8
  npm i
@@ -1,5 +1,7 @@
1
1
  #!/bin/bash -l
2
2
 
3
+ set -e
4
+
3
5
  NVM_DIR=$HOME/.nvm
4
6
 
5
7
  curl -sS -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
@@ -1,6 +1,8 @@
1
1
  #!/bin/sh
2
2
 
3
- npm config set unsafe-perm true
3
+ set -e
4
+
5
+ #npm config set unsafe-perm true
4
6
  export USERNAME=`whoami`
5
7
  export DEVELOPMENT_SKIP_GETTING_ASSET=true
6
8
  npm i
@@ -1,6 +1,8 @@
1
1
  #!/bin/sh
2
2
 
3
- npm config set unsafe-perm true
3
+ set -e
4
+
5
+ #npm config set unsafe-perm true
4
6
  export USERNAME=`whoami`
5
7
  export DEVELOPMENT_SKIP_GETTING_ASSET=true
6
8
  npm i
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.1",
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.4.5",
19
+ "@types/node": "^20.5.3",
20
20
  "heya-unit": "^0.3.0",
21
21
  "typescript": "^5.1.6"
22
22
  },