gitaly 0.25.0 → 0.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ruby/lib/gitaly/commit_pb.rb +13 -0
- data/ruby/lib/gitaly/commit_services_pb.rb +1 -0
- data/ruby/lib/gitaly/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e97286fdc81118a195dcc133b9387e4e015e8543
|
4
|
+
data.tar.gz: 180b4cbc51267471bb93d287a3e2d4f478ecc123
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 371a52bd33cf1a5f30b4019a5209dfc7b4bf90a408ec73791d0fcd2a75874398f98629152e260a537dacdc46e1345898d5ff24e1f07d0f559e05a2c7346f1b16
|
7
|
+
data.tar.gz: 16fad35c45529bbaa12adff00b8ae71f974a46a0e8b5589b7d7cc5419d9fbc7635ccb075ada6ccd06b341a67ecb259a42d7afe50dafbc51a3512f9332354c644
|
@@ -138,6 +138,17 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
138
138
|
add_message "gitaly.LastCommitForPathResponse" do
|
139
139
|
optional :commit, :message, 1, "gitaly.GitCommit"
|
140
140
|
end
|
141
|
+
add_message "gitaly.CommitsByMessageRequest" do
|
142
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
143
|
+
optional :revision, :bytes, 2
|
144
|
+
optional :offset, :int32, 3
|
145
|
+
optional :limit, :int32, 4
|
146
|
+
optional :path, :bytes, 5
|
147
|
+
optional :query, :string, 6
|
148
|
+
end
|
149
|
+
add_message "gitaly.CommitsByMessageResponse" do
|
150
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
151
|
+
end
|
141
152
|
end
|
142
153
|
|
143
154
|
module Gitaly
|
@@ -170,4 +181,6 @@ module Gitaly
|
|
170
181
|
RawBlameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawBlameResponse").msgclass
|
171
182
|
LastCommitForPathRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathRequest").msgclass
|
172
183
|
LastCommitForPathResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathResponse").msgclass
|
184
|
+
CommitsByMessageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageRequest").msgclass
|
185
|
+
CommitsByMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageResponse").msgclass
|
173
186
|
end
|
@@ -27,6 +27,7 @@ module Gitaly
|
|
27
27
|
rpc :CommitLanguages, CommitLanguagesRequest, CommitLanguagesResponse
|
28
28
|
rpc :RawBlame, RawBlameRequest, stream(RawBlameResponse)
|
29
29
|
rpc :LastCommitForPath, LastCommitForPathRequest, LastCommitForPathResponse
|
30
|
+
rpc :CommitsByMessage, CommitsByMessageRequest, stream(CommitsByMessageResponse)
|
30
31
|
end
|
31
32
|
|
32
33
|
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.26.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-08-
|
11
|
+
date: 2017-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|