gitaly 0.26.0 → 0.27.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: e97286fdc81118a195dcc133b9387e4e015e8543
4
- data.tar.gz: 180b4cbc51267471bb93d287a3e2d4f478ecc123
3
+ metadata.gz: 0a897833bca0855b003d88f3c576acfd10836cc6
4
+ data.tar.gz: 1d3ccaec49fb0ff73896d82cccc49331ae84205a
5
5
  SHA512:
6
- metadata.gz: 371a52bd33cf1a5f30b4019a5209dfc7b4bf90a408ec73791d0fcd2a75874398f98629152e260a537dacdc46e1345898d5ff24e1f07d0f559e05a2c7346f1b16
7
- data.tar.gz: 16fad35c45529bbaa12adff00b8ae71f974a46a0e8b5589b7d7cc5419d9fbc7635ccb075ada6ccd06b341a67ecb259a42d7afe50dafbc51a3512f9332354c644
6
+ metadata.gz: 207d5ad8f7a9af058b707dd0d326038c545c311c248ea3de52e3e1284a165e42292ac9484e18a2149e57c2fa2a95bd7329cfb805f687375aec475e4d88592b5a
7
+ data.tar.gz: da11790c0b741d0da3581ffbe967962232ac6f9b6d4af4d4f2aa7be2488b700c896802747d633220b7f7000bea58779a3427d6387ff56397bcda818ee05b18cb
@@ -110,6 +110,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
110
110
  add_message "gitaly.FindAllCommitsResponse" do
111
111
  repeated :commits, :message, 1, "gitaly.GitCommit"
112
112
  end
113
+ add_message "gitaly.FindCommitsRequest" do
114
+ optional :repository, :message, 1, "gitaly.Repository"
115
+ optional :revision, :bytes, 2
116
+ optional :limit, :int32, 3
117
+ optional :offset, :int32, 4
118
+ repeated :paths, :bytes, 5
119
+ optional :follow, :bool, 6
120
+ optional :skip_merges, :bool, 7
121
+ optional :disable_walk, :bool, 8
122
+ optional :after, :message, 9, "google.protobuf.Timestamp"
123
+ optional :before, :message, 10, "google.protobuf.Timestamp"
124
+ end
125
+ add_message "gitaly.FindCommitsResponse" do
126
+ repeated :commits, :message, 1, "gitaly.GitCommit"
127
+ end
113
128
  add_message "gitaly.CommitLanguagesRequest" do
114
129
  optional :repository, :message, 1, "gitaly.Repository"
115
130
  optional :revision, :bytes, 2
@@ -174,6 +189,8 @@ module Gitaly
174
189
  FindAllCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest").msgclass
175
190
  FindAllCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest.Order").enummodule
176
191
  FindAllCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsResponse").msgclass
192
+ FindCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitsRequest").msgclass
193
+ FindCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitsResponse").msgclass
177
194
  CommitLanguagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesRequest").msgclass
178
195
  CommitLanguagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesResponse").msgclass
179
196
  CommitLanguagesResponse::Language = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesResponse.Language").msgclass
@@ -24,6 +24,7 @@ module Gitaly
24
24
  rpc :CommitStats, CommitStatsRequest, CommitStatsResponse
25
25
  # Use a stream to paginate the result set
26
26
  rpc :FindAllCommits, FindAllCommitsRequest, stream(FindAllCommitsResponse)
27
+ rpc :FindCommits, FindCommitsRequest, stream(FindCommitsResponse)
27
28
  rpc :CommitLanguages, CommitLanguagesRequest, CommitLanguagesResponse
28
29
  rpc :RawBlame, RawBlameRequest, stream(RawBlameResponse)
29
30
  rpc :LastCommitForPath, LastCommitForPathRequest, LastCommitForPathResponse
@@ -34,6 +34,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
34
34
  add_message "gitaly.RepositorySizeResponse" do
35
35
  optional :size, :int64, 1
36
36
  end
37
+ add_message "gitaly.ApplyGitattributesRequest" do
38
+ optional :repository, :message, 1, "gitaly.Repository"
39
+ optional :revision, :bytes, 2
40
+ end
41
+ add_message "gitaly.ApplyGitattributesResponse" do
42
+ end
37
43
  end
38
44
 
39
45
  module Gitaly
@@ -47,4 +53,6 @@ module Gitaly
47
53
  GarbageCollectResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
48
54
  RepositorySizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
49
55
  RepositorySizeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeResponse").msgclass
56
+ ApplyGitattributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesRequest").msgclass
57
+ ApplyGitattributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesResponse").msgclass
50
58
  end
@@ -19,6 +19,7 @@ module Gitaly
19
19
  rpc :RepackFull, RepackFullRequest, RepackFullResponse
20
20
  rpc :GarbageCollect, GarbageCollectRequest, GarbageCollectResponse
21
21
  rpc :RepositorySize, RepositorySizeRequest, RepositorySizeResponse
22
+ rpc :ApplyGitattributes, ApplyGitattributesRequest, ApplyGitattributesResponse
22
23
  # Deprecated, use the RepositoryExists RPC instead.
23
24
  rpc :Exists, RepositoryExistsRequest, RepositoryExistsResponse
24
25
  end
@@ -8,6 +8,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_message "gitaly.Repository" do
9
9
  optional :storage_name, :string, 2
10
10
  optional :relative_path, :string, 3
11
+ optional :git_object_directory, :string, 4
12
+ repeated :git_alternate_object_directories, :string, 5
11
13
  end
12
14
  add_message "gitaly.GitCommit" do
13
15
  optional :id, :string, 1
@@ -1,4 +1,4 @@
1
- # This file was auto-generated by _support/release
1
+ # This file was auto-generated by /Volumes/GitLab.com/gitlab-development-kit/gitaly/src/gitlab.com/gitlab-org/gitaly-proto/_support/release
2
2
  module Gitaly
3
- VERSION = "0.26.0"
3
+ VERSION = "0.27.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.26.0
4
+ version: 0.27.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-04 00:00:00.000000000 Z
11
+ date: 2017-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -98,7 +98,7 @@ files:
98
98
  - ruby/lib/gitaly/ssh_pb.rb
99
99
  - ruby/lib/gitaly/ssh_services_pb.rb
100
100
  - ruby/lib/gitaly/version.rb
101
- homepage: https://gitlab.com/gitlab-org/gitaly
101
+ homepage: https://gitlab.com/gitlab-org/gitaly-proto
102
102
  licenses:
103
103
  - MIT
104
104
  metadata: {}