gitaly-proto 0.54.0 → 0.55.0

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
  SHA1:
3
- metadata.gz: ba348731e00c3c0847b4417f54e992a4683f337b
4
- data.tar.gz: 9dd8b2299e06484ee93931cc4e2b82c8beed3485
3
+ metadata.gz: bcc1a2f7bbb9b0646935d45cdc1d4eb7bed2184a
4
+ data.tar.gz: 1a9b102ef735067eb3cce92a8fe8f124fd3b85b5
5
5
  SHA512:
6
- metadata.gz: fdcfb933de0ea6a30bbc75dff5da2d7ff08dedd02aa45f94848e70ee703ed9926fe82ac8684c924ad0c4d5349990bbcd3851d4e5c13590d4df3020a4170e76b0
7
- data.tar.gz: 6ce0baeda5ae38c3e52c004c0c88f0a8413df2dfeb677da57c339773d77c0195a04598f9a3e6c73264cf606003eee25979315a8bd373e70f893402c0f39496de
6
+ metadata.gz: 4dddde766bded3f51a8fd969dad806bfcb19e714a46bc11e4287e19b009b4b1a6477a184515a394e131d8fc17ad5fc362fd3c1857b9e97a0f1a43bd32f36e981
7
+ data.tar.gz: 1673196a075978c07dbe311e530f80785c41998af133d760d4156e70544a3611b5f1395d8224f371f04f7e77a8fa04f92e1fe715f3ae64f2537b545070a21b7f
@@ -172,6 +172,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
172
172
  add_message "gitaly.CommitsByMessageResponse" do
173
173
  repeated :commits, :message, 1, "gitaly.GitCommit"
174
174
  end
175
+ add_message "gitaly.FilterShasWithSignaturesRequest" do
176
+ optional :repository, :message, 1, "gitaly.Repository"
177
+ repeated :shas, :bytes, 2
178
+ end
179
+ add_message "gitaly.FilterShasWithSignaturesResponse" do
180
+ repeated :shas, :bytes, 1
181
+ end
175
182
  end
176
183
 
177
184
  module Gitaly
@@ -210,4 +217,6 @@ module Gitaly
210
217
  LastCommitForPathResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathResponse").msgclass
211
218
  CommitsByMessageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageRequest").msgclass
212
219
  CommitsByMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageResponse").msgclass
220
+ FilterShasWithSignaturesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesRequest").msgclass
221
+ FilterShasWithSignaturesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesResponse").msgclass
213
222
  end
@@ -30,6 +30,7 @@ module Gitaly
30
30
  rpc :LastCommitForPath, LastCommitForPathRequest, LastCommitForPathResponse
31
31
  rpc :CommitsByMessage, CommitsByMessageRequest, stream(CommitsByMessageResponse)
32
32
  rpc :ListCommitsByOid, ListCommitsByOidRequest, stream(ListCommitsByOidResponse)
33
+ rpc :FilterShasWithSignatures, stream(FilterShasWithSignaturesRequest), stream(FilterShasWithSignaturesResponse)
33
34
  end
34
35
 
35
36
  Stub = Service.rpc_stub_class
@@ -70,6 +70,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
70
70
  optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
71
71
  optional :pre_receive_error, :string, 2
72
72
  end
73
+ add_message "gitaly.UserCherryPickRequest" do
74
+ optional :repository, :message, 1, "gitaly.Repository"
75
+ optional :user, :message, 2, "gitaly.User"
76
+ optional :commit, :message, 3, "gitaly.GitCommit"
77
+ optional :branch_name, :bytes, 4
78
+ optional :message, :bytes, 5
79
+ optional :start_branch_name, :bytes, 6
80
+ optional :start_repository, :message, 7, "gitaly.Repository"
81
+ end
82
+ add_message "gitaly.UserCherryPickResponse" do
83
+ optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
84
+ optional :create_tree_error, :bool, 2
85
+ optional :commit_error, :string, 3
86
+ optional :pre_receive_error, :string, 4
87
+ end
73
88
  end
74
89
 
75
90
  module Gitaly
@@ -86,4 +101,6 @@ module Gitaly
86
101
  OperationBranchUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationBranchUpdate").msgclass
87
102
  UserFFBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserFFBranchRequest").msgclass
88
103
  UserFFBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserFFBranchResponse").msgclass
104
+ UserCherryPickRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCherryPickRequest").msgclass
105
+ UserCherryPickResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCherryPickResponse").msgclass
89
106
  end
@@ -20,6 +20,7 @@ module Gitaly
20
20
  rpc :UserDeleteTag, UserDeleteTagRequest, UserDeleteTagResponse
21
21
  rpc :UserMergeBranch, stream(UserMergeBranchRequest), stream(UserMergeBranchResponse)
22
22
  rpc :UserFFBranch, UserFFBranchRequest, UserFFBranchResponse
23
+ rpc :UserCherryPick, UserCherryPickRequest, UserCherryPickResponse
23
24
  end
24
25
 
25
26
  Stub = Service.rpc_stub_class
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.54.0"
3
+ VERSION = "0.55.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly-proto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.54.0
4
+ version: 0.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-14 00:00:00.000000000 Z
11
+ date: 2017-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf