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
v1.0.39 of this library depends on org.scala-lang:scala-library:2.13.1, which has a known security vulnerability
org.scala-lang:scala-library:2.13.1
Updating to the latest 2.13.10 release will fix this issue.
2.13.10
The text was updated successfully, but these errors were encountered:
Workaround is to force the use of a version of scala-library above 2.13.8. e.g. for Gradle users:
scala-library
2.13.8
configurations.all { resolutionStrategy.eachDependency { // Can be removed once https://github.com/mbknor/mbknor-jackson-jsonSchema/issues/174 resolved: if (requested.group == "org.scala-lang" && requested.name == "scala-library") { useVersion("2.13.10") because("security vulnerabilities found < 2.13.9: " + "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-36944") } } }
Sorry, something went wrong.
Update to latest scala-library
ef3e52b
Fixes security vulnerability: mbknor#174
No branches or pull requests
v1.0.39 of this library depends on
org.scala-lang:scala-library:2.13.1
, which has a known security vulnerabilityUpdating to the latest
2.13.10
release will fix this issue.The text was updated successfully, but these errors were encountered: