gitaly 13.8.0.pre.rc2 → 13.8.0.pre.rc3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e5600ddc712b354d894f4aa64cf2c8f553d4ff6f6ba942a80b34be5639e0103
|
4
|
+
data.tar.gz: 6466a2ca6500442b240365e0630032cbbaa0458cb46f0aaadd464ed59ee84efc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ca5ee4b62ab3884f4613486c0b944068a0d10856d286167b926d54b074888819d1d58af34a66a796442032441450f8a5c54ddc6cb9f238239c1f4d009345961
|
7
|
+
data.tar.gz: c7c94dc649a1208adee683f2fba0cacfe62dd77cdf4798fe01769c8b2960d74ac1d7cda451be70bc12cca038730081d743ce4e4838466707dfc5caaacbde0f98
|
@@ -110,6 +110,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
110
110
|
add_message "gitaly.FindCommitRequest" do
|
111
111
|
optional :repository, :message, 1, "gitaly.Repository"
|
112
112
|
optional :revision, :bytes, 2
|
113
|
+
optional :trailers, :bool, 3
|
113
114
|
end
|
114
115
|
add_message "gitaly.FindCommitResponse" do
|
115
116
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
@@ -163,6 +164,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
163
164
|
optional :author, :bytes, 13
|
164
165
|
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
|
165
166
|
optional :global_options, :message, 15, "gitaly.GlobalOptions"
|
167
|
+
optional :trailers, :bool, 16
|
166
168
|
end
|
167
169
|
add_enum "gitaly.FindCommitsRequest.Order" do
|
168
170
|
value :NONE, 0
|
@@ -21,12 +21,16 @@ module Gitaly
|
|
21
21
|
rpc :UserDeleteTag, Gitaly::UserDeleteTagRequest, Gitaly::UserDeleteTagResponse
|
22
22
|
rpc :UserMergeToRef, Gitaly::UserMergeToRefRequest, Gitaly::UserMergeToRefResponse
|
23
23
|
rpc :UserMergeBranch, stream(Gitaly::UserMergeBranchRequest), stream(Gitaly::UserMergeBranchResponse)
|
24
|
+
# UserFFBranch tries to perform a fast-forward merge of the given branch to
|
25
|
+
# the given commit. If the merge is not a fast-forward merge, the request
|
26
|
+
# will fail. The RPC will return an empty response in case updating the
|
27
|
+
# reference fails e.g. because of a race.
|
24
28
|
rpc :UserFFBranch, Gitaly::UserFFBranchRequest, Gitaly::UserFFBranchResponse
|
25
29
|
rpc :UserCherryPick, Gitaly::UserCherryPickRequest, Gitaly::UserCherryPickResponse
|
26
30
|
# UserCommitFiles builds a commit from a stream of actions and updates the target branch to point to it.
|
27
31
|
# UserCommitFilesRequest with a UserCommitFilesRequestHeader must be sent as the first message of the stream.
|
28
|
-
# Following that, a variable number of actions can be sent to build a new commit. Each action consists of
|
29
|
-
# a header followed by content if used by the action.
|
32
|
+
# Following that, a variable number of actions can be sent to build a new commit. Each action consists of
|
33
|
+
# a header followed by content if used by the action.
|
30
34
|
rpc :UserCommitFiles, stream(Gitaly::UserCommitFilesRequest), Gitaly::UserCommitFilesResponse
|
31
35
|
rpc :UserRebaseConfirmable, stream(Gitaly::UserRebaseConfirmableRequest), stream(Gitaly::UserRebaseConfirmableResponse)
|
32
36
|
rpc :UserRevert, Gitaly::UserRevertRequest, Gitaly::UserRevertResponse
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 13.8.0.pre.
|
4
|
+
version: 13.8.0.pre.rc3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|