hgitaly 17.11.1 → 18.4.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e5a952e372cc35826800e8a5f63b6ad659fa6d2cfef6b5f435dd40fc754e0d6
|
4
|
+
data.tar.gz: 4ab9f18f8a6f88bc456d4bcef6fe73f0f2947827995304f1b0212e4344a7bd9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc6b5f3ad4bb99217f9de5949050e4815fd04a6a1c702441ae90972d64cf685f985d5b0637376c77a9d0a8567d9979ec50776365c333940c5753936eaf968c29
|
7
|
+
data.tar.gz: 4726a464230152289c23208da26f1d5dc096b18353c649e6b98f03cf5036af05e2a73340d16135fb0cf36a0a3e988ccb2ab3832b9a19d3b3c8dddac12a46833c
|
@@ -70,6 +70,26 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
70
70
|
optional :pre_check, :enum, 4, "hgitaly.PreCheckUpdateError"
|
71
71
|
end
|
72
72
|
end
|
73
|
+
add_message "hgitaly.RebaseRequest" do
|
74
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
75
|
+
optional :user, :message, 2, "gitaly.User"
|
76
|
+
optional :source, :bytes, 3
|
77
|
+
optional :source_head_sha, :string, 4
|
78
|
+
optional :destination, :bytes, 5
|
79
|
+
end
|
80
|
+
add_message "hgitaly.RebaseResponse" do
|
81
|
+
optional :branch_update, :message, 1, "gitaly.OperationBranchUpdate"
|
82
|
+
end
|
83
|
+
add_message "hgitaly.RebaseError" do
|
84
|
+
oneof :error do
|
85
|
+
optional :gitlab_hook, :message, 1, "gitaly.CustomHookError"
|
86
|
+
optional :conflict, :message, 2, "gitaly.MergeConflictError"
|
87
|
+
optional :reference_check, :message, 3, "gitaly.ReferenceUpdateError"
|
88
|
+
optional :pre_check, :enum, 4, "hgitaly.PreCheckUpdateError"
|
89
|
+
optional :ref_mismatch, :message, 5, "gitaly.ReferenceStateMismatchError"
|
90
|
+
optional :resolve_rev, :message, 6, "gitaly.ResolveRevisionError"
|
91
|
+
end
|
92
|
+
end
|
73
93
|
add_message "hgitaly.CensorRequest" do
|
74
94
|
optional :repository, :message, 1, "gitaly.Repository"
|
75
95
|
optional :user, :message, 2, "gitaly.User"
|
@@ -107,6 +127,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
107
127
|
value :NOT_FAST_FORWARD, 1
|
108
128
|
value :OBSOLETE_CHANGESET, 2
|
109
129
|
value :UNSTABLE_CHANGESET, 3
|
130
|
+
value :NOT_A_TOPIC, 4
|
110
131
|
end
|
111
132
|
end
|
112
133
|
end
|
@@ -122,6 +143,9 @@ module Hgitaly
|
|
122
143
|
MergeBranchRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.MergeBranchRequest").msgclass
|
123
144
|
MergeBranchResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.MergeBranchResponse").msgclass
|
124
145
|
MergeBranchError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.MergeBranchError").msgclass
|
146
|
+
RebaseRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.RebaseRequest").msgclass
|
147
|
+
RebaseResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.RebaseResponse").msgclass
|
148
|
+
RebaseError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.RebaseError").msgclass
|
125
149
|
CensorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.CensorRequest").msgclass
|
126
150
|
CensorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.CensorResponse").msgclass
|
127
151
|
GetWorkingDirectoryRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.GetWorkingDirectoryRequest").msgclass
|
@@ -31,11 +31,13 @@ module Hgitaly
|
|
31
31
|
#
|
32
32
|
# Equivalent of `hg censor`
|
33
33
|
rpc :Censor, ::Hgitaly::CensorRequest, ::Hgitaly::CensorResponse
|
34
|
-
# MergeBranch plays the same role as OperationService.
|
34
|
+
# MergeBranch plays the same role as OperationService.UserMergeBranch with the following differences:
|
35
35
|
#
|
36
36
|
# - It is not a 2-phase operation, hence not streaming
|
37
37
|
# - The Request message has a slighly different set of options
|
38
38
|
rpc :MergeBranch, ::Hgitaly::MergeBranchRequest, ::Hgitaly::MergeBranchResponse
|
39
|
+
# Rebase plays the same role as OperationsService.UserRebaseConfirmable
|
40
|
+
rpc :Rebase, ::Hgitaly::RebaseRequest, ::Hgitaly::RebaseResponse
|
39
41
|
# GetWorkingDirectory hands over a working directory, checked out to
|
40
42
|
# the wished changeset.
|
41
43
|
#
|
data/lib/hgitaly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hgitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 18.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Georges Racinet
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|