You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our pipeline job installs current piral-cli for our shell build. Starting recently, our pipeline is unable to install piral-cli package, because one of the dependencies uses deprecated querystring lib. Please upgrade piral-cli to the recommended URLSearchParams.
$ npm i piral-cli -g
added 48 packages in 8s
8 packages are looking for funding
run `npm fund` for details
$ npm i
npm WARN deprecated querystring@0.2.1: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
Steps to Reproduce
remove querystring from npm cache
npm i piral-cli -g
Expected behavior
Npm installs current piral-cli package version.
Actual behavior
Npm stops piral-cli package installation with warning. As a workaround we are able to install with --force.
Possible Origin/Solution
Inspect dependencies and raise version of dependency which uses querystring lib.
The text was updated successfully, but these errors were encountered:
So not sure what you are seeing / your system is reporting.
If I look at the code you've provided then I see that the npm i -g piral-cli installs without warnings. So the problem is in your npm i (not sure where this is running - the only dependency using querystring in this code base is piral-cli-webpack5).
Bug Report
For more information, see the
CONTRIBUTING
guide.Prerequisites
Environment Details and Version
piral-cli: 1.5.2
Description
Our pipeline job installs current piral-cli for our shell build. Starting recently, our pipeline is unable to install piral-cli package, because one of the dependencies uses deprecated querystring lib. Please upgrade piral-cli to the recommended URLSearchParams.
Steps to Reproduce
npm i piral-cli -g
Expected behavior
Npm installs current piral-cli package version.
Actual behavior
Npm stops piral-cli package installation with warning. As a workaround we are able to install with
--force
.Possible Origin/Solution
Inspect dependencies and raise version of dependency which uses querystring lib.
The text was updated successfully, but these errors were encountered: