Mike McCready
Mike McCready
The warning has now changed to ```text npm WARN deprecated [email protected]: Debug versions >=3.2.0 =4
Updated installation log to current output: ```text npm WARN deprecated [email protected]: Debug versions >=3.2.0 =4
- related vulnerabilities are also reported in #426
@ttys3 Do you have any logs which show that the npm module [tr46](https://www.npmjs.com/package/tr46) is used by [fast-url-parser](https://www.npmjs.com/package/fast-url-parser) from this repo?
@ttys3 > I have updated the content and removed the non-related words Your workaround is for a different module.
The issue is reproducible with ```shell git clone https://github.com/petkaantonov/urlparser cd urlparser npm install node --trace-deprecation ./test/index.js ``` The line of code which needs changing is https://github.com/petkaantonov/urlparser/blob/545dcd3ecf148ac9e27a8910db54f9a6f74f441b/src/urlparser.js#L401 and this can be...
@cedx > Why not simply use the [url core module](https://nodejs.org/api/url.html)? The problem is when `fast-url-parser` is used by another npm module that you have no control over, so it's not...
- The example repo https://github.com/webappio/react-e2e-example is based on the legacy Cypress version `[email protected]`. Are there any plans to update this example to a current Cypress `13.x` version? - Ubuntu `18.04`...
- I noticed this issue when looking at https://github.com/tcort/markdown-link-check/issues/291 It seems that `npm test` on Windows 11 fails due to two incompatibilities in [test/markdown-link-check.test.js](https://github.com/tcort/markdown-link-check/blob/master/test/markdown-link-check.test.js): 1. not compatible with IPv6 loopback...
Logs with workaround for IPv6 problem added. In this case, instead of 7 test failing, the number of failed tests is reduced to 3. ```text $ NODE_OPTIONS='--dns-result-order=ipv4first' npm test >...