autorest v2 may fail with this error on node 24:
[DEP0169] DeprecationWarning: url.parse() behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for url.parse() vulnerabilities.
Fix would be to change this code, to use the new URL api:
|
import { parse } from "url"; |
autorest v2 may fail with this error on node 24:
Fix would be to change this code, to use the new
URLapi:autorest/src/autorest-core/lib/ref/uri.ts
Line 14 in 5033079