We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This CVE: https://nvd.nist.gov/vuln/detail/CVE-2019-11358 resulted in some security alerts in projects which use semantic-ui-css
semantic-ui-css
This is caused by the jquery dependency.
jquery
Unfortunately you cannot easily update the depencendies because the dependency is to version x.*
x.*
"dependencies": { "jquery": "x.*" }
I had to update the yarn.lock files manually in several packages to update this dependency. (see Charterhouse/hush-hush@d742661 )
Can you make a new minor release (even without changes) so people can fix the problem by running: yarn upgrade-interactive?
yarn upgrade-interactive
The text was updated successfully, but these errors were encountered:
Because they're specifying x.*, this doesn't actually require another release.
With npm, I've found that the following works:
npm
package.json
npm install
Doesn't require any manual fiddling with package-lock.json or deleting node_modules. Hopefully a similar approach will work for folks on Yarn :)
package-lock.json
node_modules
Sorry, something went wrong.
No branches or pull requests
This CVE: https://nvd.nist.gov/vuln/detail/CVE-2019-11358 resulted in some security alerts in projects which use
semantic-ui-css
This is caused by the
jquery
dependency.Unfortunately you cannot easily update the depencendies because the dependency is to version
x.*
I had to update the yarn.lock files manually in several packages to update this dependency. (see Charterhouse/hush-hush@d742661 )
Can you make a new minor release (even without changes) so people can fix the problem by running:
yarn upgrade-interactive
?The text was updated successfully, but these errors were encountered: