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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 865e47dedfb464f9c0eff859a3ec9a5305c110ba
4
- data.tar.gz: 3b01e6ccc93e547d16bcc68db487b120f0984416
3
+ metadata.gz: e97286fdc81118a195dcc133b9387e4e015e8543
4
+ data.tar.gz: 180b4cbc51267471bb93d287a3e2d4f478ecc123
5
5
  SHA512:
6
- metadata.gz: 8351ef8d3888dd41f81a60593d48ec53bdf6968025db9db54426e6ff2897044628b2f1d4bc6d75f9f8f07796b5f5f18cdac9243282f716ac15ab23695b33564c
7
- data.tar.gz: a48eaaf9ed705d8d310946a0733caf9cb37c72d9b39de827f87bf4bd96ba96600b05e05c9363b72e024df7aaa8968fa4c9213baf532a4229fe4045d2f5e40449
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
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.25.0"
3
+ VERSION = "0.26.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.25.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-03 00:00:00.000000000 Z
11
+ date: 2017-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf