gitaly 1.70.0 → 1.71.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
  SHA256:
3
- metadata.gz: be04c3cf497a77da65af2c8ba1ccfb3d81b494f51728182f72589751743d4fb0
4
- data.tar.gz: 64df503e885dd3114228b447f864101241d7f34e115e798720afe436d9fad85b
3
+ metadata.gz: dad21aa376a0d15d81e58f24a467dcbf882b23d388c21a891b30bbd17998796b
4
+ data.tar.gz: 332a6ccc00a7fe7786c82edad9e50e6d14f0e844d34ffe8c267e0acf3ecb839c
5
5
  SHA512:
6
- metadata.gz: 45f583a4dd5af8333bf32d8000bcacf7acc36f32291fcf6026f4fb9ceb2df06d77deee1686fbfe5ef6b416a6c15e52335751ea56d10565e4716b63cb6dcbadb2
7
- data.tar.gz: aca3f02eaba91f0e6a50138778c1e17318daec2a35c86157ea5875a056b229c62441ad5072753f8fb39b0bc24c674aca80feb0dac38bf7f0b723e405d6e0cd51
6
+ metadata.gz: 4843f3993b72f8b02afe1cd2f579f3ea22d63162547eb2157acbad1aac9f350b295544745308a70e778508f85485c8a7fca60176bb8009461b099a9194f4cbc2
7
+ data.tar.gz: e192579abac22977dd7f93780324fc31af8fa1394599818437d08a93ac236c8a73fb8fac9f5f8a7c1ea5a6e30777e16a0cf837cc8928bf40eae092e8f5145964
@@ -13,6 +13,8 @@ require 'gitaly/conflicts_services_pb'
13
13
 
14
14
  require 'gitaly/diff_services_pb'
15
15
 
16
+ require 'gitaly/hook_services_pb'
17
+
16
18
  require 'gitaly/namespace_services_pb'
17
19
 
18
20
  require 'gitaly/objectpool_services_pb'
@@ -31,7 +33,5 @@ require 'gitaly/smarthttp_services_pb'
31
33
 
32
34
  require 'gitaly/ssh_services_pb'
33
35
 
34
- require 'gitaly/storage_services_pb'
35
-
36
36
  require 'gitaly/wiki_services_pb'
37
37
 
@@ -5,12 +5,6 @@ require 'google/protobuf'
5
5
 
6
6
  require 'shared_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_message "gitaly.ApplyBfgObjectMapRequest" do
9
- optional :repository, :message, 1, "gitaly.Repository"
10
- optional :object_map, :bytes, 2
11
- end
12
- add_message "gitaly.ApplyBfgObjectMapResponse" do
13
- end
14
8
  add_message "gitaly.ApplyBfgObjectMapStreamRequest" do
15
9
  optional :repository, :message, 1, "gitaly.Repository"
16
10
  optional :object_map, :bytes, 2
@@ -26,8 +20,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
26
20
  end
27
21
 
28
22
  module Gitaly
29
- ApplyBfgObjectMapRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapRequest").msgclass
30
- ApplyBfgObjectMapResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapResponse").msgclass
31
23
  ApplyBfgObjectMapStreamRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamRequest").msgclass
32
24
  ApplyBfgObjectMapStreamResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamResponse").msgclass
33
25
  ApplyBfgObjectMapStreamResponse::Entry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamResponse.Entry").msgclass
@@ -14,8 +14,6 @@ module Gitaly
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.CleanupService'
16
16
 
17
- # Deprecated in favour of ApplyBfgObjectMapStream
18
- rpc :ApplyBfgObjectMap, stream(ApplyBfgObjectMapRequest), ApplyBfgObjectMapResponse
19
17
  rpc :ApplyBfgObjectMapStream, stream(ApplyBfgObjectMapStreamRequest), stream(ApplyBfgObjectMapStreamResponse)
20
18
  end
21
19
 
