-
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
Updated 1.3.9 release note to include latest version of Netty #6698
Updated 1.3.9 release note to include latest version of Netty #6698
Conversation
Signed-off-by: owaiskazi19 <owaiskazi19@gmail.com>
TY, I was about to come back on drop a comment. I approved both PRs and merged them :/ |
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## main #6698 +/- ##
============================================
+ Coverage 70.74% 70.78% +0.04%
- Complexity 59215 59264 +49
============================================
Files 4809 4809
Lines 283455 283455
Branches 40868 40868
============================================
+ Hits 200520 200651 +131
+ Misses 66511 66354 -157
- Partials 16424 16450 +26 see 517 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.x 1.x
# Navigate to the new working tree
pushd ../.worktrees/backport-1.x
# Create a new branch
git switch --create backport/backport-6698-to-1.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 973ba4f0fcdeb6ffdd7264ac63d948b8f2141e2c
# Push it to GitHub
git push --set-upstream origin backport/backport-6698-to-1.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/backport-1.x 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-1.3 1.3
# Navigate to the new working tree
pushd ../.worktrees/backport-1.3
# Create a new branch
git switch --create backport/backport-6698-to-1.3
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 973ba4f0fcdeb6ffdd7264ac63d948b8f2141e2c
# Push it to GitHub
git push --set-upstream origin backport/backport-6698-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 |
(cherry picked from commit 973ba4f) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
(cherry picked from commit 973ba4f) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
…arch-project#6698) Signed-off-by: Mingshi Liu <mingshl@amazon.com>
Description
With the latest Netty PR merged to
1.3
. Updating the release doc to include the new version. Will backport this PR to1.x
and1.3
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.