Skip to content

Releases: jeffbski/wait-on

v8.0.0 - breaking change for http unix socket use

20 Aug 01:04
Compare
Choose a tag to compare

Updated for security vulnerabilities with axios@1.7.4 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

14 Nov 17:46
Compare
Choose a tag to compare

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

03 Nov 00:52
Compare
Choose a tag to compare

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

v7.0.1

19 Dec 17:42
Compare
Choose a tag to compare

Removed unnecessary eslint-plugin-standard. It was no longer needed since already included in another package.

v7.0.0

19 Dec 17:41
Compare
Choose a tag to compare

Updated dependencies:

  • minimist
  • eslint
  • minimatch
  • axios
  • mocha
  • rxjs

The update to latest mocha removed support for Node.js below 12.

v6.0.1

11 Feb 01:31
Compare
Choose a tag to compare

Updated minor dependencies to fix vulnerabilities

v6.0.0

26 Jun 23:52
Compare
Choose a tag to compare

Other than dropping support for Node.js v8 there should be no other breaking changes.

Node.js v8 was no longer supported by the yargs parser. Node.js v8 users should use v5.3.0

v5.3.0

17 Mar 20:14
Compare
Choose a tag to compare

Allow resources to be passed in via config file. Thanks @michaelmerrill for the PR.

Example config.js file with resources

module.exports = {
  resources: ['http://localhost:8123', 'http://localhost:8123/foo'],
};

v5.2.2

17 Mar 19:59
Compare
Choose a tag to compare

Updated lodash@4.17.21

Updated lodash dependency to close vulnerability

v5.2.1

26 Dec 17:58
Compare
Choose a tag to compare

Update dependencies