@@ -34,10 +34,6 @@ module Gitaly
34
34
  rpc :ListCommitsByOid, ListCommitsByOidRequest, stream(ListCommitsByOidResponse)
35
35
  rpc :ListCommitsByRefName, ListCommitsByRefNameRequest, stream(ListCommitsByRefNameResponse)
36
36
  rpc :FilterShasWithSignatures, stream(FilterShasWithSignaturesRequest), stream(FilterShasWithSignaturesResponse)
37
- # ExtractCommitSignature returns a stream because the signed text may be
38
- # arbitrarily large and signature verification is impossible without the
39
- # full text.
40
- rpc :ExtractCommitSignature, ExtractCommitSignatureRequest, stream(ExtractCommitSignatureResponse)
41
37
  rpc :GetCommitSignatures, GetCommitSignaturesRequest, stream(GetCommitSignaturesResponse)
42
38
  rpc :GetCommitMessages, GetCommitMessagesRequest, stream(GetCommitMessagesResponse)
43
39
  end
@@ -0,0 +1,50 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: hook.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'shared_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_message "gitaly.PreReceiveHookRequest" do
9
+ optional :repository, :message, 1, "gitaly.Repository"
10
+ optional :key_id, :string, 2
11
+ optional :protocol, :string, 3
12
+ optional :stdin, :bytes, 4
13
+ end
14
+ add_message "gitaly.PreReceiveHookResponse" do
15
+ optional :stdout, :bytes, 1
16
+ optional :stderr, :bytes, 2
17
+ optional :success, :bool, 3
18
+ end
19
+ add_message "gitaly.PostReceiveHookRequest" do
20
+ optional :repository, :message, 1, "gitaly.Repository"
21
+ optional :key_id, :string, 2
22
+ optional :stdin, :bytes, 3
23
+ end
24
+ add_message "gitaly.PostReceiveHookResponse" do
25
+ optional :stdout, :bytes, 1
26
+ optional :stderr, :bytes, 2
27
+ optional :success, :bool, 3
28
+ end
29
+ add_message "gitaly.UpdateHookRequest" do
30
+ optional :repository, :message, 1, "gitaly.Repository"
31
+ optional :key_id, :string, 2
32
+ optional :ref, :bytes, 3
33
+ optional :old_value, :string, 4
34
+ optional :new_value, :string, 5
35
+ end
36
+ add_message "gitaly.UpdateHookResponse" do
37
+ optional :stdout, :bytes, 1
38
+ optional :stderr, :bytes, 2
39
+ optional :success, :bool, 3
40
+ end
41
+ end
42
+
43
+ module Gitaly
44
+ PreReceiveHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreReceiveHookRequest").msgclass
45
+ PreReceiveHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreReceiveHookResponse").msgclass
46
+ PostReceiveHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveHookRequest").msgclass
47
+ PostReceiveHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveHookResponse").msgclass
48
+ UpdateHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookRequest").msgclass
49
+ UpdateHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookResponse").msgclass
50
+ end
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: hook.proto for package 'gitaly'
3
+
4
+ require 'grpc'
5
+ require 'hook_pb'
6
+
7
+ module Gitaly
8
+ module HookService
9
+ class Service
10
+
11
+ include GRPC::GenericService
12
+
13
+ self.marshal_class_method = :encode
14
+ self.unmarshal_class_method = :decode
15
+ self.service_name = 'gitaly.HookService'
16
+
17
+ rpc :PreReceiveHook, PreReceiveHookRequest, PreReceiveHookResponse
18
+ rpc :PostReceiveHook, PostReceiveHookRequest, PostReceiveHookResponse
19
+ rpc :UpdateHook, UpdateHookRequest, UpdateHookResponse
20
+ end
21
+
22
+ Stub = Service.rpc_stub_class
23
+ end
24
+ end
@@ -64,6 +64,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
64
64
  optional :name, :bytes, 1
65
65
  optional :email, :bytes, 2
66
66
  optional :date, :message, 3, "google.protobuf.Timestamp"
