Skip to content

Commit 91be8d8

Browse files
authored
Merge pull request #5180 from yongruilin/4330-version-info
KEP-4330: update version introspection details for compatibility versions
2 parents 7eec574 + 6621df1 commit 91be8d8

File tree

1 file changed

+6
-5
lines changed
  • keps/sig-architecture/4330-compatibility-versions

1 file changed

+6
-5
lines changed

keps/sig-architecture/4330-compatibility-versions/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -725,17 +725,18 @@ The API fields include will match what is described in the "API Fields" section.
725725

726726
### Version introspection
727727

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

732732
```json
733733
{
734734
"major": "1",
735-
"minor": "30",
736-
"binaryMajor": "1",
737-
"binaryMinor": "32",
738-
"compatibility": "29",
735+
"minor": "32",
736+
"emulationMajor": "1",
737+
"emulationMinor": "31",
738+
"minCompatibilityMajor": "1",
739+
"minCompatibilityMinor": "30",
739740
"gitVersion": "v1.30.0",
740741
"gitCommit": "<something>",
741742
"gitTreeState": "clean",

0 commit comments

Comments
 (0)