gitaly 13.2.0.pre.rc1 → 13.2.0.pre.rc2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of gitaly might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/commit_pb.rb +5 -0
- data/ruby/proto/gitaly/ref_pb.rb +1 -0
- data/ruby/proto/gitaly/shared_pb.rb +9 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b3be8f67efad685779e6b429da5298fa04356b76eea69daaa06f96d3be9421a
|
4
|
+
data.tar.gz: 58e3d49c8fe1642905801270ba5cad8161c2482185466717d1dadba88d25d1d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f42c0c9b82cc330ebf7c9d4826602778493dd1cf1e813b2f0fec92d86680c94b8928972fb483398060d1deb2f7d9f92ef84bc68d2435e8c603111e59f9f0eab
|
7
|
+
data.tar.gz: 5cda892dcdd458b8421bab880c8f78d41b10f369edea7ee5dc37a8eb9e9f7e3098c0985d5f60867a21606ec38338d5fc26f27699d4997bceee944956c7b5e72e
|
@@ -60,6 +60,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
60
60
|
optional :max_count, :int32, 6
|
61
61
|
optional :all, :bool, 7
|
62
62
|
optional :first_parent, :bool, 8
|
63
|
+
optional :global_options, :message, 9, "gitaly.GlobalOptions"
|
63
64
|
end
|
64
65
|
add_message "gitaly.CountCommitsResponse" do
|
65
66
|
optional :count, :int32, 1
|
@@ -160,6 +161,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
160
161
|
optional :first_parent, :bool, 12
|
161
162
|
optional :author, :bytes, 13
|
162
163
|
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
|
164
|
+
optional :global_options, :message, 15, "gitaly.GlobalOptions"
|
163
165
|
end
|
164
166
|
add_enum "gitaly.FindCommitsRequest.Order" do
|
165
167
|
value :NONE, 0
|
@@ -195,6 +197,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
195
197
|
optional :revision, :bytes, 2
|
196
198
|
optional :path, :bytes, 3
|
197
199
|
optional :literal_pathspec, :bool, 4
|
200
|
+
optional :global_options, :message, 5, "gitaly.GlobalOptions"
|
198
201
|
end
|
199
202
|
add_message "gitaly.LastCommitForPathResponse" do
|
200
203
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
@@ -206,6 +209,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
206
209
|
optional :limit, :int32, 4
|
207
210
|
optional :offset, :int32, 5
|
208
211
|
optional :literal_pathspec, :bool, 6
|
212
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
209
213
|
end
|
210
214
|
add_message "gitaly.ListLastCommitsForTreeResponse" do
|
211
215
|
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"
|
@@ -221,6 +225,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
221
225
|
optional :limit, :int32, 4
|
222
226
|
optional :path, :bytes, 5
|
223
227
|
optional :query, :string, 6
|
228
|
+
optional :global_options, :message, 7, "gitaly.GlobalOptions"
|
224
229
|
end
|
225
230
|
add_message "gitaly.CommitsByMessageResponse" do
|
226
231
|
repeated :commits, :message, 1, "gitaly.GitCommit"
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -45,6 +45,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
45
45
|
add_message "gitaly.FindLocalBranchesRequest" do
|
46
46
|
optional :repository, :message, 1, "gitaly.Repository"
|
47
47
|
optional :sort_by, :enum, 2, "gitaly.FindLocalBranchesRequest.SortBy"
|
48
|
+
optional :pagination_params, :message, 3, "gitaly.PaginationParameter"
|
48
49
|
end
|
49
50
|
add_enum "gitaly.FindLocalBranchesRequest.SortBy" do
|
50
51
|
value :NAME, 0
|
@@ -55,6 +55,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
55
55
|
add_message "gitaly.ObjectPool" do
|
56
56
|
optional :repository, :message, 1, "gitaly.Repository"
|
57
57
|
end
|
58
|
+
add_message "gitaly.PaginationParameter" do
|
59
|
+
optional :page_token, :string, 1
|
60
|
+
optional :limit, :int32, 2
|
61
|
+
end
|
62
|
+
add_message "gitaly.GlobalOptions" do
|
63
|
+
optional :literal_pathspecs, :bool, 1
|
64
|
+
end
|
58
65
|
add_enum "gitaly.ObjectType" do
|
59
66
|
value :UNKNOWN, 0
|
60
67
|
value :COMMIT, 1
|
@@ -78,6 +85,8 @@ module Gitaly
|
|
78
85
|
Tag = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Tag").msgclass
|
79
86
|
User = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.User").msgclass
|
80
87
|
ObjectPool = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectPool").msgclass
|
88
|
+
PaginationParameter = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PaginationParameter").msgclass
|
89
|
+
GlobalOptions = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GlobalOptions").msgclass
|
81
90
|
ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectType").enummodule
|
82
91
|
SignatureType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SignatureType").enummodule
|
83
92
|
end
|
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.2.0.pre.
|
4
|
+
version: 13.2.0.pre.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -78,7 +78,7 @@ homepage: https://gitlab.com/gitlab-org/gitaly
|
|
78
78
|
licenses:
|
79
79
|
- MIT
|
80
80
|
metadata: {}
|
81
|
-
post_install_message:
|
81
|
+
post_install_message:
|
82
82
|
rdoc_options: []
|
83
83
|
require_paths:
|
84
84
|
- ruby/proto
|
@@ -93,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: 1.3.1
|
95
95
|
requirements: []
|
96
|
-
rubygems_version: 3.0.
|
97
|
-
signing_key:
|
96
|
+
rubygems_version: 3.0.3
|
97
|
+
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Auto-generated gRPC client for gitaly
|
100
100
|
test_files: []
|