-
Notifications
You must be signed in to change notification settings - Fork 893
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
Consistently format enums, fix non-identifier IDs. #1863
Consistently format enums, fix non-identifier IDs. #1863
Conversation
@@ -22,6 +22,10 @@ release. | |||
|
|||
### Semantic Conventions | |||
|
|||
- BREAKING: Change enum member IDs to lowercase without spaces, not starting with numbers. |
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.
This is a breaking change, but to an experimental part and only in recently added enum members.
@Oberon00 Regarding the breaking portion, is it enough to let Maintainers know next Monday, or should we do something else? |
I think that would be enough, as actual data breakage is only in stuff that is new and experimental. But probably I'm the wrong person to ask that question to. 😃 |
@tigrannajaryan maybe you have something to say? |
@Oberon00 Please update the CHANGELOG so we can merge ;) |
Fixes #1519 (again) and also fixes some
id
s containing spaces (Alibaba Cloud
->alibaba_cloud
) or starting with numbers (1xRTT
->csma2000_1xrtt
) which tripped up code generators (open-telemetry/build-tools#59).Changes
Changes enum IDs to be lowercase.
Also changes values and briefs of
net.host.connection.subtype
andrpc.grpc.status_code
to match the IDs. http.flavor is left unchanged since it is already quite old (but http.flavor should probably be refactored anyway separately).