-
Notifications
You must be signed in to change notification settings - Fork 333
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 references to deprecated protobuf lib #3499
Comments
I think the main blocker is the generated Envoy protobufs, envoyproxy/go-control-plane#524. |
This issue was inactive for 30 days it will be reviewed in the next triage meeting and might be closed. |
This issue was inactive for 90 days. It will be reviewed in the next triage meeting and might be closed. |
This issue was inactive for 90 days. It will be reviewed in the next triage meeting and might be closed. |
This was introduced to support envoy < 1.20 which we no longer need to support xref #3499 Signed-off-by: Charly Molter <[email protected]>
This was introduced to support envoy < 1.20 which we no longer need to support xref #3499 --------- Signed-off-by: Charly Molter <[email protected]> Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This issue was inactive for 90 days. It will be reviewed in the next triage meeting and might be closed. |
This issue was inactive for 90 days. It will be reviewed in the next triage meeting and might be closed. |
Looks like there is one more place: https://github.com/kumahq/kuma/blob/master/pkg/plugins/policies/meshloadbalancingstrategy/plugin/xds/lbconfigurer.go#L5 |
This issue was inactive for 90 days. It will be reviewed in the next triage meeting and might be closed. |
This issue was inactive for 90 days. It will be reviewed in the next triage meeting and might be closed. |
Hi ! |
on the way |
Finally ! That was such a long way to go 😅! Through xds, envoy, go-control-plane ! |
Unfortunatlly, the latest v0.12.0 I'll do this migration once our dependency implemented it. |
The latest still supports v1 protobuf but the main branch doesn't, see |
The main branch still include the |
Yes but that's not a direct dependency 😅. |
Oh, you're right. |
still blocked by envoyproxy/go-control-plane#875 |
We can't totally get rid of the old protobuf dependency due to golang/protobuf#1374 |
What happened?
Kuma code imports
github.com/golang/protobuf/proto
in a number of places. This package is deprecated in favor ofgoogle.golang.org/protobuf/proto
. Should update everything to recommended package.Unfortunately, the two packages are not compatible, so need to update all dependencies of any changed module at the same time.
The text was updated successfully, but these errors were encountered: