-
Notifications
You must be signed in to change notification settings - Fork 65
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
Start versioning API releases #302
Comments
Sounds great, I'd love to see Observatorium formalize its development process more. |
Adding log support in openapi spec is planned in #294. Versioning the spec in the same way as the API itself would be nice as people can generate tooling according to versions! :) |
Hmm I tend to disagree here. The HTTP API is a contract and the version of that contract should only change when the contract changes. By contrast, the version of the binary can change whenever new features are added or removed. E.g. we remove OPA support from the binary, causing the need for a new major release, but the HTTP API stays exactly the same, so this version stays the same. This is also incidentally how Kube does its versioning: all of the APIs (e.g. apps/v1) are versioned independently from Kube releases (e.g. v1.23.0). |
That makes sense and is a better approach than what I suggested! |
Yes. We also need to think carefully about ensuring that the paths that the HTTP API exposes actually conform to the version of the API contract, e.g. the Rules API is currently set to 0.0.2 [0] but most of our HTTP paths say x/v1/y, whereas here it should probably be x/v0/y. [0] https://github.com/observatorium/api/blob/main/rules/spec.yaml#L4 |
At the risk of going slightly off topic, what are the plans for the legacy metrics endpoints going forward? Does it need to be maintained? It would be great to have some sort of roadmap for the project and its intentions to get to a stable release going forward. |
@philipgough I guess since we don't really have a stable version yet, we could simply deprecate it and eventually remove it after couple of minor releases 🤷 |
I think that by calling it legacy it is already effectively deprecated, no? I would be in favor of dropping it from main and cutting a new release soon. |
AFAIK no one depends on it, I'm totally fine with dropping it straight away; just if we wanted to be more cautious and do it over the course of couple releases, but it seems it's not necessary. |
if there are no dependencies to the current legacy endpoints I'd be in favor to dropping it straight away as well :) +1 |
We discussed this in the last community meeting, in the context of now having a release process for
obsctl
(observatorium/obsctl#26).There were couple of ideas floating around:
/legacy
) path: We could indicate this by e.g. saying we'll drop a certain feature in 3 minor releasesTo accomplish this we need:
The text was updated successfully, but these errors were encountered: