Kevin Lentin

Results 19 comments of Kevin Lentin

Still not sure peer dependency is the way to go but at least it now points to a recent version and I can actually install soap.

We use the latest we can of everything. That was the problem. We had axios 1.6 but soap required 0.27 and we couldn't build our software. This release solves that...

@DigitalBrainJS Any chance of having a look at this with the revision I made?

Point of clarity: The error itself is generated by NodeJS and appears to be triggered by something in its internal URL library. But normal usage of that library is fine....

simple-oauth2 5.0.0 OS: Oracle Enterprise Linux (RHEL based) 7.0 I believe I've narrowed it down some more and @hapi may be off the hook: ``` #!/usr/bin/env node use strict'; const...

Found it. It's @hapi/hoek/lib/clone as used by @hapi/hoek/lib/applyToDefaults as used by Wreck Specifically, this minimal case will kill it: ``` const url = new URL('http://proxy:443'); const proto = Object.getPrototypeOf(url); const...

The following comments are from Jordan Harband - TC39 (JS standards body) member, contributor to NodeJS, author of npm - on slack > Yes; you can’t naively copy any objects...

Thanks. Now I just have to hope that all the semvers along the way mean I'll get the latest because the module I'm using directly was last updated 12 months...

Still not 100% sure why wreck needs to deep clone its config params at all. Are callers really keeping references to sub objects and modifying them or something?