hgitaly 18.5.0a0 → 18.5.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: e210559dd5545ece34d34585beb014ff30285d0305adbd213ded330f22e1e5b9
4
- data.tar.gz: ae38ac941d0fbc302a3050cfb9de43f4981c9566aecc9d4c077a7f8772d1313b
3
+ metadata.gz: d255f7097cacafd3fc94fd773e887e99c881574e8f3d6d5642c64a75906b83a8
4
+ data.tar.gz: ff52b1aff8c6d0cdbd4177f7334833f148b45db53b44dbfcc64f16b714b2b501
5
5
  SHA512:
6
- metadata.gz: 1d7b5f373f1b854fde85af78d02f81e8c123903962f0783075a058b5866778e705d27c26d91c371f9f68600c7d0dd0b3c80c6999e3277d5887bee0599078b3de
7
- data.tar.gz: 00473b381504eca13d66ee09dcec45e9985b411de4fba8888f495ba8b799e8c7c90f779b2f097ad0667648237ae92d0f60eb5ce626c5400059ee3f330a332747
6
+ metadata.gz: 702141776f4f74a1c7a1a9d8b87a800f3041bce37a3116d6c7a78c0e59135b442bd808c27b8c5c486c330533e20989bbfc721052435b19108a4f81e48872180e
7
+ data.tar.gz: fb7fc5128f4b35036a1e84cbff7f8b0e8c34729594f18f1becb04da1c2969be819ffa316a9f8e012d0c7e0d490a980cd461cf81cc240ba17e3bcfbfe2e385a3a
@@ -0,0 +1,22 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: mercurial-namespace.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("mercurial-namespace.proto", :syntax => :proto3) do
8
+ add_message "hgitaly.MercurialNamespacesConfigArchive" do
9
+ optional :data, :bytes, 1
10
+ end
11
+ add_message "hgitaly.BackupMercurialNamespacesConfigRequest" do
12
+ end
13
+ add_message "hgitaly.RestoreMercurialNamespacesConfigResponse" do
14
+ end
15
+ end
16
+ end
17
+
18
+ module Hgitaly
19
+ MercurialNamespacesConfigArchive = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.MercurialNamespacesConfigArchive").msgclass
20
+ BackupMercurialNamespacesConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.BackupMercurialNamespacesConfigRequest").msgclass
21
+ RestoreMercurialNamespacesConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hgitaly.RestoreMercurialNamespacesConfigResponse").msgclass
22
+ end
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: mercurial-namespace.proto for package 'hgitaly'
3
+
4
+ require 'grpc'
5
+ require 'mercurial-namespace_pb'
6
+
7
+ module Hgitaly
8
+ module MercurialNamespaceService
9
+ # Methods about Mercurial configuration files for GitLab namespaces
10
+ class Service
11
+
12
+ include ::GRPC::GenericService
13
+
14
+ self.marshal_class_method = :encode
15
+ self.unmarshal_class_method = :decode
16
+ self.service_name = 'hgitaly.MercurialNamespaceService'
17
+
18
+ rpc :BackupMercurialNamespacesConfig, ::Hgitaly::BackupMercurialNamespacesConfigRequest, stream(::Hgitaly::MercurialNamespacesConfigArchive)
19
+ rpc :RestoreMercurialNamespacesConfig, stream(::Hgitaly::MercurialNamespacesConfigArchive), ::Hgitaly::RestoreMercurialNamespacesConfigResponse
20
+ end
21
+
22
+ Stub = Service.rpc_stub_class
23
+ end
24
+ end
@@ -1,4 +1,4 @@
1
1
  # This file is generated by generate-grpc-lib. Do not edit.
2
2
  module Hgitaly
3
- VERSION = '18.5.0a0'
3
+ VERSION = '18.5.0'
4
4
  end
data/lib/hgitaly.rb CHANGED
@@ -7,6 +7,8 @@ require 'hgitaly/mercurial-aux-git_services_pb'
7
7
 
8
8
  require 'hgitaly/mercurial-changeset_services_pb'
9
9
 
10
+ require 'hgitaly/mercurial-namespace_services_pb'
11
+
10
12
  require 'hgitaly/mercurial-operations_services_pb'
11
13
 
12
14
  require 'hgitaly/mercurial-repository_services_pb'
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: 18.5.0a0
4
+ version: 18.5.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-09-30 00:00:00.000000000 Z
11
+ date: 2025-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -51,6 +51,8 @@ files:
51
51
  - lib/hgitaly/mercurial-aux-git_services_pb.rb
52
52
  - lib/hgitaly/mercurial-changeset_pb.rb
53
53
  - lib/hgitaly/mercurial-changeset_services_pb.rb
54
+ - lib/hgitaly/mercurial-namespace_pb.rb
55
+ - lib/hgitaly/mercurial-namespace_services_pb.rb
54
56
  - lib/hgitaly/mercurial-operations_pb.rb
55
57
  - lib/hgitaly/mercurial-operations_services_pb.rb
56
58
  - lib/hgitaly/mercurial-repository_pb.rb
@@ -71,9 +73,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
71
73
  version: '0'
72
74
  required_rubygems_version: !ruby/object:Gem::Requirement
73
75
  requirements:
74
- - - ">"
76
+ - - ">="
75
77
  - !ruby/object:Gem::Version
76
- version: 1.3.1
78
+ version: '0'
77
79
  requirements: []
78
80
  rubygems_version: 3.1.6
79
81
  signing_key: