coredns 1.2.7 → 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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -1
  3. data/lib/etcd.rb +2 -2
  4. data/lib/version.rb +1 -1
  5. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7bcf29a90277fe10e409612ab66ce48ac35584c3675f6334322584943cc0ad02
4
- data.tar.gz: 29d6a3ce7bceefa23ee59d7581af9daa43ebc374446d4996fc82e73fbeaac3dd
3
+ metadata.gz: dddaacb57d53d6bb10f447614f78b326849366e5516c13ae86238a16685b62ba
4
+ data.tar.gz: 0f28859cc94012065e96a5b5b63a370038ade8dc77c9c9164ffba7c64e3cbacc
5
5
  SHA512:
6
- metadata.gz: df04fb55376ea04c35205b15653bf23147907b91ef80a2a325f480e6def5331af8b693eee49d13eb18f5510935dbc950930e957ffa93521251c9619103457c10
7
- data.tar.gz: 87c82f538a32d9027ed27d0934b6aaebf3c991f2be45080f3d81ebf1866f407ba08d27e5df07ac4947fae50bc0a60c86d2c3dd00009303ecf304d4d100c82f44
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/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.7"
4
+ VERSION = "1.2.8"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coredns
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.7
4
+ version: 1.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aliaksei Hrechushkin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-01-22 00:00:00.000000000 Z
11
+ date: 2026-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simpleidn
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.23
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Wrapper for coredns-etcd application