Skip to content

Commit

Permalink
pm2@5.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Unitech committed May 23, 2024
1 parent 9fd9f22 commit 098b344
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [20.x, 18.x]
node-version: [22.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 5.4.0

- #5782 add autostart true||false feature by @ultimate-tester
- fix UUID deprecation
- updates modules

## 5.3.1

- #5686 Switch from Travis CI to Github Actions
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "pm2",
"preferGlobal": true,
"version": "5.3.1",
"version": "5.4.0",
"engines": {
"node": ">=10.0.0"
"node": ">=12.0.0"
},
"directories": {
"bin": "./bin",
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/logs/log-json.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ node -pe 'JSON.parse(process.argv[1])' `cat output.log`
spec 'should have parsed valid json'

OUT=`cat output.log | grep -o "$CURRENT_YEAR" | wc -l`
[ $OUT -eq 1 ] || fail "should contains custom timestamp"
[ $OUT -ge 1 ] || fail "should contains custom timestamp"
success "should contains custom timestamp"

$pm2 delete all
Expand Down

0 comments on commit 098b344

Please sign in to comment.