Skip to content

Commit

Permalink
Merge branch 'master' into fix-match-groups-replace
Browse files Browse the repository at this point in the history
  • Loading branch information
uhop authored Aug 23, 2023
2 parents 3a640ba + 8664d4a commit 6272a8f
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .github/actions/linux-alpine-node-16/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh

set -e

npm config set unsafe-perm true
export USERNAME=`whoami`
export DEVELOPMENT_SKIP_GETTING_ASSET=true
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/linux-alpine-node-18/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/sh

npm config set unsafe-perm true
set -e

#npm config set unsafe-perm true
export USERNAME=`whoami`
export DEVELOPMENT_SKIP_GETTING_ASSET=true
npm i
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/linux-alpine-node-20/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/sh

npm config set unsafe-perm true
set -e

#npm config set unsafe-perm true
export USERNAME=`whoami`
export DEVELOPMENT_SKIP_GETTING_ASSET=true
npm i
Expand Down
2 changes: 2 additions & 0 deletions .github/actions/linux-node-12/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash -l

set -e

NVM_DIR=$HOME/.nvm

curl -sS -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/linux-node-18/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/sh

npm config set unsafe-perm true
set -e

#npm config set unsafe-perm true
export USERNAME=`whoami`
export DEVELOPMENT_SKIP_GETTING_ASSET=true
npm i
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/linux-node-20/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/sh

npm config set unsafe-perm true
set -e

#npm config set unsafe-perm true
export USERNAME=`whoami`
export DEVELOPMENT_SKIP_GETTING_ASSET=true
npm i
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,8 @@ console.log('re2_res : ' + re2_res); // prints: re2_res : abc,a,b,c

## Release history

- 1.20.2 *Fix: subsequent numbers are incorporated into group if they would form a legal group reference.*
- 1.20.3 *Fix: subsequent numbers are incorporated into group if they would form a legal group reference.*
- 1.20.2 *Fix: added a missing C++ file, which caused a bug on Alpine Linux. Thx, [rbitanga-manticore](https://github.com/rbitanga-manticore).*
- 1.20.1 *Fix: files included in the npm package to build the C++ code.*
- 1.20.0 *Updated RE2. New version uses `abseil-cpp` and required the adaptation work. Thx, [Stefano Rivera](https://github.com/stefanor).*
- 1.19.2 *Bugfix: infinite loop in matchAll() with empty matches. Thx, [ziyunfei](https://github.com/ziyunfei).*
Expand Down
1 change: 1 addition & 0 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"vendor/abseil-cpp/absl/base/internal/throw_delegate.cc",
"vendor/abseil-cpp/absl/base/internal/unscaledcycleclock.cc",
"vendor/abseil-cpp/absl/container/internal/raw_hash_set.cc",
"vendor/abseil-cpp/absl/debugging/internal/address_is_readable.cc",
"vendor/abseil-cpp/absl/debugging/stacktrace.cc",
"vendor/abseil-cpp/absl/debugging/symbolize.cc",
"vendor/abseil-cpp/absl/flags/commandlineflag.cc",
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"node-gyp": "^9.4.0"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@types/node": "^20.5.3",
"heya-unit": "^0.3.0",
"typescript": "^5.1.6"
},
Expand Down

0 comments on commit 6272a8f

Please sign in to comment.