gitaly 1.75.0 → 1.76.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly/conflicts_pb.rb +0 -1
- data/ruby/proto/gitaly/hook_services_pb.rb +3 -3
- data/ruby/proto/gitaly/repository-service_pb.rb +0 -9
- data/ruby/proto/gitaly/repository-service_services_pb.rb +0 -1
- data/ruby/proto/gitaly/shared_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: 70d9fc325fa805eaaa648d3522ee795dbae5d303113c1c7caa65b32e9ead93d8
|
4
|
+
data.tar.gz: e2f89830ac9a909ee4c0e4e348ef2f494db5e8ecbf8c2712f97fdbf3453efc2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b30f5cf1f71fbb20f7e5ff30d3b0277afba5aa2bf42227f19cd0c367d902f940e009467d8e40a861dcfcef1e4425da180651e29d3548dc0ff56345cb0b8249d7
|
7
|
+
data.tar.gz: f8596354aad7e1c0ec428ed26b4b4a907977647feb5e915c05f8cd8924abac71b7fdc53b7beb8f1a8782edfd2e62d768821c0d9c7903ab7f75d6e2883bf97fe7
|
@@ -11,7 +11,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
11
11
|
optional :their_commit_oid, :string, 3
|
12
12
|
end
|
13
13
|
add_message "gitaly.ConflictFileHeader" do
|
14
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
15
14
|
optional :commit_oid, :string, 2
|
16
15
|
optional :their_path, :bytes, 3
|
17
16
|
optional :our_path, :bytes, 4
|
@@ -14,9 +14,9 @@ module Gitaly
|
|
14
14
|
self.unmarshal_class_method = :decode
|
15
15
|
self.service_name = 'gitaly.HookService'
|
16
16
|
|
17
|
-
rpc :PreReceiveHook, PreReceiveHookRequest, PreReceiveHookResponse
|
18
|
-
rpc :PostReceiveHook, PostReceiveHookRequest, PostReceiveHookResponse
|
19
|
-
rpc :UpdateHook, UpdateHookRequest, UpdateHookResponse
|
17
|
+
rpc :PreReceiveHook, stream(PreReceiveHookRequest), stream(PreReceiveHookResponse)
|
18
|
+
rpc :PostReceiveHook, stream(PostReceiveHookRequest), stream(PostReceiveHookResponse)
|
19
|
+
rpc :UpdateHook, UpdateHookRequest, stream(UpdateHookResponse)
|
20
20
|
end
|
21
21
|
|
22
22
|
Stub = Service.rpc_stub_class
|
@@ -265,13 +265,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
265
265
|
optional :match_data, :bytes, 2
|
266
266
|
optional :end_of_match, :bool, 3
|
267
267
|
end
|
268
|
-
add_message "gitaly.PreFetchRequest" do
|
269
|
-
optional :source_repository, :message, 1, "gitaly.Repository"
|
270
|
-
optional :target_repository, :message, 2, "gitaly.Repository"
|
271
|
-
optional :object_pool, :message, 3, "gitaly.ObjectPool"
|
272
|
-
end
|
273
|
-
add_message "gitaly.PreFetchResponse" do
|
274
|
-
end
|
275
268
|
add_message "gitaly.Remote" do
|
276
269
|
optional :url, :string, 1
|
277
270
|
optional :name, :string, 2
|
@@ -395,8 +388,6 @@ module Gitaly
|
|
395
388
|
SearchFilesByNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByNameResponse").msgclass
|
396
389
|
SearchFilesByContentRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentRequest").msgclass
|
397
390
|
SearchFilesByContentResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentResponse").msgclass
|
398
|
-
PreFetchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreFetchRequest").msgclass
|
399
|
-
PreFetchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreFetchResponse").msgclass
|
400
391
|
Remote = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Remote").msgclass
|
401
392
|
FetchHTTPRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteRequest").msgclass
|
402
393
|
FetchHTTPRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteResponse").msgclass
|
@@ -47,7 +47,6 @@ module Gitaly
|
|
47
47
|
rpc :SearchFilesByName, SearchFilesByNameRequest, stream(SearchFilesByNameResponse)
|
48
48
|
rpc :RestoreCustomHooks, stream(RestoreCustomHooksRequest), RestoreCustomHooksResponse
|
49
49
|
rpc :BackupCustomHooks, BackupCustomHooksRequest, stream(BackupCustomHooksResponse)
|
50
|
-
rpc :PreFetch, PreFetchRequest, PreFetchResponse
|
51
50
|
rpc :FetchHTTPRemote, FetchHTTPRemoteRequest, FetchHTTPRemoteResponse
|
52
51
|
rpc :GetObjectDirectorySize, GetObjectDirectorySizeRequest, GetObjectDirectorySizeResponse
|
53
52
|
rpc :CloneFromPool, CloneFromPoolRequest, CloneFromPoolResponse
|
@@ -37,6 +37,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
37
37
|
optional :committer, :message, 5, "gitaly.CommitAuthor"
|
38
38
|
repeated :parent_ids, :string, 6
|
39
39
|
optional :body_size, :int64, 7
|
40
|
+
optional :signature_type, :enum, 8, "gitaly.SignatureType"
|
40
41
|
end
|
41
42
|
add_message "gitaly.CommitAuthor" do
|
42
43
|
optional :name, :bytes, 1
|
@@ -58,6 +59,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
58
59
|
optional :message, :bytes, 4
|
59
60
|
optional :message_size, :int64, 5
|
60
61
|
optional :tagger, :message, 6, "gitaly.CommitAuthor"
|
62
|
+
optional :signature_type, :enum, 7, "gitaly.SignatureType"
|
61
63
|
end
|
62
64
|
add_message "gitaly.User" do
|
63
65
|
optional :gl_id, :string, 1
|
@@ -75,6 +77,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
75
77
|
value :TREE, 3
|
76
78
|
value :TAG, 4
|
77
79
|
end
|
80
|
+
add_enum "gitaly.SignatureType" do
|
81
|
+
value :NONE, 0
|
82
|
+
value :PGP, 1
|
83
|
+
value :X509, 2
|
84
|
+
end
|
78
85
|
end
|
79
86
|
|
80
87
|
module Gitaly
|
@@ -90,4 +97,5 @@ module Gitaly
|
|
90
97
|
User = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.User").msgclass
|
91
98
|
ObjectPool = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectPool").msgclass
|
92
99
|
ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ObjectType").enummodule
|
100
|
+
SignatureType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SignatureType").enummodule
|
93
101
|
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: 1.
|
4
|
+
version: 1.76.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: 2019-12-
|
11
|
+
date: 2019-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|