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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c576e5b780532e6ef53e0e3b5199b85680a94ab94ed673f925128ec88b1b93e5
|
4
|
+
data.tar.gz: d02d488943ad6e61b3e5260af258a9575919ba0afeb2a76e8d00d52f6f8c211b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
2
|
-
#
|
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-
|
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.
|
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-
|
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.
|
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: []
|