You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we're not a library it is required to notify our clients about API change.
For example a monitoring server API provides /metrics method, which returns a JSON. To be able to keep the proxy backward compatible we can add /vN prefix and it becomes /v1/metrics.
Moreover we should mention how we treat semantic versioning. Strictly, we should bump major version when:
The config changes in backward-incompatible manner.
We break URIs.
So, the tasks are:
Wrap API paths with version prefix.
Update README.md.
The text was updated successfully, but these errors were encountered:
Since we're not a library it is required to notify our clients about API change.
For example a monitoring server API provides
/metrics
method, which returns a JSON. To be able to keep the proxy backward compatible we can add/vN
prefix and it becomes/v1/metrics
.Moreover we should mention how we treat semantic versioning. Strictly, we should bump major version when:
So, the tasks are:
The text was updated successfully, but these errors were encountered: