Skip to content

Commit 098b344

Browse files
committed
pm2@5.4.0
1 parent 9fd9f22 commit 098b344

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

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

1919
steps:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 5.4.0
2+
3+
- #5782 add autostart true||false feature by @ultimate-tester
4+
- fix UUID deprecation
5+
- updates modules
6+
17
## 5.3.1
28

39
- #5686 Switch from Travis CI to Github Actions

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "pm2",
33
"preferGlobal": true,
4-
"version": "5.3.1",
4+
"version": "5.4.0",
55
"engines": {
6-
"node": ">=10.0.0"
6+
"node": ">=12.0.0"
77
},
88
"directories": {
99
"bin": "./bin",

test/e2e/logs/log-json.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ node -pe 'JSON.parse(process.argv[1])' `cat output.log`
4747
spec 'should have parsed valid json'
4848

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

5353
$pm2 delete all

0 commit comments

Comments
 (0)