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

Doc for NessieConfiguration.specVersion #6938

Merged
merged 1 commit into from
May 30, 2023
Merged
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,19 @@ public int getActualApiVersion() {
return 0;
}

/** Semver version representing the behavior of the Nessie server. */
/**
* Semver version representing the behavior of the Nessie server.
*
* <p>Additional functionality might be added to Nessie servers within a "spec major version" in a
* non-breaking way. Clients are encouraged to check the spec version when using such added
* functionality.
*/
@Schema(
description =
"Semver version representing the behavior of the Nessie server.\n"
+ "\nAdditional functionality might be added to Nessie servers within a \"spec major version\" "
+ "in a non-breaking way. Clients are encouraged to check the spec version when using such "
+ "added functionality.")
@JsonView(Views.V2.class)
@Nullable
@jakarta.annotation.Nullable
Expand Down