gitaly 13.3.0.pre.rc4 → 13.6.1

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
  SHA256:
3
- metadata.gz: a259b3bdcf9b88680a4e8c9f81c087123b95d7e1e592b537f6131e1dd763a0c8
4
- data.tar.gz: 0b0177beffee5e3c5ed03e6642b6cb03dff78a5a47fead19a8a756f0f5984469
3
+ metadata.gz: fd659e269b5487704ff7662870b48d3d785782bc0f45688129933953d11aaa7b
4
+ data.tar.gz: 83cb14afd21cf73ca3ccdd4a477929dac6d326478a3e9181db42c2ac21c2cff3
5
5
  SHA512:
6
- metadata.gz: e9528d083d8b9ab6b6594cabdcce3ce93851d9db572a81ca2dff133f2f6d338c9ad311896df382d4bb984bb9a69c5775aac8f1fd45c54ad55e64c7a8fbc75ed1
7
- data.tar.gz: 7be211125760998ee5143de8d556a404ae00be94032ea07eb8c00576ba6ad144829afd7438f9e219348d068af1f239f01a491c47f1fc506d1c2405cef6674553
6
+ metadata.gz: aae38036a5279e11146830f16c7206ca14b9ffdaa97dab46f8dbb44d61673cd3938956dc9dceadf0d939ad7dbaec135d4340bd4986e0bdfd8bd339b68d385c7c
7
+ data.tar.gz: a33f3eaeeccc1d06562be333282883b7fd21dd9e45802721d0f7d994cc71a53bf0c57e6dce9cd827a3a667103dbe0ab56124fc754cc21d6a13b2e956097e4992
@@ -30,6 +30,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
30
30
  optional :revision, :bytes, 2
31
31
  optional :path, :bytes, 3
32
32
  optional :limit, :int64, 4
33
+ optional :max_size, :int64, 5
33
34
  end
34
35
  add_message "gitaly.TreeEntryResponse" do
35
36
  optional :type, :enum, 1, "gitaly.TreeEntryResponse.ObjectType"
@@ -17,6 +17,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
17
17
  optional :their_path, :bytes, 3
18
18
  optional :our_path, :bytes, 4
19
19
  optional :our_mode, :int32, 5
20
+ optional :ancestor_path, :bytes, 6
20
21
  end
21
22
  add_message "gitaly.ConflictFile" do
22
23
  oneof :conflict_file_payload do
@@ -45,6 +45,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
45
45
  optional :repository, :message, 1, "gitaly.Repository"
46
46
  repeated :environment_variables, :string, 2
47
47
  optional :stdin, :bytes, 3
48
+ optional :state, :enum, 4, "gitaly.ReferenceTransactionHookRequest.State"
49
+ end
50
+ add_enum "gitaly.ReferenceTransactionHookRequest.State" do
51
+ value :PREPARED, 0
52
+ value :COMMITTED, 1
53
+ value :ABORTED, 2
48
54
  end
49
55
  add_message "gitaly.ReferenceTransactionHookResponse" do
50
56
  optional :stdout, :bytes, 1
@@ -62,5 +68,6 @@ module Gitaly
62
68
  UpdateHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookRequest").msgclass
63
69
  UpdateHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookResponse").msgclass
64
70
  ReferenceTransactionHookRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest").msgclass
71
+ ReferenceTransactionHookRequest::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookRequest.State").enummodule
65
72
  ReferenceTransactionHookResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ReferenceTransactionHookResponse").msgclass
66
73
  end
@@ -76,6 +76,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
76
76
  optional :target_ref, :bytes, 5
77
77
  optional :message, :bytes, 6
78
78
  optional :first_parent_ref, :bytes, 7
79
+ optional :allow_conflicts, :bool, 8
79
80
  end
80
81
  add_message "gitaly.UserMergeToRefResponse" do
81
82
  optional :commit_id, :string, 1
@@ -23,6 +23,10 @@ module Gitaly
23
23
  rpc :UserMergeBranch, stream(Gitaly::UserMergeBranchRequest), stream(Gitaly::UserMergeBranchResponse)
24
24
  rpc :UserFFBranch, Gitaly::UserFFBranchRequest, Gitaly::UserFFBranchResponse
25
25
  rpc :UserCherryPick, Gitaly::UserCherryPickRequest, Gitaly::UserCherryPickResponse
26
+ # UserCommitFiles builds a commit from a stream of actions and updates the target branch to point to it.
27
+ # UserCommitFilesRequest with a UserCommitFilesRequestHeader must be sent as the first message of the stream.
28
+ # Following that, a variable number of actions can be sent to build a new commit. Each action consists of
29
+ # a header followed by content if used by the action.
26
30
  rpc :UserCommitFiles, stream(Gitaly::UserCommitFilesRequest), Gitaly::UserCommitFilesResponse
