Skip to content
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

dependency(jetty): upgrade for security #5571

Merged
merged 1 commit into from Nov 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions framework/build.gradle
Expand Up @@ -70,8 +70,8 @@ dependencies {
compile group: 'com.google.api.grpc', name: 'proto-google-common-protos', version: '2.15.0'

// http
compile 'org.eclipse.jetty:jetty-server:9.4.49.v20220914'
compile 'org.eclipse.jetty:jetty-servlet:9.4.49.v20220914'
compile 'org.eclipse.jetty:jetty-server:9.4.53.v20231009'
compile 'org.eclipse.jetty:jetty-servlet:9.4.53.v20231009'
compile 'com.alibaba:fastjson:1.2.83'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not solve other dependency security also but only jetty? such as bcprov-jdk15on in https://github.com/tronprotocol/libp2p/pull/74/files.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if bcprov-jdk15on is required, it will be a stand-alone PR.

compile group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.1.1'
// end http
Expand Down