gitaly 14.1.0.pre.rc2 → 14.1.0.pre.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/commit_pb.rb +32 -0
- data/ruby/proto/gitaly/commit_services_pb.rb +8 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0509d5d628cb0c1d53837f22b5fe242f9f087dcceec0f0dde3e86fbcac455c17'
|
4
|
+
data.tar.gz: 3beeb35e296aba716f50df567fd6b75ac4747e6c0da7b9123037e373ca5e3da7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df0e1706184723f5987e922c5249c534d1d123431bc7697758518cbd3f672661dd14091fe76fbbf1365c443ddc245826c843b9131c64f49a850dcc80ebdabca4
|
7
|
+
data.tar.gz: 82c4e2690270a7f1f9d1ed25c4ce87d7548eb477d9b28ef60cf06ad8613e362825745a161cb960ecd9f29b8e662b471b0484af008f01d160787f6455045e9593
|
@@ -8,6 +8,33 @@ require 'shared_pb'
|
|
8
8
|
require 'google/protobuf/timestamp_pb'
|
9
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
10
|
add_file("commit.proto", :syntax => :proto3) do
|
11
|
+
add_message "gitaly.ListCommitsRequest" do
|
12
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
13
|
+
repeated :revisions, :string, 2
|
14
|
+
optional :pagination_params, :message, 3, "gitaly.PaginationParameter"
|
15
|
+
optional :order, :enum, 4, "gitaly.ListCommitsRequest.Order"
|
16
|
+
optional :max_parents, :uint32, 5
|
17
|
+
optional :disable_walk, :bool, 6
|
18
|
+
optional :first_parent, :bool, 7
|
19
|
+
optional :after, :message, 8, "google.protobuf.Timestamp"
|
20
|
+
optional :before, :message, 9, "google.protobuf.Timestamp"
|
21
|
+
optional :author, :bytes, 10
|
22
|
+
end
|
23
|
+
add_enum "gitaly.ListCommitsRequest.Order" do
|
24
|
+
value :NONE, 0
|
25
|
+
value :TOPO, 1
|
26
|
+
value :DATE, 2
|
27
|
+
end
|
28
|
+
add_message "gitaly.ListCommitsResponse" do
|
29
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
30
|
+
end
|
31
|
+
add_message "gitaly.ListAllCommitsRequest" do
|
32
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
33
|
+
optional :pagination_params, :message, 2, "gitaly.PaginationParameter"
|
34
|
+
end
|
35
|
+
add_message "gitaly.ListAllCommitsResponse" do
|
36
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
37
|
+
end
|
11
38
|
add_message "gitaly.CommitStatsRequest" do
|
12
39
|
optional :repository, :message, 1, "gitaly.Repository"
|
13
40
|
optional :revision, :bytes, 2
|
@@ -270,6 +297,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
270
297
|
end
|
271
298
|
|
272
299
|
module Gitaly
|
300
|
+
ListCommitsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsRequest").msgclass
|
301
|
+
ListCommitsRequest::Order = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsRequest.Order").enummodule
|
302
|
+
ListCommitsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsResponse").msgclass
|
303
|
+
ListAllCommitsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllCommitsRequest").msgclass
|
304
|
+
ListAllCommitsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListAllCommitsResponse").msgclass
|
273
305
|
CommitStatsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitStatsRequest").msgclass
|
274
306
|
CommitStatsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitStatsResponse").msgclass
|
275
307
|
CommitIsAncestorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitIsAncestorRequest").msgclass
|
@@ -14,6 +14,14 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.CommitService'
|
16
16
|
|
17
|
+
# ListCommits lists all commits reachable via a set of references by doing a
|
18
|
+
# graph walk. This deprecates ListNewCommits, FindAllCommits, FindCommits
|
19
|
+
# (except Follow is not yet supported) and CommitsBetweenRequest. Any
|
20
|
+
# unknown revisions will cause the RPC to fail.
|
21
|
+
rpc :ListCommits, Gitaly::ListCommitsRequest, stream(Gitaly::ListCommitsResponse)
|
22
|
+
# ListAllCommits lists all commits present in the repository, including
|
23
|
+
# those not reachable by any reference.
|
24
|
+
rpc :ListAllCommits, Gitaly::ListAllCommitsRequest, stream(Gitaly::ListAllCommitsResponse)
|
17
25
|
rpc :CommitIsAncestor, Gitaly::CommitIsAncestorRequest, Gitaly::CommitIsAncestorResponse
|
18
26
|
rpc :TreeEntry, Gitaly::TreeEntryRequest, stream(Gitaly::TreeEntryResponse)
|
19
27
|
rpc :CommitsBetween, Gitaly::CommitsBetweenRequest, stream(Gitaly::CommitsBetweenResponse)
|
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: 14.1.0.pre.
|
4
|
+
version: 14.1.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-07-
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|