dnsruby 1.72.0 → 1.72.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37698d76fb241033b0650afcaf04eb636f9beccf349fece3f6e8e7294b68f1fa
4
- data.tar.gz: 5d7a7e880eb1d164bdeb1d2c0482fbc7d43c20c9dc7013025d63d1ca1a6904fe
3
+ metadata.gz: 59e143e5c778c710c41fc8773f011abe1bdb6502604202d41d2dc953af051792
4
+ data.tar.gz: 6fd89c7fe716e10af20c5b494102a47d8d33e51a5258b48dd959099266e7e7c8
5
5
  SHA512:
6
- metadata.gz: aaf0e63dba53d1c3aefb74465d95e371feb88001757a050b6727dffb280eb6fb694513d71efc6b08fd41a038dccf0e4b8f7d95e28391529117aec32e538a6dc9
7
- data.tar.gz: a0881956cd6cfd6f1931ba36dc3383fe6599d62ebeb5016ac9ddea583ccc3094ffe8e740e869f8ad13bb522231916010fdd39d4359b15d4dcaa18908a0107e5e
6
+ metadata.gz: 313f1b89fb446ce5c1f19d8910e1fe6ed21ef3f392b680e980bbedc9d98a7f5bb0844c52aa9422df6b525f0bcc4c249541c0e23b0cf3bcf8f139c8f98b4de913
7
+ data.tar.gz: 870efeeb297acf83b0a0c1b9cb5d832e138480e37bf8723986d74d43997998773195936bb4e5a035f579bb2c93806ce94a03bdc39d6c7e41fedb56fb303d1b80
data/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release Notes
2
2
 
3
+ ## v.1.72.1
4
+
5
+ * Add issuemail CAA record support - thanks Ryan Doherty!
6
+
3
7
  ## v.1.72.0
4
8
 
5
9
  * Fix compatibility with the `--enable-string-literal` Ruby option - thanks Jean byroot Boussier!
@@ -43,7 +43,7 @@ module Dnsruby
43
43
  end
44
44
 
45
45
  def from_string(input) #:nodoc: all
46
- matches = (/(\d+) (issuewild|issue|iodef|contactemail|contactphone) "(.+)"$/).match(input)
46
+ matches = (/(\d+) (issuewild|issuemail|issue|iodef|contactemail|contactphone) "(.+)"$/).match(input)
47
47
  @flag = matches[1]
48
48
  @property_tag = matches[2]
49
49
  @property_value = matches[3]
@@ -1,3 +1,3 @@
1
1
  module Dnsruby
2
- VERSION = '1.72.0'
2
+ VERSION = '1.72.1'
3
3
  end
data/test/tc_caa.rb CHANGED
@@ -25,6 +25,7 @@ class TestCAA < Minitest::Test
25
25
  {'foo.com. IN CAA 0 issue "ca.example.net"' => [0, 'issue', 'ca.example.net'],
26
26
  'foo.com. IN CAA 1 issue "ca.example.net"' => [1, 'issue', 'ca.example.net'],
27
27
  'foo.com. IN CAA 0 issuewild "ca.example.net"' => [0, 'issuewild', 'ca.example.net'],
28
+ 'foo.com. IN CAA 0 issuemail "ca.example.net"' => [0, 'issuemail', 'ca.example.net'],
28
29
  'foo.com. IN CAA 0 iodef "mailto:security@example.com"' => [0, 'iodef', 'mailto:security@example.com'],
29
30
  'foo.com. IN CAA 0 issue "ca.example.net; account=230123"' => [0, 'issue', 'ca.example.net; account=230123']
30
31
  }.each do |text, data|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnsruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.72.0
4
+ version: 1.72.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Dalitz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-28 00:00:00.000000000 Z
11
+ date: 2024-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake