Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Support protobuf 3.22 or upper #2163
Support protobuf 3.22 or upper #2163
Changes from 36 commits
fbb68dd
5c013c0
7b5f955
f95fd57
f016a75
c94e488
0dc7575
8db4a61
0f0085a
1dcceaa
6fa4e95
93d347c
234ab40
8956193
5f3e6db
8a36378
2ecaf75
ace2e84
2e1af98
c562424
77f4ec1
1fa8631
d3db7c8
68aa11c
f63e145
0ba0fb2
f2e3009
53ef61b
85bea45
b903710
f783127
afed730
22e767c
ecdc611
43f5996
95fb02d
a947146
b24f299
052dfea
c73f9b8
7a2c75b
46caba6
5e08424
ef1f0be
bb90f44
edeed26
9bfce35
0d3b76f
67dc6ff
b8f2e5c
c996738
ec5f39e
fd9dc99
fdff03d
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Seems with new protobuf, the main SDK will no longer buildable with
WITH_ABSEIL=0
so this will be a required dependency. Can we separate the abseil dependency to protobuf related library only?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.
protobuf has a internal reference to abseil and will use it when building without
-Dprotobuf_ABSL_PROVIDER=package
, just like gRPC.I think we can ensure the compatibility only by using the same version of abseil for protobuf, gRPC and otel-cpp.