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

Loosen requirement for a major version bump #2510

Merged
merged 7 commits into from Apr 30, 2022
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 10 additions & 1 deletion specification/versioning-and-stability.md
Expand Up @@ -24,6 +24,7 @@
* [Major version bump](#major-version-bump)
* [Minor version bump](#minor-version-bump)
* [Patch version bump](#patch-version-bump)
* [Language version support](#language-version-support)
- [Long Term Support](#long-term-support)
* [API support](#api-support)
* [SDK Support](#sdk-support)
Expand Down Expand Up @@ -254,7 +255,7 @@ When a signal becomes stable, the version MUST be bumped to match the other stab

### Major version bump

Major version bumps MUST occur when there is a breaking change to a stable interface, the removal of a deprecated signal, or a drop in support for a language or runtime version.
Major version bumps MUST occur when there is a breaking change to a stable interface, the removal of a deprecated signal.
pellared marked this conversation as resolved.
Show resolved Hide resolved
reyang marked this conversation as resolved.
Show resolved Hide resolved
Major version bumps SHOULD NOT occur for changes which do not result in a drop in support of some form.

### Minor version bump
Expand All @@ -281,6 +282,14 @@ Currently, the OpenTelemetry project does NOT have plans to backport bug and sec
Security and bug fixes MAY only be applied to the latest minor version.
We are committed to making it feasible for end users to stay up to date with the latest version of the OpenTelemetry SDK.

### Language version support

Each language implementation SHOULD define
reyang marked this conversation as resolved.
Show resolved Hide resolved
how the removal of a supported language/runtime version
affects its versioning.
As a rule of thumb,
it SHOULD take the recommended approach in the given ecosystem
reyang marked this conversation as resolved.
Show resolved Hide resolved

## Long Term Support

![long term support](../internal/img/long-term-support.png)
Expand Down