gitaly 13.1.0.pre.rc4 → 13.2.0.pre.rc1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9b087163dee516d3e222428545619b35296dd6dd56bdbe2010cd40b1a99163e
|
4
|
+
data.tar.gz: 4d31f3fac16d5ffdbaef6149cbf56753e66aedfe29cef9482867b391875990ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb137fbc79df86bd6b326a54e6a8f12d6fe92b693b2e7f9881651a20a264bf95a0170bbd7b6a1668ab591ff4627ed34854c5f690b9351ce980ae7f73c84c8c29
|
7
|
+
data.tar.gz: b45aad405d334de4de9f81c7152845fbd04a9cd16ee82821ea0bac1daa4b3e72309a152715ed50bf17db43b527bb836a6a21a4bfb540bc7ce98ce58b6471eff0
|
@@ -205,6 +205,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
205
205
|
optional :path, :bytes, 3
|
206
206
|
optional :limit, :int32, 4
|
207
207
|
optional :offset, :int32, 5
|
208
|
+
optional :literal_pathspec, :bool, 6
|
208
209
|
end
|
209
210
|
add_message "gitaly.ListLastCommitsForTreeResponse" do
|
210
211
|
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"
|
@@ -29,6 +29,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
29
29
|
end
|
30
30
|
add_message "gitaly.GarbageCollectResponse" do
|
31
31
|
end
|
32
|
+
add_message "gitaly.WriteCommitGraphRequest" do
|
33
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
34
|
+
end
|
35
|
+
add_message "gitaly.WriteCommitGraphResponse" do
|
36
|
+
end
|
32
37
|
add_message "gitaly.CleanupRequest" do
|
33
38
|
optional :repository, :message, 1, "gitaly.Repository"
|
34
39
|
end
|
@@ -332,6 +337,8 @@ module Gitaly
|
|
332
337
|
RepackFullResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullResponse").msgclass
|
333
338
|
GarbageCollectRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
334
339
|
GarbageCollectResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
340
|
+
WriteCommitGraphRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest").msgclass
|
341
|
+
WriteCommitGraphResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphResponse").msgclass
|
335
342
|
CleanupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupRequest").msgclass
|
336
343
|
CleanupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
|
337
344
|
RepositorySizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
|
@@ -18,6 +18,7 @@ module Gitaly
|
|
18
18
|
rpc :RepackIncremental, RepackIncrementalRequest, RepackIncrementalResponse
|
19
19
|
rpc :RepackFull, RepackFullRequest, RepackFullResponse
|
20
20
|
rpc :GarbageCollect, GarbageCollectRequest, GarbageCollectResponse
|
21
|
+
rpc :WriteCommitGraph, WriteCommitGraphRequest, WriteCommitGraphResponse
|
21
22
|
rpc :RepositorySize, RepositorySizeRequest, RepositorySizeResponse
|
22
23
|
rpc :ApplyGitattributes, ApplyGitattributesRequest, ApplyGitattributesResponse
|
23
24
|
rpc :FetchRemote, FetchRemoteRequest, FetchRemoteResponse
|
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.
|
4
|
+
version: 13.2.0.pre.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|