27
31
  rpc :UserRebaseConfirmable, stream(Gitaly::UserRebaseConfirmableRequest), stream(Gitaly::UserRebaseConfirmableResponse)
28
32
  rpc :UserRevert, Gitaly::UserRevertRequest, Gitaly::UserRevertResponse
@@ -24,9 +24,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
24
24
  end
25
25
  add_message "gitaly.RepackFullResponse" do
26
26
  end
27
+ add_message "gitaly.MidxRepackRequest" do
28
+ optional :repository, :message, 1, "gitaly.Repository"
29
+ end
30
+ add_message "gitaly.MidxRepackResponse" do
31
+ end
27
32
  add_message "gitaly.GarbageCollectRequest" do
28
33
  optional :repository, :message, 1, "gitaly.Repository"
29
34
  optional :create_bitmap, :bool, 2
35
+ optional :prune, :bool, 3
30
36
  end
31
37
  add_message "gitaly.GarbageCollectResponse" do
32
38
  end
@@ -78,6 +84,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
78
84
  optional :path, :bytes, 5
79
85
  repeated :exclude, :bytes, 6
80
86
  optional :elide_path, :bool, 7
87
+ optional :include_lfs_blobs, :bool, 8
81
88
  end
82
89
  add_enum "gitaly.GetArchiveRequest.Format" do
83
90
  value :ZIP, 0
@@ -281,13 +288,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
281
288
  optional :http_authorization_header, :string, 3
282
289
  repeated :mirror_refmaps, :string, 4
283
290
  end
284
- add_message "gitaly.FetchHTTPRemoteRequest" do
285
- optional :repository, :message, 1, "gitaly.Repository"
286
- optional :remote, :message, 2, "gitaly.Remote"
287
- optional :timeout, :int32, 3
288
- end
289
- add_message "gitaly.FetchHTTPRemoteResponse" do
290
- end
291
291
  add_message "gitaly.GetObjectDirectorySizeRequest" do
292
292
  optional :repository, :message, 1, "gitaly.Repository"
293
293
  end
@@ -340,6 +340,8 @@ module Gitaly
340
340
  RepackIncrementalResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackIncrementalResponse").msgclass
341
341
  RepackFullRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullRequest").msgclass
342
342
  RepackFullResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullResponse").msgclass
343
+ MidxRepackRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MidxRepackRequest").msgclass
344
+ MidxRepackResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.MidxRepackResponse").msgclass
343
345
  GarbageCollectRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
344
346
  GarbageCollectResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
345
347
  WriteCommitGraphRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteCommitGraphRequest").msgclass
@@ -407,8 +409,6 @@ module Gitaly
407
409
  SearchFilesByContentRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentRequest").msgclass
408
410
  SearchFilesByContentResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentResponse").msgclass
409
411
  Remote = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Remote").msgclass
410
- FetchHTTPRemoteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteRequest").msgclass
411
- FetchHTTPRemoteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteResponse").msgclass
412
412
  GetObjectDirectorySizeRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeRequest").msgclass
413
413
  GetObjectDirectorySizeResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeResponse").msgclass
414
414
  CloneFromPoolRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolRequest").msgclass
@@ -17,6 +17,7 @@ module Gitaly
17
17
  rpc :RepositoryExists, Gitaly::RepositoryExistsRequest, Gitaly::RepositoryExistsResponse
18
18
  rpc :RepackIncremental, Gitaly::RepackIncrementalRequest, Gitaly::RepackIncrementalResponse
19
19
  rpc :RepackFull, Gitaly::RepackFullRequest, Gitaly::RepackFullResponse
20
+ rpc :MidxRepack, Gitaly::MidxRepackRequest, Gitaly::MidxRepackResponse
20
21
  rpc :GarbageCollect, Gitaly::GarbageCollectRequest, Gitaly::GarbageCollectResponse
21
22
  rpc :WriteCommitGraph, Gitaly::WriteCommitGraphRequest, Gitaly::WriteCommitGraphResponse
22
23
  rpc :RepositorySize, Gitaly::RepositorySizeRequest, Gitaly::RepositorySizeResponse
@@ -48,7 +49,6 @@ module Gitaly
48
49
  rpc :SearchFilesByName, Gitaly::SearchFilesByNameRequest, stream(Gitaly::SearchFilesByNameResponse)
49
50
  rpc :RestoreCustomHooks, stream(Gitaly::RestoreCustomHooksRequest), Gitaly::RestoreCustomHooksResponse
