-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Upgrade dependencies #4047
Upgrade dependencies #4047
Conversation
Signed-off-by: Vacha Shah <[email protected]>
Signed-off-by: Vacha Shah <[email protected]>
Gradle Check (Jenkins) Run Completed with:
|
@@ -248,7 +248,7 @@ private void assertSegmentStats(int numberOfReplicas) throws IOException { | |||
|
|||
/** | |||
* Waits until the replica is caught up to the latest primary segments gen. | |||
* @throws Exception | |||
* @throws Exception if assertion fails |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 ty
Gradle check failure:
|
Signed-off-by: Vacha Shah <[email protected]>
@@ -0,0 +1,202 @@ | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@VachaShah @reta : Are there any guidelines for reviewing license content.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got the license from https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server/9.4.48.v20220622 Licenses section.
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
@@ Coverage Diff @@
## main #4047 +/- ##
============================================
- Coverage 70.65% 70.62% -0.04%
- Complexity 56904 56922 +18
============================================
Files 4579 4582 +3
Lines 273780 273913 +133
Branches 40143 40158 +15
============================================
+ Hits 193445 193446 +1
- Misses 64119 64219 +100
- Partials 16216 16248 +32
Help us with your feedback. Take ten seconds to tell us how you rate us. |
@reta Can you review this again please? |
@@ -44,4 +44,6 @@ dependencies { | |||
api "com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}" | |||
api 'net.minidev:json-smart:2.4.8' | |||
api "org.mockito:mockito-core:${versions.mockito}" | |||
api "com.google.protobuf:protobuf-java:3.21.2" | |||
api "org.eclipse.jetty.websocket:websocket-client:9.4.48.v20220622" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this dependency could be excluded, there is no WS usage anywhere (afaik), right?
plugins/repository-hdfs/build.gradle
Outdated
@@ -83,6 +83,7 @@ dependencies { | |||
api 'net.minidev:json-smart:2.4.8' | |||
api 'org.apache.zookeeper:zookeeper:3.8.0' | |||
api "io.netty:netty-all:${versions.netty}" | |||
api "org.eclipse.jetty:jetty-server:9.4.48.v20220622" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we could exclude this one as well, is it really needed?
Signed-off-by: Vacha Shah <[email protected]>
Gradle Check (Jenkins) Run Completed with:
|
* Upgrading dependencies for hadoop and aws-java-sdk Signed-off-by: Vacha Shah <[email protected]> * Fixing precommit Signed-off-by: Vacha Shah <[email protected]> * Upgrading transitive dependencies Signed-off-by: Vacha Shah <[email protected]> * Excluding transitive dependencies Signed-off-by: Vacha Shah <[email protected]>
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-4047-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 88f5537b10a77cd1a7aa32990df54e581f1ea369
# Push it to GitHub
git push --set-upstream origin backport/backport-4047-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 |
* Upgrading dependencies for hadoop and aws-java-sdk Signed-off-by: Vacha Shah <[email protected]> * Fixing precommit Signed-off-by: Vacha Shah <[email protected]> * Upgrading transitive dependencies Signed-off-by: Vacha Shah <[email protected]> * Excluding transitive dependencies Signed-off-by: Vacha Shah <[email protected]> (cherry picked from commit 88f5537)
* Upgrading dependencies for hadoop and aws-java-sdk Signed-off-by: Vacha Shah <[email protected]> * Fixing precommit Signed-off-by: Vacha Shah <[email protected]> * Upgrading transitive dependencies Signed-off-by: Vacha Shah <[email protected]> * Excluding transitive dependencies Signed-off-by: Vacha Shah <[email protected]> (cherry picked from commit 88f5537) (cherry picked from commit 7d92565)
* Upgrade dependencies (#4047) * Upgrading dependencies for hadoop and aws-java-sdk Signed-off-by: Vacha Shah <[email protected]> * Fixing precommit Signed-off-by: Vacha Shah <[email protected]> * Upgrading transitive dependencies Signed-off-by: Vacha Shah <[email protected]> * Excluding transitive dependencies Signed-off-by: Vacha Shah <[email protected]> (cherry picked from commit 88f5537) * Removing seg-rep IT class from the scope of this backport The original change included a javadoc update to the IT class, but the test class was never backported from #3743 to 2.x. Since the scope of this change is to backport dependency upgrades only, this class has been removed. Signed-off-by: Kartik Ganesh <[email protected]> Co-authored-by: Vacha Shah <[email protected]>
* Upgrade dependencies (#4047) * Upgrading dependencies for hadoop and aws-java-sdk Signed-off-by: Vacha Shah <[email protected]> * Fixing precommit Signed-off-by: Vacha Shah <[email protected]> * Upgrading transitive dependencies Signed-off-by: Vacha Shah <[email protected]> * Excluding transitive dependencies Signed-off-by: Vacha Shah <[email protected]> (cherry picked from commit 88f5537) (cherry picked from commit 7d92565) * Removing seg-rep IT class from the scope of this backport The original change included a javadoc update to the IT class, but the test class was never backported from #3743 to 2.x. Since the scope of this change is to backport dependency upgrades only, this class has been removed. Signed-off-by: Kartik Ganesh <[email protected]> (cherry picked from commit d6ead92) Co-authored-by: Vacha Shah <[email protected]>
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-1.3 1.3
# Navigate to the new working tree
pushd ../.worktrees/backport-1.3
# Create a new branch
git switch --create backport/backport-4047-to-1.3
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 88f5537b10a77cd1a7aa32990df54e581f1ea369
# Push it to GitHub
git push --set-upstream origin backport/backport-4047-to-1.3
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/backport-1.3 Then, create a pull request where the |
Signed-off-by: Vacha Shah [email protected]
Description
Upgrading dependencies for:
Issues Resolved
[List any issues this PR will resolve]
Check List
By 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.