Skip to content

Commit 27cb88f

Browse files
committed
Require node 18 or higher, update to 5.1.0
Due to localhost now pointing to IPv6 instead of IPv4 as of node 18, TestServer now explicitly serves 127.0.0.1 instead of localhost. Consumers who import the TestServer from service runner will need to update their test runner applications to serve from 127.0.0.1 as well in order to upgrade from node16 to node 18, in addition to upgrading from 5.0.0 to 5.1.0.
1 parent f4f793f commit 27cb88f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "service-runner",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "Generic nodejs service supervisor / cluster runner",
55
"main": "service-runner.js",
66
"bin": {
@@ -31,7 +31,7 @@
3131
},
3232
"homepage": "https://github.com/wikimedia/service-runner",
3333
"engines": {
34-
"node": ">=16"
34+
"node": ">=18"
3535
},
3636
"dependencies": {
3737
"bluebird": "^3.7.2",

0 commit comments

Comments
 (0)