67
+ optional :timezone, :bytes, 4
67
68
  end
68
69
  add_message "gitaly.FindAllBranchesRequest" do
69
70
  optional :repository, :message, 1, "gitaly.Repository"
@@ -42,6 +42,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
42
42
  optional :name, :bytes, 1
43
43
  optional :email, :bytes, 2
44
44
  optional :date, :message, 3, "google.protobuf.Timestamp"
45
+ optional :timezone, :bytes, 4
45
46
  end
46
47
  add_message "gitaly.ExitStatus" do
47
48
  optional :value, :int32, 1
@@ -1,4 +1,4 @@
1
- # This file was auto-generated by _support/release
1
+ # This file was auto-generated by ./_support/release
2
2
  module Gitaly
3
- VERSION = '1.70.0'
3
+ VERSION = '1.71.0'
4
4
  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.70.0
4
+ version: 1.71.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-10-17 00:00:00.000000000 Z
11
+ date: 2019-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -43,6 +43,8 @@ files:
43
43
  - ruby/proto/gitaly/conflicts_services_pb.rb
44
44
  - ruby/proto/gitaly/diff_pb.rb
45
45
  - ruby/proto/gitaly/diff_services_pb.rb
46
+ - ruby/proto/gitaly/hook_pb.rb
47
+ - ruby/proto/gitaly/hook_services_pb.rb
46
48
  - ruby/proto/gitaly/namespace_pb.rb
47
49
  - ruby/proto/gitaly/namespace_services_pb.rb
48
50
  - ruby/proto/gitaly/objectpool_pb.rb
@@ -62,8 +64,6 @@ files:
62
64
  - ruby/proto/gitaly/smarthttp_services_pb.rb
63
65
  - ruby/proto/gitaly/ssh_pb.rb
64
66
  - ruby/proto/gitaly/ssh_services_pb.rb
65
- - ruby/proto/gitaly/storage_pb.rb
66
- - ruby/proto/gitaly/storage_services_pb.rb
67
67
  - ruby/proto/gitaly/version.rb
68
68
  - ruby/proto/gitaly/wiki_pb.rb
69
69
  - ruby/proto/gitaly/wiki_services_pb.rb
@@ -1,27 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: storage.proto
3
-
4
- require 'google/protobuf'
5
-
6
- require 'shared_pb'
7
- Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_message "gitaly.ListDirectoriesRequest" do
9
- optional :storage_name, :string, 1
10
- optional :depth, :uint32, 2
11
- end
12
- add_message "gitaly.ListDirectoriesResponse" do
13
- repeated :paths, :string, 1
14
- end
15
- add_message "gitaly.DeleteAllRepositoriesRequest" do
16
- optional :storage_name, :string, 1
17
- end
18
- add_message "gitaly.DeleteAllRepositoriesResponse" do
19
- end
20
- end
21
-
22
- module Gitaly
23
- ListDirectoriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListDirectoriesRequest").msgclass
24
- ListDirectoriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListDirectoriesResponse").msgclass
25
- DeleteAllRepositoriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteAllRepositoriesRequest").msgclass
26
- DeleteAllRepositoriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteAllRepositoriesResponse").msgclass
27
- end
@@ -1,23 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # Source: storage.proto for package 'gitaly'
3
-
4
- require 'grpc'
5
- require 'storage_pb'
6
-
7
- module Gitaly
8
- module StorageService
9
- class Service
10
-
11
- include GRPC::GenericService
12
-
13
- self.marshal_class_method = :encode
14
- self.unmarshal_class_method = :decode
15
- self.service_name = 'gitaly.StorageService'
16
-
17
- rpc :ListDirectories, ListDirectoriesRequest, stream(ListDirectoriesResponse)
18
- rpc :DeleteAllRepositories, DeleteAllRepositoriesRequest, DeleteAllRepositoriesResponse
19
- end
20
-
21
- Stub = Service.rpc_stub_class
22
- end
23
- end