50
51
  rpc :BackupCustomHooks, Gitaly::BackupCustomHooksRequest, stream(Gitaly::BackupCustomHooksResponse)
51
- rpc :FetchHTTPRemote, Gitaly::FetchHTTPRemoteRequest, Gitaly::FetchHTTPRemoteResponse
52
52
  rpc :GetObjectDirectorySize, Gitaly::GetObjectDirectorySizeRequest, Gitaly::GetObjectDirectorySizeResponse
53
53
  rpc :CloneFromPool, Gitaly::CloneFromPoolRequest, Gitaly::CloneFromPoolResponse
54
54
  rpc :CloneFromPoolInternal, Gitaly::CloneFromPoolInternalRequest, Gitaly::CloneFromPoolInternalResponse
@@ -24,6 +24,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
24
24
  repeated :parent_ids, :string, 6
25
25
  optional :body_size, :int64, 7
26
26
  optional :signature_type, :enum, 8, "gitaly.SignatureType"
27
+ optional :tree_id, :string, 9
27
28
  end
28
29
  add_message "gitaly.CommitAuthor" do
29
30
  optional :name, :bytes, 1
@@ -19,8 +19,8 @@ module Gitaly
19
19
  # will upload the packs to that user. The user doesn't upload new objects.
20
20
  rpc :InfoRefsUploadPack, Gitaly::InfoRefsRequest, stream(Gitaly::InfoRefsResponse)
21
21
  # The response body for GET /info/refs?service=git-receive-pack
22
- # Will be invoked when the user executes a `git push`, meaning the server
23
- # will receive new objects in the pack from the user.
22
+ # Will be invoked when the user executes a `git push`, but only advertises
23
+ # references to the user.
24
24
  rpc :InfoRefsReceivePack, Gitaly::InfoRefsRequest, stream(Gitaly::InfoRefsResponse)
25
25
  # Request and response body for POST /upload-pack
26
26
  rpc :PostUploadPack, stream(Gitaly::PostUploadPackRequest), stream(Gitaly::PostUploadPackResponse)
@@ -19,6 +19,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
19
19
  add_enum "gitaly.VoteTransactionResponse.TransactionState" do
20
20
  value :COMMIT, 0
21
21
  value :ABORT, 1
22
+ value :STOP, 2
23
+ end
24
+ add_message "gitaly.StopTransactionRequest" do
25
+ optional :repository, :message, 1, "gitaly.Repository"
26
+ optional :transaction_id, :uint64, 2
27
+ end
28
+ add_message "gitaly.StopTransactionResponse" do
22
29
  end
23
30
  end
24
31
  end
@@ -27,4 +34,6 @@ module Gitaly
27
34
  VoteTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionRequest").msgclass
28
35
  VoteTransactionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionResponse").msgclass
29
36
  VoteTransactionResponse::TransactionState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.VoteTransactionResponse.TransactionState").enummodule
37
+ StopTransactionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.StopTransactionRequest").msgclass
38
+ StopTransactionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.StopTransactionResponse").msgclass
30
39
  end
@@ -15,6 +15,7 @@ module Gitaly
15
15
  self.service_name = 'gitaly.RefTransaction'
16
16
 
17
17
  rpc :VoteTransaction, Gitaly::VoteTransactionRequest, Gitaly::VoteTransactionResponse
18
+ rpc :StopTransaction, Gitaly::StopTransactionRequest, Gitaly::StopTransactionResponse
18
19
  end
19
20
 
20
21
  Stub = Service.rpc_stub_class
@@ -1,5 +1,6 @@
1
- # This file was auto-generated by release-tools
2
- # https://gitlab.com/gitlab-org/release-tools/-/blob/master/lib/release_tools/release/gitaly_release.rb
1
+ # This file was auto-generated by the Release Tools project
2
+ # (https://gitlab.com/gitlab-org/release-tools/), and should not be
3
+ # modified.
3
4
  module Gitaly
4
- VERSION = '13.3.0-rc4'
5
+ VERSION = '13.6.1'
5
6
  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: 13.3.0.pre.rc4
4
+ version: 13.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-11 00:00:00.000000000 Z
11
+ date: 2020-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -89,11 +89,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
89
89
  version: '0'
90
90
  required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  requirements:
92
- - - ">"
92
+ - - ">="
93
93
  - !ruby/object:Gem::Version
94
- version: 1.3.1
94
+ version: '0'
95
95
  requirements: []
96
- rubygems_version: 3.0.8
96
+ rubygems_version: 3.1.4
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: Auto-generated gRPC client for gitaly