-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
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
[CVE Fix] Fixes CVE-2022-42920 by forcing bcel version to resovle to 6.6 #2275
[CVE Fix] Fixes CVE-2022-42920 by forcing bcel version to resovle to 6.6 #2275
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2275 +/- ##
============================================
- Coverage 61.05% 60.99% -0.07%
+ Complexity 3270 3264 -6
============================================
Files 259 259
Lines 18337 18337
Branches 3248 3248
============================================
- Hits 11196 11184 -12
- Misses 5555 5563 +8
- Partials 1586 1590 +4
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Is there any way to track when a new spotbugs gradle plugin is release? https://plugins.gradle.org/plugin/com.github.spotbugs In this discussion with the maintainer of spotbugs I see that 4.7.4 has not been released yet and 4.7.4 contains an update for bcel from 6.5.0 -> 6.6.1: spotbugs/spotbugs#2251 Once 4.7.4 is released the gradle plugin also needs to follow-up with a release. |
I'm not sure about the way to track the release automatically but I will keep an eye out for 4.7.4, and will update our build.gradle once it is out. |
Signed-off-by: Darshit Chanpura <[email protected]>
ab641f7
to
15b0b40
Compare
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-2.4 2.4
# Navigate to the new working tree
cd .worktrees/backport-2.4
# Create a new branch
git switch --create backport/backport-2275-to-2.4
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 cad7c7201e902aeb711b407648d41d3c55fe7a49
# Push it to GitHub
git push --set-upstream origin backport/backport-2275-to-2.4
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.4 Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-2.x 2.x
# Navigate to the new working tree
cd .worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-2275-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 cad7c7201e902aeb711b407648d41d3c55fe7a49
# Push it to GitHub
git push --set-upstream origin backport/backport-2275-to-2.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.x Then, create a pull request where the |
Issues Resolved
Resolves #2248
Check List
- [ ] New functionality includes testing- [ ] New functionality has been documentedBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.