-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
api: freeze of v2 API, cut v4alpha API. #10672
Conversation
This patch performs a major version freeze and bump by modifying package_version_status, using the tooling developed in envoyproxy#10636. Specifically: * v2 APIs are frozen (except for where they are the latest in their package history and still active) * v3 APIs are transitioned to be active * Candidate v4alpha APIs are generated (not used by Envoy yet) Fixes envoyproxy#10355 Risk level: medium (entire API's files are modified, visually verified to ensure things look sane, all tests pass) Testing: CI Signed-off-by: Harvey Tuch <htuch@google.com>
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.
Nice, awesome work.
Per offline convo, this PR will not yield any user error if someone accidentally modifies the v2 API. The changes just won't forward propagate. @htuch and I agreed that we can snap 1.14.0 with this PR, but we should do a fast follow to have a CI check that makes sure that moving forward the only changes to v2 protos are comment/doc changes, and no actual API changes. This is mostly to avoid developer confusion. Thank you!
Signed-off-by: Harvey Tuch <htuch@google.com>
Signed-off-by: Harvey Tuch <htuch@google.com>
This patch performs a major version freeze and bump by modifying
package_version_status, using the tooling developed in #10636.
Specifically:
package history and still active)
Fixes #10355
Risk level: medium (entire API's files are modified, visually verified
to ensure things look sane, all tests pass)
Testing: CI
Signed-off-by: Harvey Tuch htuch@google.com