coredns 1.2.6 → 1.2.8

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: 56d591e955c0f25c753951cc68951877510c375c1ecf81245289482026566503
4
- data.tar.gz: bdddc368703ceb7d08a326e2b040044455b2fcfa40822bf748046d096f975802
3
+ metadata.gz: dddaacb57d53d6bb10f447614f78b326849366e5516c13ae86238a16685b62ba
4
+ data.tar.gz: 0f28859cc94012065e96a5b5b63a370038ade8dc77c9c9164ffba7c64e3cbacc
5
5
  SHA512:
6
- metadata.gz: ae5571c4987b2c10570bbe021cdda47481350d6ecfc29af0283b0239ffd733ddc1a6fd5e2e72bfd27a512d65712425515b3fa37b6290c2ba3e6c5bb780a0884d
7
- data.tar.gz: ff6785aeaddb15dd48c92f7e7f5852c0f9d29d3035c58ab196c9451f37243473bf1c89241e77099888c8e2ebdb4ddb6f0825c5f77b49f7d3c5a818bc0c51bbcb
6
+ metadata.gz: '053339d736ccec9b9cdcf7e864ca29a3328e9d3417840dfd6f246d468a3a362aca600d3e8c472ead3f434f5e61c58265a9b8e3cd7b6310318082d285ac2d74a5'
7
+ data.tar.gz: 76c3aef972bae6a0ddfab54c817179bc0e80576fe6ccd1db79cf8c70f57ccba39634b1024339192083724dc153675a72837a9d1ad44ab33f13ae0fa6e938c140
data/Gemfile.lock CHANGED
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- coredns (1.2.6)
4
+ coredns (1.2.8)
5
+ simpleidn (~> 0.2.3)
5
6
 
6
7
  GEM
7
8
  remote: https://rubygems.org/
data/coredns.gemspec CHANGED
@@ -27,8 +27,7 @@ Gem::Specification.new do |spec|
27
27
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
28
  spec.require_paths = ["lib"]
29
29
 
30
- # Uncomment to register a new dependency of your gem
31
- # spec.add_dependency "example-gem", "~> 1.0"
30
+ spec.add_dependency "simpleidn", "~> 0.2.3"
32
31
 
33
32
  # For more information and examples about making a new gem, checkout our
34
33
  # guide at: https://bundler.io/guides/creating_gem.html
data/lib/etcd.rb CHANGED
@@ -18,7 +18,7 @@ class CoreDns::Etcd
18
18
 
19
19
  def domain(hostname)
20
20
  unless hostname.empty?
21
- raise RuntimeError.new "Invalid hostname" unless SimpleIDN.to_unicode(hostname).match?(/\A(?:(?!-)(?!.*--)[\p{L}\p{N}_][\p{L}\p{N}\-\_]{0,62}\.)+[\p{L}]{2,}\z/)
21
+ raise RuntimeError.new "Invalid hostname" unless SimpleIDN.to_unicode(hostname).match?(/\A(?:(?!-)(?!.*--)[\p{L}\p{N}\_][\p{L}\p{N}\-]{0,62}\.)+[\p{L}]{2,}\z/)
22
22
  end
23
23
 
24
24
  CoreDns::Etcd::Domain.new(self, hostname)
@@ -27,7 +27,7 @@ class CoreDns::Etcd
27
27
  def zone(domain)
28
28
 
29
29
  unless domain.empty?
30
- raise RuntimeError.new "Invalid domain" unless SimpleIDN.to_unicode(domain).match?(/\A(?:(?!-)(?!.*--)[\p{L}\p{N}-]{1,63}\.)+[\p{L}]{2,}\z/)
30
+ raise RuntimeError.new "Invalid domain" unless SimpleIDN.to_unicode(domain).match?(/\A(?:(?!-)(?!.*--)[\p{L}\p{N}\-]{1,63}\.)+[\p{L}]{2,}\z/)
31
31
  end
32
32
 
33
33
  CoreDns::Etcd::DnsZone.new(self, domain)
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CoreDns
4
- VERSION = "1.2.6"
4
+ VERSION = "1.2.8"
5
5
  end
metadata CHANGED
@@ -1,14 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coredns
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.6
4
+ version: 1.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aliaksei Hrechushkin
8
+ autorequire:
8
9
  bindir: exe
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
- dependencies: []
11
+ date: 2026-03-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: simpleidn
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.2.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.2.3
12
27
  description: Gem which provide simple way to control DNS records.
13
28
  email:
14
29
  - ahrechushkin@ibagoup.eu
@@ -45,6 +60,7 @@ metadata:
45
60
  homepage_uri: https://icdc.io
46
61
  source_code_uri: https://github.com/icdc-io/coredns
47
62
  changelog_uri: https://github.com/icdc-io/coredns
63
+ post_install_message:
48
64
  rdoc_options: []
49
65
  require_paths:
50
66
  - lib
@@ -59,7 +75,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
59
75
  - !ruby/object:Gem::Version
60
76
  version: '0'
61
77
  requirements: []
62
- rubygems_version: 3.7.1
78
+ rubygems_version: 3.4.19
79
+ signing_key:
63
80
  specification_version: 4
64
81
  summary: Wrapper for coredns-etcd application
65
82
  test_files: []