Description
The url.parse() has been deprecated in Node v24 as seen here. I've seen in the @opentelemetry/instrumentation-http it is still used in the utils:
|
const parsedUrl = url.parse(path); |
I saw that url.parse has already been removed almost everywhere in this PR, but maybe this one got missed.
Expected result
There should not be any deprecation warnings in Node v24
Actual result
Currently only a deprecation warning is triggered in Node v24
I am happy to take over this one as it seems quite easy to fix 👀