gitaly 0.16.0 → 0.17.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f632636a6d960cc989d42a82c2e59cc69e1b15f
|
4
|
+
data.tar.gz: 2e1b4fd307358febeecad95ab1c02eee1e806656
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5042ac2417afee8e7f1b76d13a899ac2442975f1fb3d11cb95458caf574e0283dd668ef0084186cdb4fd921014ac26723578d916dbe312380c03c0c8d6ffcc1
|
7
|
+
data.tar.gz: 40514b5dbbff90920c052f2aedd33d14863984e3c7417791236f02a8497970c629e5029e6574efef40a07f2a118da7cf6ec625c6b4e12902a5c1ca3f7e4aa987
|
data/ruby/lib/gitaly/diff_pb.rb
CHANGED
@@ -11,6 +11,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
11
11
|
optional :right_commit_id, :string, 3
|
12
12
|
optional :ignore_whitespace_change, :bool, 4
|
13
13
|
repeated :paths, :bytes, 5
|
14
|
+
optional :collapse_diffs, :bool, 6
|
15
|
+
optional :enforce_limits, :bool, 7
|
16
|
+
optional :max_files, :int32, 8
|
17
|
+
optional :max_lines, :int32, 9
|
18
|
+
optional :max_bytes, :int32, 10
|
19
|
+
optional :safe_max_files, :int32, 11
|
20
|
+
optional :safe_max_lines, :int32, 12
|
21
|
+
optional :safe_max_bytes, :int32, 13
|
14
22
|
end
|
15
23
|
add_message "gitaly.CommitDiffResponse" do
|
16
24
|
optional :from_path, :bytes, 1
|
@@ -22,6 +30,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
22
30
|
optional :binary, :bool, 7
|
23
31
|
optional :raw_patch_data, :bytes, 9
|
24
32
|
optional :end_of_patch, :bool, 10
|
33
|
+
optional :overflow_marker, :bool, 11
|
34
|
+
optional :collapsed, :bool, 12
|
25
35
|
end
|
26
36
|
add_message "gitaly.CommitDeltaRequest" do
|
27
37
|
optional :repository, :message, 1, "gitaly.Repository"
|
@@ -11,9 +11,32 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
11
11
|
add_message "gitaly.RepositoryExistsResponse" do
|
12
12
|
optional :exists, :bool, 1
|
13
13
|
end
|
14
|
+
add_message "gitaly.RepackIncrementalRequest" do
|
15
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
16
|
+
end
|
17
|
+
add_message "gitaly.RepackIncrementalResponse" do
|
18
|
+
end
|
19
|
+
add_message "gitaly.RepackFullRequest" do
|
20
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
21
|
+
optional :create_bitmap, :bool, 2
|
22
|
+
end
|
23
|
+
add_message "gitaly.RepackFullResponse" do
|
24
|
+
end
|
25
|
+
add_message "gitaly.GarbageCollectRequest" do
|
26
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
27
|
+
optional :create_bitmap, :bool, 2
|
28
|
+
end
|
29
|
+
add_message "gitaly.GarbageCollectResponse" do
|
30
|
+
end
|
14
31
|
end
|
15
32
|
|
16
33
|
module Gitaly
|
17
34
|
RepositoryExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryExistsRequest").msgclass
|
18
35
|
RepositoryExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryExistsResponse").msgclass
|
36
|
+
RepackIncrementalRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackIncrementalRequest").msgclass
|
37
|
+
RepackIncrementalResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackIncrementalResponse").msgclass
|
38
|
+
RepackFullRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullRequest").msgclass
|
39
|
+
RepackFullResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullResponse").msgclass
|
40
|
+
GarbageCollectRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
41
|
+
GarbageCollectResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
19
42
|
end
|
@@ -15,6 +15,9 @@ module Gitaly
|
|
15
15
|
self.service_name = 'gitaly.RepositoryService'
|
16
16
|
|
17
17
|
rpc :Exists, RepositoryExistsRequest, RepositoryExistsResponse
|
18
|
+
rpc :RepackIncremental, RepackIncrementalRequest, RepackIncrementalResponse
|
19
|
+
rpc :RepackFull, RepackFullRequest, RepackFullResponse
|
20
|
+
rpc :GarbageCollect, GarbageCollectRequest, GarbageCollectResponse
|
18
21
|
end
|
19
22
|
|
20
23
|
Stub = Service.rpc_stub_class
|
data/ruby/lib/gitaly/version.rb
CHANGED
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: 0.
|
4
|
+
version: 0.17.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-07-
|
11
|
+
date: 2017-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
118
|
version: '0'
|
119
119
|
requirements: []
|
120
120
|
rubyforge_project:
|
121
|
-
rubygems_version: 2.
|
121
|
+
rubygems_version: 2.5.1
|
122
122
|
signing_key:
|
123
123
|
specification_version: 4
|
124
124
|
summary: Auto-generated gRPC client for gitaly
|