Skip to content

KEP-4330: update version introspection details for compatibility versions #5180

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

Merged
merged 1 commit into from
Mar 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions keps/sig-architecture/4330-compatibility-versions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -725,17 +725,18 @@ The API fields include will match what is described in the "API Fields" section.

### Version introspection

The `/version` endpoint will be augmented to report binary version when this feature
The `/version` endpoint will be augmented to report emulation version and min compatibility version when this feature
is enabled. Note that this changes default behavior by always including a new field
in `/version` responses. E.g.

```json
{
"major": "1",
"minor": "30",
"binaryMajor": "1",
"binaryMinor": "32",
"compatibility": "29",
"minor": "32",
"emulationMajor": "1",
"emulationMinor": "31",
"minCompatibilityMajor": "1",
"minCompatibilityMinor": "30",
"gitVersion": "v1.30.0",
"gitCommit": "<something>",
"gitTreeState": "clean",
Expand Down