gitaly-proto 0.50.0 → 0.51.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: e6b868e19884db1ba2e5a60835aea131b236c92b
4
- data.tar.gz: 33ce859219ae56b531f3c3005812b43e3b474d03
3
+ metadata.gz: 32476ea801a4e74084c4b207e9fa8dc7910be7a2
4
+ data.tar.gz: 12e000f525da3f0a0c421cb20afb838576c3d206
5
5
  SHA512:
6
- metadata.gz: 6949b3315c4496f8cb20e9ae33d178ae871a83282729d3f94339252ee2f115a4fc12b14b0d45ec1f66ecdebeefb7bdf3a30f427205c7819b92e8cc7d2897ccc2
7
- data.tar.gz: b43434f575912859f94471a4bbec547dd7f35cd4a0e1a030607c4775aceb68b7638de5bd94a902a4c1514210bce89bb92df10f0c73861f5e14c745a71de322fe
6
+ metadata.gz: e5f2f1ba2b21c74a98aaa61cc74697c7c31ba3f9c9768d3376c67dd327b16429a9e16306feea75ac497d334397a7539d7e0f222bdfa8ae18ee838e561762d36c
7
+ data.tar.gz: 8f39b4b727d49951abfea8a20027619bca6f762d90fdd665f330a10d277cd52459165a962d3a841b881435e0ec6be8c7038da428f8f158c69c8ec1548b0d3027
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.50.0"
3
+ VERSION = "0.51.0"
4
4
  end
@@ -68,6 +68,17 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
68
68
  add_message "gitaly.WikiFindPageResponse" do
69
69
  optional :page, :message, 1, "gitaly.WikiPage"
70
70
  end
71
+ add_message "gitaly.WikiFindFileRequest" do
72
+ optional :repository, :message, 1, "gitaly.Repository"
73
+ optional :name, :bytes, 2
74
+ optional :revision, :bytes, 3
75
+ end
76
+ add_message "gitaly.WikiFindFileResponse" do
77
+ optional :name, :bytes, 1
78
+ optional :mime_type, :string, 2
79
+ optional :raw_data, :bytes, 3
80
+ optional :path, :bytes, 4
81
+ end
71
82
  end
72
83
 
73
84
  module Gitaly
@@ -84,4 +95,6 @@ module Gitaly
84
95
  WikiDeletePageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiDeletePageResponse").msgclass
85
96
  WikiFindPageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindPageRequest").msgclass
86
97
  WikiFindPageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindPageResponse").msgclass
98
+ WikiFindFileRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindFileRequest").msgclass
99
+ WikiFindFileResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WikiFindFileResponse").msgclass
87
100
  end
@@ -20,6 +20,7 @@ module Gitaly
20
20
  rpc :WikiDeletePage, WikiDeletePageRequest, WikiDeletePageResponse
21
21
  # WikiFindPage returns a stream because the page's raw_data field may be arbitrarily large.
22
22
  rpc :WikiFindPage, WikiFindPageRequest, stream(WikiFindPageResponse)
23
+ rpc :WikiFindFile, WikiFindFileRequest, stream(WikiFindFileResponse)
23
24
  end
24
25
 
25
26
  Stub = Service.rpc_stub_class
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly-proto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.50.0
4
+ version: 0.51.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-10-27 00:00:00.000000000 Z
11
+ date: 2017-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  version: '0'
96
96
  requirements: []
97
97
  rubyforge_project:
98
- rubygems_version: 2.5.2
98
+ rubygems_version: 2.5.1
99
99
  signing_key:
100
100
  specification_version: 4
101
101
  summary: Auto-generated gRPC client for gitaly