hgitaly 17.8.1 → 17.8.4
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: b70a47d1f87329e55e63d31bf08d441295d0abdb5a9fd27ef788ba180932a116
|
4
|
+
data.tar.gz: 6d3f9d9c407bc0ee35336dd35f06817fdde435655ab682298a0e7a14bc939991
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b17892d29f083131fea5b06d905457a1fad1a3f473a9692052b2e9326485aef38d7b3d1b81cbdae8336003dd96bf82f3f50ed05513696305f2e2d82cc3a88cd5
|
7
|
+
data.tar.gz: 5f7f70a26c8db673f1868750dae8786e8e1286baaaba5599ceff6d7878d112492f18db74ee0be53c345da5edd1ee5c9a0926d9a7f6ac588322679672e4514954
|
@@ -17,12 +17,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
17
17
|
proto3_optional :allow_multiple_heads, :bool, 2
|
18
18
|
proto3_optional :allow_bookmarks, :bool, 3
|
19
19
|
proto3_optional :auto_publish, :enum, 4, "hgitaly.HeptapodConfigSection.AutoPublish"
|
20
|
+
proto3_optional :clone_bundles, :enum, 5, "hgitaly.HeptapodConfigSection.CloneBundles"
|
20
21
|
end
|
21
22
|
add_enum "hgitaly.HeptapodConfigSection.AutoPublish" do
|
22
23
|
value :WITHOUT_TOPIC, 0
|
23
24
|
value :NOTHING, 1
|
24
25
|
value :ALL, 2
|
25
26
|
end
|
27
|
+
add_enum "hgitaly.HeptapodConfigSection.CloneBundles" do
|
28
|
+
value :DISABLED, 0
|
29
|
+
value :EXPLICIT, 1
|
30
|
+
value :ON_CHANGE, 2
|
31
|
+
end
|
26
32
|
add_message "hgitaly.GetManagedConfigRequest" do
|
27
33
|
optional :repository, :message, 1, "gitaly.Repository"
|
28
34
|
optional :local, :bool, 2
|
@@ -105,6 +111,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
105
111
|
optional :exit_code, :int32, 1
|
106
112
|
repeated :stdout, :bytes, 2
|
107
113
|
end
|
114
|
+
add_message "hgitaly.HousekeepingRequest" do
|
115
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
116
|
+
optional :fail, :bool, 2
|
117
|
+
optional :recover, :bool, 3
|
118
|
+
optional :working_directories_age_threshold_seconds, :uint32, 4
|
119
|
+
optional :working_directories_remove_unlisted, :bool, 5
|
120
|
+
end
|
121
|
+
add_message "hgitaly.HousekeepingResponse" do
|
122
|
+
optional :recover_run, :bool, 1
|
123
|
+
optional :recovered_interrupted_transaction, :bool, 2
|
124
|
+
optional :working_directories_gc, :bool, 3
|
125
|
+
optional :working_directories_remove_unlisted, :bool, 4
|
126
|
+
end
|
108
127
|
add_enum "hgitaly.ConfigItemType" do
|
109
128
|
value :STRING, 0
|
110
129
|
value :BOOL, 1
|
@@ -117,6 +136,7 @@ module Hgitaly
|
|
117
136
|
InitConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.InitConfigResponse").msgclass
|
118
137
|
HeptapodConfigSection = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.HeptapodConfigSection").msgclass
|
119
138
|
HeptapodConfigSection::AutoPublish = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.HeptapodConfigSection.AutoPublish").enummodule
|
139
|
+
HeptapodConfigSection::CloneBundles = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.HeptapodConfigSection.CloneBundles").enummodule
|
120
140
|
GetManagedConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.GetManagedConfigRequest").msgclass
|
121
141
|
GetManagedConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.GetManagedConfigResponse").msgclass
|
122
142
|
SetManagedConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.SetManagedConfigRequest").msgclass
|
@@ -137,5 +157,7 @@ module Hgitaly
|
|
137
157
|
PullResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.PullResponse").msgclass
|
138
158
|
HgCallRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.HgCallRequest").msgclass
|
139
159
|
HgCallResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.HgCallResponse").msgclass
|
160
|
+
HousekeepingRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.HousekeepingRequest").msgclass
|
161
|
+
HousekeepingResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.HousekeepingResponse").msgclass
|
140
162
|
ConfigItemType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.ConfigItemType").enummodule
|
141
163
|
end
|
@@ -70,6 +70,8 @@ module Hgitaly
|
|
70
70
|
# / Not very different from RepositoryService.FetchRemote, but we'll avoid
|
71
71
|
# / a few Git-specific concepts.
|
72
72
|
rpc :Pull, ::Hgitaly::PullRequest, ::Hgitaly::PullResponse
|
73
|
+
# / General tidying and optimization for this repository
|
74
|
+
rpc :Housekeeping, ::Hgitaly::HousekeepingRequest, ::Hgitaly::HousekeepingResponse
|
73
75
|
end
|
74
76
|
|
75
77
|
Stub = Service.rpc_stub_class
|
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: 17.8.
|
4
|
+
version: 17.8.4
|
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-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|