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

Update grpc version to 1.59.1 and protobuf to 3.24.0 #1008

Merged
merged 5 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ and what APIs have changed, if applicable.

## [Unreleased]

## [29.57.1] - 2024-06-17
- Update grpc version to 1.59.1 and protobuf to 3.24.0

## [29.57.0] - 2024-06-16
- Add xds client metric for receiving invalid resource

Expand Down Expand Up @@ -5701,7 +5704,8 @@ patch operations can re-use these classes for generating patch messages.

## [0.14.1]

[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.57.0...master
[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.57.1...master
[29.57.1]: https://github.com/linkedin/rest.li/compare/v29.57.0...v29.57.1
[29.57.0]: https://github.com/linkedin/rest.li/compare/v29.56.1...v29.57.0
[29.56.1]: https://github.com/linkedin/rest.li/compare/v29.56.0...v29.56.1
[29.56.0]: https://github.com/linkedin/rest.li/compare/v29.55.0...v29.56.0
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@ project.ext.externalDependency = [
"classgraph": "io.github.classgraph:classgraph:4.8.149",

// for integrating with xDS service discovery
'grpcNettyShaded': 'io.grpc:grpc-netty-shaded:1.45.1',
'grpcProtobuf': 'io.grpc:grpc-protobuf:1.45.1',
'grpcStub': 'io.grpc:grpc-stub:1.45.1',
'protoc': 'com.google.protobuf:protoc:3.21.7',
'protobufJava': 'com.google.protobuf:protobuf-java:3.21.7',
'protobufJavaUtil': 'com.google.protobuf:protobuf-java-util:3.21.7',
'grpcNettyShaded': 'io.grpc:grpc-netty-shaded:1.59.1',
'grpcProtobuf': 'io.grpc:grpc-protobuf:1.59.1',
'grpcStub': 'io.grpc:grpc-stub:1.59.1',
'protoc': 'com.google.protobuf:protoc:3.24.0',
'protobufJava': 'com.google.protobuf:protobuf-java:3.24.0',
'protobufJavaUtil': 'com.google.protobuf:protobuf-java-util:3.24.0',
'envoyApi': 'io.envoyproxy.controlplane:api:0.1.35',
];

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=29.57.0
version=29.57.1
group=com.linkedin.pegasus
Copy link
Contributor

Choose a reason for hiding this comment

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

Please update the minor version (29.58.0) since this is a significant change.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I don't think we're introducing any new feature in pegasus to bump minor version. pegasus features should ideally remain the same. since this is backward compatible major version bump is also not required.

org.gradle.configureondemand=true
org.gradle.parallel=true
Expand Down
Loading