gitaly 0.23.0 → 0.24.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60b54534e2184937668e23fe837a2d9fc73359e7
4
- data.tar.gz: fe2a5e5b1a93bf29045556707dd8af7ec5e3096d
3
+ metadata.gz: 05c6daeaaecbb3c8d6b4419c13b4f5e1f33311d6
4
+ data.tar.gz: 5345ad7cd3cf7e98bd1f7d9373446665ee000681
5
5
  SHA512:
6
- metadata.gz: c6b58c666829a66127506c3d485aa218995011db2eab4e1761e2dd26acf2b78bc1ec5c94c25381304c6c22ca342555b68a72d060c82c0e33c003f71d9b40c79d
7
- data.tar.gz: 2c2291eb73bf1cf34e8f18cc314dee29387fa45226ed6ee188a34b21ca0e84769f4e59186c7109a2896e595ba155ed27c2dd3f3b9d8be39beb5fe3fd37980f14
6
+ metadata.gz: 69c980dbe6711563b8e778780433ad5f0ca107ba84dc6536ed9e81cb633f4ddff549fcdfbfc8edc481fc0a16d385a618685cae578304c242cb0cded9c4aa1f03
7
+ data.tar.gz: d56ef7dca7af84b254dea568561256250ac2c1a2a623bfa4ae36940c608facb26a36a75c3eef9e6783ac9aaf112e95b8d1606f74654738c09e7428aad10d8cf7
@@ -130,6 +130,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
130
130
  add_message "gitaly.RawBlameResponse" do
131
131
  optional :data, :bytes, 1
132
132
  end
133
+ add_message "gitaly.LastCommitForPathRequest" do
134
+ optional :repository, :message, 1, "gitaly.Repository"
135
+ optional :revision, :bytes, 2
136
+ optional :path, :bytes, 3
137
+ end
138
+ add_message "gitaly.LastCommitForPathResponse" do
139
+ optional :commit, :message, 1, "gitaly.GitCommit"
140
+ end
133
141
  end
134
142
 
135
143
  module Gitaly
@@ -160,4 +168,6 @@ module Gitaly
160
168
  CommitLanguagesResponse::Language = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesResponse.Language").msgclass
161
169
  RawBlameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawBlameRequest").msgclass
162
170
  RawBlameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawBlameResponse").msgclass
171
+ LastCommitForPathRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathRequest").msgclass
172
+ LastCommitForPathResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathResponse").msgclass
163
173
  end
@@ -26,6 +26,7 @@ module Gitaly
26
26
  rpc :FindAllCommits, FindAllCommitsRequest, stream(FindAllCommitsResponse)
27
27
  rpc :CommitLanguages, CommitLanguagesRequest, CommitLanguagesResponse
28
28
  rpc :RawBlame, RawBlameRequest, stream(RawBlameResponse)
29
+ rpc :LastCommitForPath, LastCommitForPathRequest, LastCommitForPathResponse
29
30
  end
30
31
 
31
32
  Stub = Service.rpc_stub_class
@@ -14,10 +14,12 @@ module Gitaly
14
14
  self.unmarshal_class_method = :decode
15
15
  self.service_name = 'gitaly.RepositoryService'
16
16
 
17
- rpc :Exists, RepositoryExistsRequest, RepositoryExistsResponse
17
+ rpc :RepositoryExists, RepositoryExistsRequest, RepositoryExistsResponse
18
18
  rpc :RepackIncremental, RepackIncrementalRequest, RepackIncrementalResponse
19
19
  rpc :RepackFull, RepackFullRequest, RepackFullResponse
20
20
  rpc :GarbageCollect, GarbageCollectRequest, GarbageCollectResponse
21
+ # Deprecated, use the RepositoryExists RPC instead.
22
+ rpc :Exists, RepositoryExistsRequest, RepositoryExistsResponse
21
23
  end
22
24
 
23
25
  Stub = Service.rpc_stub_class
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.23.0"
3
+ VERSION = "0.24.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: 0.23.0
4
+ version: 0.24.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-28 00:00:00.000000000 Z
11
+ date: 2017-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf