Skip to content

Commit

Permalink
Require node 18 or higher, update to 6.0.0
Browse files Browse the repository at this point in the history
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 6.0.0.
  • Loading branch information
mvolz committed Oct 29, 2024
1 parent f4f793f commit 05852a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "service-runner",
"version": "5.0.0",
"version": "6.0.0",
"description": "Generic nodejs service supervisor / cluster runner",
"main": "service-runner.js",
"bin": {
Expand Down Expand Up @@ -31,7 +31,7 @@
},
"homepage": "https://github.com/wikimedia/service-runner",
"engines": {
"node": ">=16"
"node": ">=18"
},
"dependencies": {
"bluebird": "^3.7.2",
Expand Down

0 comments on commit 05852a5

Please sign in to comment.