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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05c6daeaaecbb3c8d6b4419c13b4f5e1f33311d6
|
4
|
+
data.tar.gz: 5345ad7cd3cf7e98bd1f7d9373446665ee000681
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 :
|
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
|
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.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-
|
11
|
+
date: 2017-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|