Releases: jeffbski/wait-on
v9.0.1
v9.0.0
Updating major version to align with removal of unspported versions of Node.js
wait-on will continue to support the active and maintained releases listed at https://nodejs.org/en/about/previous-releases which currently is 20, 22, 24.
There are no other breaking changes other than changing the versions of Node.js that are supported.
v8.0.5
Update minor deps including [email protected] and joi@18
v8.0.4
Update dependencies including [email protected] which also updated [email protected]
v8.0.3
- update minor deps
- update eslint to v9
v8.0.2
Dependency updates:
- [email protected]
- [email protected]
- cross-spawn - npm audit fix
v8.0.0 - breaking change for http unix socket use
Updated for security vulnerabilities with [email protected] and braces.
Breaking change in using latest axios with a unix socket URL
As part of the axios update, the syntax for using a socket with an http URL in axios has changed so you must specify the protocol and server
For example:
http://unix:SOCKETPATH:http://server/foo/bar
instead of just using only the path (no protocol and no server)
http://unix:SOCKETPATH:/foo/bar
Due to this change, I have updated my tests, docs, bumped the major version.
v7.2.0
Update axios from 0.27.2 to latest 1.6.1 which fixes security vulnerability CVE-2023-45857.
Thanks @AndrewMax for the PR #147 and also for those that confirmed it.
v7.1.0
Update dependencies.
Add ability to specify timeout, httpTimeout, and tcpTimeout with a unit (ms, m, s, h), defaults to ms if not specified. Thanks @ntkoopman