gitaly 13.5.0.pre.rc1 → 13.5.0.pre.rc2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gitaly might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 162ff40313c109482e8b39aa281b9f9b04fc1c76ceeceec7bf77cbaef079a64e
4
- data.tar.gz: e07f51b337e57f22ec2b349a2bf4c4874ef5a4a7ed355f64d4f6e2ae58ce9c8b
3
+ metadata.gz: c576e5b780532e6ef53e0e3b5199b85680a94ab94ed673f925128ec88b1b93e5
4
+ data.tar.gz: d02d488943ad6e61b3e5260af258a9575919ba0afeb2a76e8d00d52f6f8c211b
5
5
  SHA512:
6
- metadata.gz: 21e31b227b86d087b376722f95ab4dfa4abf5a88a62c7712b495276af702f6159cb1689f9254975bdb39e087678a9df83b995fe6c626b2f623cf2dc899ea2497
7
- data.tar.gz: 38b7a28479a83faa8bc54975df7ca7372a049a98d3038c5ddcb6a6008a4c555b72246b51407a5bbd007f848daf9ca089a89eff8eb1788961c1d329d2d9bebb0c
6
+ metadata.gz: 49a62860f367a04f381d25b366d3a6da72c75e719c7917722320fe1f6fa02476e69bf61992605a7c655b561c05340ee7e251ee8663597ccc71f68af9e4e0f0da
7
+ data.tar.gz: c07dd8c90c1deea214fe3d8b5a0959cca5a40dcee6c30fd684059338fb470baee05ec524aedb5b045e09b3775c1f6d5474d41b089258179057df04ef5c67e0c4
@@ -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
@@ -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.5.0-rc1'
5
+ VERSION = '13.5.0-rc2'
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.5.0.pre.rc1
4
+ version: 13.5.0.pre.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-01 00:00:00.000000000 Z
11
+ date: 2020-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -78,7 +78,7 @@ homepage: https://gitlab.com/gitlab-org/gitaly
78
78
  licenses:
79
79
  - MIT
80
80
  metadata: {}
81
- post_install_message:
81
+ post_install_message:
82
82
  rdoc_options: []
83
83
  require_paths:
84
84
  - ruby/proto
@@ -93,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  - !ruby/object:Gem::Version
94
94
  version: 1.3.1
95
95
  requirements: []
96
- rubygems_version: 3.0.8
97
- signing_key:
96
+ rubygems_version: 3.0.3
97
+ signing_key:
98
98
  specification_version: 4
99
99
  summary: Auto-generated gRPC client for gitaly
100
100
  test_files: []