Skip to content
Snippets Groups Projects
Commit e559b746 authored by Georges Racinet's avatar Georges Racinet
Browse files

Setting version for release

parent 826957b9
No related branches found
No related tags found
No related merge requests found
Pipeline #64058 passed
0.32.0dev0
0.32.0
......@@ -186,16 +186,6 @@
string pre_receive_error = 2;
}
// UserCreateBranchError is an error returned by the UserCreateBranch RPC in some specific well
// defined error cases.
message UserCreateBranchError {
oneof error {
// CustomHookError is set if any custom hook which has running as part of
// this RPC call has returned a non-zero exit code.
CustomHookError custom_hook = 1;
}
}
// This comment is left unintentionally blank.
message UserUpdateBranchRequest {
// This comment is left unintentionally blank.
......
......@@ -213,7 +213,5 @@
// This comment is left unintentionally blank.
message FindLocalBranchesResponse {
// This field is duplicated by 'local_branches' and will be marked deprecated
// as we add the implementation for 'local_branches'.
// Issue: https://gitlab.com/gitlab-org/gitaly/-/issues/1294
// This comment is left unintentionally blank.
repeated FindLocalBranchResponse branches = 1;
......@@ -219,6 +217,4 @@
repeated FindLocalBranchResponse branches = 1;
// This comment is left unintentionally blank.
repeated Branch local_branches = 2;
}
// This comment is left unintentionally blank.
......
......@@ -773,8 +773,5 @@
Repository repository = 1 [(target_repository)=true];
}
// FindLicenseResponse contains the result of detecting the license used in the repository.
// If there is nothing that looks like a license file, the empty response is returned.
// If there is something that looks like a license, but that license can't be found in the
// list of known licenses, we return a pre-defined response with "Other" license.
// This comment is left unintentionally blank.
message FindLicenseResponse {
......@@ -780,4 +777,3 @@
message FindLicenseResponse {
// LicenseShortName is the license unique SPDX identifier or a short name.
// It is always returned lower-cased.
// This comment is left unintentionally blank.
string license_short_name = 1;
......@@ -783,13 +779,4 @@
string license_short_name = 1;
// LicenseName is the license full name.
string license_name = 2;
// LicenseUrl is a URL to the license on the internet.
string license_url = 3;
// LicensePath is a path to the file that contains the text of the license.
string license_path = 4;
// LicenseNickname is a shortened full name for better readability.
// It exists only for a small set of licenses and an empty value is returned in most cases.
string license_nickname = 5;
}
// This comment is left unintentionally blank.
......
......@@ -81,8 +81,9 @@
// NtpHost is a URL to the external NTP service that should be used for clock sync check.
// Default is "ntp.pool.org"
string ntp_host = 1;
reserved "drift_threshold_millis";
reserved 2;
// DriftThresholdMillis is an allowed drift from the NTP service in milliseconds.
// Deprecated: DriftThreshold field should be used instead. See https://gitlab.com/gitlab-org/gitaly/-/issues/4417.
int64 drift_threshold_millis = 2 [deprecated = true];
// DriftThreshold is an allowed drift from the NTP service.
google.protobuf.Duration drift_threshold = 3;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment