whois 4.0.0.pre.beta2 → 4.0.0

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
  SHA1:
3
- metadata.gz: 474653a5b7daa52051e927c0df4061121f84b9f4
4
- data.tar.gz: 88c936b97d122ce1d11d7f238fa386fc20368f86
3
+ metadata.gz: 6dcd0e2cc49dec9366afd40947c33264935b4f38
4
+ data.tar.gz: 3ee359096d35520a370f0e71351b3f1a4b538dd0
5
5
  SHA512:
6
- metadata.gz: ce9fa1294e9b8432ff2e80cd20c239a1b58d9efe473403abc9e9e1c5a7d02ba9e22cfdaa2c9d929ff5c3ce02493a9298ff1ab8017b8fa54265b6a5b025f903c6
7
- data.tar.gz: 561fd23189afd9a66d9a956931569df5b8b77af6b24fc11c20c71c9b17b3a8d2f17863630732a04647652ea1e35382dbb7401bc94f8b0d6408fe10f1b2477b95
6
+ metadata.gz: d1e9fef2b26c6435231f43e8b3af8c8cebe8af917a9e0e4212b6acc29b8828d22c2e50832b1a964fb260ce0e53ac77cd70f2846085deae151fa69bf725b55320
7
+ data.tar.gz: 27bb9c56315f7697b0f8ade2dccc56000bd02330ab914ddd3e73851eaaac0623fc2ad175ad78e8d4d4cde47e42980807457348a83cc306e9294e201f76de338b
@@ -0,0 +1,143 @@
1
+ # Welcome to Whois 4.0!
2
+
3
+ Whois 4 is a major upgrade compared to Whois 3. This library is now 7 years old, enough mature to offer pretty much all the features you need to perform WHOIS queries.
4
+
5
+ In these last 7 years the adoption of this library has grown beyond any expectation. Most of the time was spent updating the definitions to stay up to date with the various registrar changes (thanks ICANN for thew newGLTDs...), updating the registry parsers and polishing up the public interface.
6
+
7
+ For Whois 4 I decided to take a step back, and rewrite some of the internal components of this library to improve performance and readability. As a result of these changes, there are several compatibility breaks with Whois 4 that I'm going to document here.
8
+
9
+ -- Simone
10
+
11
+ ## What's New
12
+
13
+ - The Whois client and the Whois parser are now two separate repositories, and they are also distributed as two separate gems:
14
+
15
+ - https://github.com/weppos/whois - https://rubygems.org/gems/whois
16
+ - https://github.com/weppos/whois-parser https://rubygems.org/gems/whois-parser
17
+
18
+ There are several reasons behind this change (see [weppos/whois#503](https://github.com/weppos/whois/pull/503)).
19
+
20
+ First of all, the maintenance of the whois-parser component is the most time consuming task. Updating a parser may require from a few minutes to several hours, depending on how big are the changes. It also requires to generate the appropriate fixtures, and write the necessary tests. In the last years I noticed that more than once client updates were delayed because of pending parser changes. Separating the repositories and the release cycles will likely speedup future released of the client gem.
21
+
22
+ Moreover, the parser component takes a lot of space (due to all the files and fixtures). If you just need a Ruby whois client, loading the entire parser component is inefficient and a waste of time/CPU/resources.
23
+
24
+ Last but not least, in the last years the Whois client inspired several ports in different languages. Most of these ports were not interested in porting the parser as well. However, the parser was so tightly coupled with the client that it made the client code harder to read.
25
+
26
+ - The definition files have been largely redesigned, in particular the TLD file. The definitions are now maintained using a set of CLI tools. The goal is to eventually extract the definition files into a separate, standalone repository that other WHOIS libraries can easily fetch.
27
+
28
+ ## Upgrade
29
+
30
+ When upgrading, here's the most relevant changes to keep an eye on:
31
+
32
+ - If you are using the Whois parser, install and require the `whois-parser` gem. The parser will automatically download the appropriate `whois` dependency.
33
+
34
+ ```ruby
35
+ require 'whois-parser'
36
+ ```
37
+
38
+ If you only need the client and you don't care about the parser, simply continue to require the `whois` gem directly.
39
+
40
+ ```ruby
41
+ require 'whois'
42
+ ```
43
+
44
+ - `Whois::Server.definitions` no longer return the internal definitions. Definitions are no longer accessible directly, because their internal representation may change at any time. If you need to modify the definitions, use the public API.
45
+
46
+ ```ruby
47
+ Whois::Server.define(Whois::Server::TYPE_TLD, ...)
48
+ ```
49
+
50
+ You can still use `Whois::Server.definitions`, but it will return a copy of the internal definitions, and you have to specify which type of definitions you want to access.
51
+
52
+ ```ruby
53
+ Whois::Server.definitions(Whois::Server::TYPE_TLD)
54
+ ```
55
+
56
+ - **The parser methods are no longer accessible directly within the response object.**
57
+
58
+ This is probably one of the most important changes, and it is explained in details at [weppos/whois-parser#5](https://github.com/weppos/whois-parser/pull/5).
59
+
60
+ In Whois 3, you can invoke a property method on a record object and the record will automatically route the method call to the underlying parser. If the property is not supported or defined in any of the parsers, then the method will return nil.
61
+
62
+ However, this behavior is often the cause of confusion and misunderstandings, especially for partially implemented parsers. Without to mention that the code required for this feature to work added an extra layer of complexity to the `Whois::Record` implementation.
63
+
64
+ Starting from Whois 4, the `Whois::Record` doesn't expose any parsing methods anymore. If you want to parse a record, you have to istantiate a parser manually. Of course, you also need to use the `whois-parser` library instead of `whois`.
65
+
66
+ Whois 3:
67
+
68
+ ```ruby
69
+ require 'whois-parser'
70
+
71
+ record = Whois.whois("example.it")
72
+ record.expires_on
73
+ ```
74
+
75
+ Whois 4:
76
+
77
+ ```ruby
78
+ require 'whois-parser'
79
+
80
+ record = Whois.whois("example.it")
81
+ parser = Whois::Parser.new(record)
82
+ parser.expires_on
83
+ ```
84
+
85
+ You can still use the convenient helper `record.parser` to initialize a parser:
86
+
87
+ ```ruby
88
+ require 'whois-parser'
89
+
90
+ record = Whois.whois("example.it")
91
+ record.parser.expires_on
92
+ ```
93
+
94
+ Also note that any parser method, such as `parser.expires_on`, will raise an error if the property is not implemented, as opposite to silently returning `nil` as it was in Whois 3.
95
+
96
+ - **Parser extensions**
97
+
98
+ The Parser features available in Whois 3 has been packaged into several extensions. Some of them are loaded by default in Whois 4 when you require `whois-parser`, others not anymore. The reason is because although some of them may appear convenient (because it makes you write more code), it turned out that they made some assumptions that were often source of confusion.
99
+
100
+ Check the header of the [`whois/parser.rb`](https://github.com/weppos/whois-parser/blob/master/lib/whois/parser.rb) file to learn more about the purpose of each extension.
101
+
102
+ Requiring **all** the extensions will essentially force Whois 4 to work pretty much like Whois 3. This is not recommended, and you should not rely on those extensions to be there forever. Instead, you should write the code depending on what you actually need.
103
+
104
+ There is also an ENV variable you can set to rollback compatibility to Whois 3.
105
+
106
+ ```ruby
107
+ ENV["WHOISRB_4EXTENSIONS"] = 1
108
+ ```
109
+
110
+ Again, this flag exists only as temporary helper, and it should not become a permanent upgrade workaround.
111
+
112
+ - **SafeRecord**
113
+
114
+ In the previous point I mentioned that you should write the code you need to customize the `Whois::Record` and extract information with the `Whois::Parser`. However, I omitted an important additional recommendation: avoid monkey patching the Whois::Record object, and instead prefer composition via delegation.
115
+
116
+ The SafeRecord is an example of a wrapper around a Record object, that expose a Whois 3 alike interface, without injecting the parser methods directly into the `Whois::Record` itself.
117
+
118
+ The advantages are:
119
+
120
+ - the code is more maintainable, as it is not tighlty coupled to the Whois::Record
121
+ - you don't monkey patch `Whois::Record` in your code, which is an object you don't have control of because it is packaged in a third party library (and can change)
122
+ - the library can easily be tested separately
123
+
124
+ In these 10 years of writing Ruby code, I've noticed an increasing attitude to monkey patch Ruby classes you don't control, instead of writing your own code and delegate to them. It looks like in several cases Ruby programmers are afraid of writing Ruby code. This results in very fragile code, where methods can easily conflict each other (especially between dependencies).
125
+
126
+ The `Whois::SafeRecord` is an alternative example of how you can restore Whois 3 behavior by using a custom object.
127
+
128
+ ```ruby
129
+ require 'whois/parser'
130
+ require 'whois/safe_record'
131
+
132
+ record = Whois.whois('example.com')
133
+ record.disclaimer
134
+ # => Whois::AttributeNotSupported
135
+
136
+ safe_record = Whois::SafeRecord.new(record)
137
+ safe_record.disclaimer
138
+ # => nil
139
+ ```
140
+
141
+ This is preferred over requiring the `whois/parser_extensions` or enabling v3 compatibility mode.
142
+
143
+ Please note that the parser extension is provided as example. It may be removed from future versions therefore, once again, you should write the code you need to access the parsed data.
@@ -5,6 +5,20 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
5
5
 
6
6
  #### Release 4.0.0
7
7
 
8
+ The WHOIS parsers are no longer part of this repository, and they have been extracted into a separate repository at https://github.com/weppos/whois-parser.
9
+
10
+ The `whois` library is now simply a WHOIS client. If you want to use the parsing features, install the `whois-ruby` gem (that already defines `whois` as a dependency).
11
+
12
+ **final**
13
+
14
+ - SERVER: Added .LIPSY, .NEXT, .NEXTDIRECT, .OLAYAN, .WARMAN, .XN--MGBA8C0BBN0A, .TDK, .DTV, .LOCKER, .OLLO, .OTT, .CAM, .LEGO, .ORIENTEXPRESS, .FEDEX, .FARMERS, .TIAA, .BESTBUY, .LPL, .LPLFINANCIAL, .DHL, .GAMES, .HISAMITSU, .PIONEER, .ZAPPOS, .AUDIBLE, .CHINTAI, .DEAL, .EPOST, .FIRE, .IMDB, .KINDLE, .NOW, .PRIME, .SAVE, .SILK, .TDK, .AIRBUS, .ALSTOM, .DUNLOP, .DUPONT, .ERICSSON, .GOODYEAR, .KOSHER, .ABLE, .ANZ, .BLANCO, .ITV, .SHOPPING, .ART, .COOKINGCHANNEL, .FOODNETWORK, .FRONTDOOR, .HGTV, .NFL, .POLITIE, .TRAVELCHANNEL, .WOODSIDE, .MIT, .NIKE, .SES, .INTUIT, .MACYS, .MINT, .CBRE, .SHANGRILA, .XN--5SU34J936BGSG, .XN--90AE, .ZIPPO, .AMERICANFAMILY, .HONEYWELL, .COMCAST, .FUJITSU, .GODADDY, .MITSUBISHI, .XFINITY, .AFAMILYCOMPANY, .LILLY, .MCKINSEY, .ECO, .VANGUARD, .MONSTER, .DIY, .ASDA, .HBO, .UNO, .FIDO, .ROGERS, .DDS, .VOLVO, .LEFRAK, .GOODHANDS, .ALLSTATE, .OBSERVER, .BASKETBALL, .BBT, .BEAUTY, .FUJIXEROX, .HOMEGOODS, .HOMEGOODS, .HOMESENSE, .PFIZER, .STAPLES, .TJMAXX, .TJX, .TKMAXX, .VIVO, .WINNERS, .MARSHALLS, .LANCOME, .LUNDBECK, .NATIONWIDE, .ONYOURSIDE, .PANASONIC, .SMART, .DOCTOR, .DUCK, .IEEE, .OFF, .RAID, .RIGHTATHOME, .SCJOHNSON, .SWIFTCOVER, .AMFAM, .BOOKING, .CITADEL, .DUNS, .MSD, .CITI, .HYATT, .ATHLETA, .BANANAREPUBLIC, .CALVINKLEIN, .INTEL, .DISCOVER, .NBA, .OLDNAVY, .QVC, .GAP, .PRAMERICA, .LOFT, .TARGET, .PRU, .PRUDENTIAL, .BANAMEX, .ESURANCE, .CHRYSLER, .SRT, .UCONNECT, .JEEP, .ALFAROMEO, .MASERATI, .BLOCKBUSTER, .FERRARI, .LANCIA, .LATINO, .MOPAR, .SHOWTIME, .FIAT, .ABARTH, .CBS, .DODGE, .ABC, .GLADE, .VISA, .BOFA, .JUNIPER, .FIDELITY, AMERICANEXPRESS, AMEX, MCD, BASEBALL, MCDONALDS, PAY, HOT, SECURE, XN, WOW, OPEN, CAPITALONE, DISH, HUGHES, SLING, AIGO, HDFC, DVR, CASE, CASEIH, IVECO, NEWHOLLAND, XN, AUSPOST, GEORGE, NAB, SAMSCLUB, UBANK, WALMART, RADIO, AOL, .ABB, .SENER, .FERRERO, .gmoregistry, .PLAYSTATION, .CITIC, .DELTA, .IST, .ISTANBUL, .METLIFE, .NOWTV, .ORIGINS, .PCCW, .RICHARDLI, .PNC, .IKANO, .MUTUELLE, .LADBROKES, .TIAA, .UBS, .XN--11B4C3D, .XN--CZR694B, .XN--FZYS8D69UVGM
15
+
16
+ - SERVER: Updated .CASA, .MEET, .WORK, .SURF, .XN--54B7FTA0CC, .CO.ZA [thanks @ranaldobowker], .MOBI
17
+
18
+ - CHANGED: Definitions are now private and you cannot access/modify the internal representation directly. Instead, use the accessor methods.
19
+
20
+ - CHANGED: Definitions internal representation changed to be indexed. This change drastically improved the lookup performances for domains, as well fixing the bug GH-536 where the order of the definitions were relevant.
21
+
8
22
  **beta-2**
9
23
 
10
24
  - SERVER: Added .ALLY, .AWS, .ANQUAN, .JCP, .NISSAY, .SHOUJI, .SINA, .XIHUAN, .YUN, .HTC, .PROGRESSIVE, .MLS, .BABY, JNJ, .FTR, .XN--4TZM5G, .EXTRASPACE, .BAREFOOT, .GALLO, .SHAW, .STREAM, .TALK, .XN--FCT429K, .XN--FCT429K, .YOU, .KPMG, .MUTUAL, .ABBVIE, .ABUDHABI, .NORTHWESTERNMUTUAL, .VIG, .WEIBO, .XN--9KRT00A, .XN--MGBCA7DZDO, .AGAKHAN, .AKDN, .IMAMAT, .ISMAILI, .SBI, .STATEBANK, .OLAYANGROUP, .FLIR, HKT, .GUARDIAN, .XN--W4RS40L, .TEVA, .FINANCIAL, .UPS, .MLB, .REALESTATE, .SHOP, .AETNA, .BLOG, .DOT, .MATTEL, .NETFLIX
@@ -30,7 +44,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
30
44
 
31
45
  - SERVER: Sync Centralnic definitions. Added .COM.SE, .HU.COM, .HU.NET, .UY.COM, .ZA.BZ, .AFRICA.COM, .IN.NET
32
46
 
33
- - CHANGED: Updated whois.tld.ee to the new response format (GH-489, GH-490). [Thanks @tanelj]
47
+ - CHANGED: Updated whois.tld.ee to the new response format (GH-489, GH-490). [thanks @tanelj]
34
48
 
35
49
 
36
50
  #### Release 3.6.4
@@ -39,21 +53,21 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
39
53
 
40
54
  - SERVER: Deleted .TP, .AN
41
55
 
42
- - NEW: Added whois.nic.tech parser (GH-443). [Thanks @mattbrictson]
56
+ - NEW: Added whois.nic.tech parser (GH-443). [thanks @mattbrictson]
43
57
 
44
- - NEW: Added whois.35.com parser (GH-391). [Thanks @alpo]
58
+ - NEW: Added whois.35.com parser (GH-391). [thanks @alpo]
45
59
 
46
- - NEW: Added whois.nic.space parser (GH-463, GH-374). [Thanks @linrock]
60
+ - NEW: Added whois.nic.space parser (GH-463, GH-374). [thanks @linrock]
47
61
 
48
- - NEW: Added whois.nic.xyz parser (GH-373, GH-460). [Thanks @mpchadwick]
62
+ - NEW: Added whois.nic.xyz parser (GH-373, GH-460). [thanks @mpchadwick]
49
63
 
50
- - FIXED: Removed option to /usr/bin/env as not supported on all platforms (GH-453). [Thanks @martin-schmidt]
64
+ - FIXED: Removed option to /usr/bin/env as not supported on all platforms (GH-453). [thanks @martin-schmidt]
51
65
 
52
- - CHANGED: Updated whois.wildwestdomains.com to the new response format (GH-392, GH-462). [Thanks @linrock]
66
+ - CHANGED: Updated whois.wildwestdomains.com to the new response format (GH-392, GH-462). [thanks @linrock]
53
67
 
54
68
  - CHANGED: Updated whois.afilias.info to the new response format (GH-481).
55
69
 
56
- - CHANGED: whois.aero now recognizes reserved domains (GH-464, GH-418). [Thanks @linrock]
70
+ - CHANGED: whois.aero now recognizes reserved domains (GH-464, GH-418). [thanks @linrock]
57
71
 
58
72
 
59
73
  #### Release 3.6.3
@@ -69,22 +83,22 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
69
83
 
70
84
  - SERVER: Updated .LOVE
71
85
 
72
- - NEW: Added capetown-whois.registry.net.za, durban-whois.registry.net.za, joburg-whois.registry.net.za, org-whois.registry.net.za parsers (GH-405). [Thanks @sheldonh]
86
+ - NEW: Added capetown-whois.registry.net.za, durban-whois.registry.net.za, joburg-whois.registry.net.za, org-whois.registry.net.za parsers (GH-405). [thanks @sheldonh]
73
87
 
74
- - CHANGED: Updated whois.cnnic.cn to the new response format (GH-432). [Thanks @ledowong]
88
+ - CHANGED: Updated whois.cnnic.cn to the new response format (GH-432). [thanks @ledowong]
75
89
 
76
- - CHANGED: Added expires_on at "co.jp" domain (GH-437). [Thanks @kubihie]
90
+ - CHANGED: Added expires_on at "co.jp" domain (GH-437). [thanks @kubihie]
77
91
 
78
92
 
79
93
  #### Release 3.6.1
80
94
 
81
- - SERVER: Added .co.com (GH-428) [Thanks @turigabor], .STATOIL, .CROWN, .ACCOUNTANT, .DATE, .DOHA, .DOWNLOAD, .FAITH, .LOAN, .MOVIE, .MTN, .PANERAI, .REVIEW, .TICKETS, .WIN, .ACCENTURE, .NEC, .PHILIPS, .XN--FJQ720A, .COUPONS, .ICBC, .SOCCER, .FYI, .JLL, .MBA, .THD, .BBVA, .SANDVIK, .SANDVIKCOROMANT, .WALTER, .AIRTEL, .BARCELONA, .BCN, .GAME, .JPRS, .LIVE, .STUDIO, .BING, .HOTMAIL, .JLC, .MICROSOFT, .WINDOWS, .PLAY, .AEG, .DRIVE, .GENTING, .CBA, .COMMBANK, .NETBANK, .RICOH, .STARHUB, .VISTA, .VISTAPRINT, .OFFICE, .SCOR, .SKYPE, .LAW, .BNL, .BRADESCO, .HOTELES, .OMEGA, .SWATCH, .TELEFONICA, .LANCASTER, .NOKIA, .ICE, .ITAU, .LEXUS, .MAN, .BET, .SANOFI, .SRL, .TATAMOTORS, .IPIRANGA, .LEXUS, .PET, .TOYOTA, .LIXIL, .BOOTS, .CHANEL, .VIN, .WINE, .XPERIA, .GIVING, .FAMILY, .SEEK
95
+ - SERVER: Added .co.com (GH-428) [thanks @turigabor], .STATOIL, .CROWN, .ACCOUNTANT, .DATE, .DOHA, .DOWNLOAD, .FAITH, .LOAN, .MOVIE, .MTN, .PANERAI, .REVIEW, .TICKETS, .WIN, .ACCENTURE, .NEC, .PHILIPS, .XN--FJQ720A, .COUPONS, .ICBC, .SOCCER, .FYI, .JLL, .MBA, .THD, .BBVA, .SANDVIK, .SANDVIKCOROMANT, .WALTER, .AIRTEL, .BARCELONA, .BCN, .GAME, .JPRS, .LIVE, .STUDIO, .BING, .HOTMAIL, .JLC, .MICROSOFT, .WINDOWS, .PLAY, .AEG, .DRIVE, .GENTING, .CBA, .COMMBANK, .NETBANK, .RICOH, .STARHUB, .VISTA, .VISTAPRINT, .OFFICE, .SCOR, .SKYPE, .LAW, .BNL, .BRADESCO, .HOTELES, .OMEGA, .SWATCH, .TELEFONICA, .LANCASTER, .NOKIA, .ICE, .ITAU, .LEXUS, .MAN, .BET, .SANOFI, .SRL, .TATAMOTORS, .IPIRANGA, .LEXUS, .PET, .TOYOTA, .LIXIL, .BOOTS, .CHANEL, .VIN, .WINE, .XPERIA, .GIVING, .FAMILY, .SEEK
82
96
 
83
97
  - SERVER: Updated .CR, .VG, .BUZZ, .TECH, .GDN
84
98
 
85
- - NEW: Added whois.safenames.net (GH-385) parser. [Thanks @robholland]
99
+ - NEW: Added whois.safenames.net (GH-385) parser. [thanks @robholland]
86
100
 
87
- - CHANGED: Updated whois.nic.as to the new response format (GH-334). [Thanks @case]
101
+ - CHANGED: Updated whois.nic.as to the new response format (GH-334). [thanks @case]
88
102
 
89
103
 
90
104
  #### Release 3.6.0
@@ -108,7 +122,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
108
122
 
109
123
  - SERVER: Updated .SI, .WHOSWHO, .QUEBEC, .GLOBAL, .REIT, .BM (GH-397 @ydnar)
110
124
 
111
- - FIXED: whois.schlund.info crashes with empty update date (GH-398). [Thanks @alexaitken]
125
+ - FIXED: whois.schlund.info crashes with empty update date (GH-398). [thanks @alexaitken]
112
126
 
113
127
 
114
128
  #### Release 3.5.8
@@ -117,11 +131,11 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
117
131
 
118
132
  - SERVER: Updated .TC
119
133
 
120
- - NEW: whois.registry.om now recognizes reserved domains (GH-332). [Thanks @case]
134
+ - NEW: whois.registry.om now recognizes reserved domains (GH-332). [thanks @case]
121
135
 
122
136
  - FIXED: Fixed invalid JSON definition file (GH-349).
123
137
 
124
- - FIXED: Fixed the ARIN referral regex to correctly consider ports optional (GH-350). [Thanks @jrideout]
138
+ - FIXED: Fixed the ARIN referral regex to correctly consider ports optional (GH-350). [thanks @jrideout]
125
139
 
126
140
 
127
141
  #### Release 3.5.7
@@ -137,24 +151,24 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
137
151
 
138
152
  - CHANGED: Updated whois.nic.cx to the new response format.
139
153
 
140
- - FIXED: ruby-whois --version crashes (GH-356). [Thanks @micat]
154
+ - FIXED: ruby-whois --version crashes (GH-356). [thanks @micat]
141
155
 
142
- - FIXED: whois.register.com parser crashes when the update date is empty (GH-353). [Thanks @alexaitken]
156
+ - FIXED: whois.register.com parser crashes when the update date is empty (GH-353). [thanks @alexaitken]
143
157
 
144
158
 
145
159
  #### Release 3.5.5
146
160
 
147
- - NEW: Added registrar and contact support for whois.dns.lu (GH-329). [Thanks @huyphan]
161
+ - NEW: Added registrar and contact support for whois.dns.lu (GH-329). [thanks @huyphan]
148
162
 
149
163
  - CHANGED: Updated whois.iis.se and whois.iis.nu to the new response format (GH-328).
150
164
 
151
- - FIXED: whois.fi parser crashes when the domain is reserved (GH-339). [Thanks @case]
165
+ - FIXED: whois.fi parser crashes when the domain is reserved (GH-339). [thanks @case]
152
166
 
153
- - FIXED: whois.whois.nic.asia parser crashes when the status is reserved (GH-340). [Thanks @case]
167
+ - FIXED: whois.whois.nic.asia parser crashes when the status is reserved (GH-340). [thanks @case]
154
168
 
155
- - FIXED: whois.netcom.cm parser crashes when the status is suspended (GH-333). [Thanks @case]
169
+ - FIXED: whois.netcom.cm parser crashes when the status is suspended (GH-333). [thanks @case]
156
170
 
157
- - FIXED: whois.nic.gd parser crashes when the domain is reserved (GH-335). [Thanks @case]
171
+ - FIXED: whois.nic.gd parser crashes when the domain is reserved (GH-335). [thanks @case]
158
172
 
159
173
 
160
174
  #### Release 3.5.4
@@ -163,7 +177,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
163
177
 
164
178
  - SERVER: Updated .CEO, .CLUB, .VG
165
179
 
166
- - FIXED: whois.enom.com and whois.yoursrs.com parsers crash when trying to access an empty update date (GH-327). [Thanks @alexaitken]
180
+ - FIXED: whois.enom.com and whois.yoursrs.com parsers crash when trying to access an empty update date (GH-327). [thanks @alexaitken]
167
181
 
168
182
  - NEW: whois.markmonitor.com parser now recognizes throttled responses.
169
183
 
@@ -173,9 +187,9 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
173
187
 
174
188
  - CHANGED: Updated whois.arnesi.si to the new response format.
175
189
 
176
- - CHANGED: Updated whois.dreamhost.com to the new response format (GH-326). [Thanks @shingonoide]
190
+ - CHANGED: Updated whois.dreamhost.com to the new response format (GH-326). [thanks @shingonoide]
177
191
 
178
- - CHANGED: whois.cctld.uz now supports updated_on (GH-315). [Thanks @huyphan]
192
+ - CHANGED: whois.cctld.uz now supports updated_on (GH-315). [thanks @huyphan]
179
193
 
180
194
 
181
195
  #### Release 3.5.3
@@ -190,9 +204,9 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
190
204
 
191
205
  #### Release 3.5.1
192
206
 
193
- - NEW: Added whois.corporatedomains.com parser (GH-311). [Thanks @huyphan]
207
+ - NEW: Added whois.corporatedomains.com parser (GH-311). [thanks @huyphan]
194
208
 
195
- - CHANGED: Added ActiveSupport as dependency (GH-317) [Thanks @byroot].
209
+ - CHANGED: Added ActiveSupport as dependency (GH-317) [thanks @byroot].
196
210
 
197
211
  - FIXED: NameError: wrong constant name when querying IPs (GH-310).
198
212
 
@@ -205,7 +219,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
205
219
 
206
220
  #### Release 3.5.0
207
221
 
208
- - SERVER: Updated list of latest ASN allocations of 16-bit & 32-bit ASN's from IANA (GH-293). [Thanks @itsbalamurali]
222
+ - SERVER: Updated list of latest ASN allocations of 16-bit & 32-bit ASN's from IANA (GH-293). [thanks @itsbalamurali]
209
223
 
210
224
  - SERVER: Added new gTLDs (GH-305)
211
225
 
@@ -251,7 +265,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
251
265
 
252
266
  - CHANGED: Backported several fixture updates.
253
267
 
254
- - CHANGED: Updated whois.pir.org parser to the new response format (GH-300). [Thanks @muffinista]
268
+ - CHANGED: Updated whois.pir.org parser to the new response format (GH-300). [thanks @muffinista]
255
269
 
256
270
 
257
271
  #### Release 3.4.3
@@ -281,7 +295,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
281
295
 
282
296
  - CHANGED: Updated whois.registry.net.za parser to the new response format.
283
297
 
284
- - CHANGED: Updated whois.ascio.com parser to the new response format (GH-285). [Thanks @takama]
298
+ - CHANGED: Updated whois.ascio.com parser to the new response format (GH-285). [thanks @takama]
285
299
 
286
300
 
287
301
  #### Release 3.4.1
@@ -290,19 +304,19 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
290
304
 
291
305
  - NEW: whois.whois.kenic.or.ke parser now recognizes invalid status.
292
306
 
293
- - NEW: Added whois.tucows.com parser (GH-260). [Thanks @takama]
307
+ - NEW: Added whois.tucows.com parser (GH-260). [thanks @takama]
294
308
 
295
- - NEW: Added whois.wildwestdomains.com parser (GH-271). [Thanks @gromnsk]
309
+ - NEW: Added whois.wildwestdomains.com parser (GH-271). [thanks @gromnsk]
296
310
 
297
- - NEW: Added whois.pairnic.com parser (GH-275). [Thanks @gromnsk]
311
+ - NEW: Added whois.pairnic.com parser (GH-275). [thanks @gromnsk]
298
312
 
299
- - NEW: Added whois.1und1.info parser (GH-278). [Thanks @gromnsk]
313
+ - NEW: Added whois.1und1.info parser (GH-278). [thanks @gromnsk]
300
314
 
301
- - FIXED: whois.dk-hostmaster.dk crashes when the status is `reserved` (GH-281). [Thanks @Pietr]
315
+ - FIXED: whois.dk-hostmaster.dk crashes when the status is `reserved` (GH-281). [thanks @Pietr]
302
316
 
303
317
  - CHANGED: Updated whois.nic.hu parser to the new response format.
304
318
 
305
- - CHANGED: Updated whois.networksolutions.com parser to the new response format (GH-280). [Thanks @takama]
319
+ - CHANGED: Updated whois.networksolutions.com parser to the new response format (GH-280). [thanks @takama]
306
320
 
307
321
  - CHANGED: Updated whois.gandi.net parser to the new response format.
308
322
 
@@ -319,15 +333,15 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
319
333
 
320
334
  - NEW: Scanners now accepts customizable settings.
321
335
 
322
- - NEW: Added whois.yoursrs.com parser (GH-266). [Thanks @takama]
336
+ - NEW: Added whois.yoursrs.com parser (GH-266). [thanks @takama]
323
337
 
324
- - NEW: Added whois.ascio.com parser (GH-262). [Thanks @takama]
338
+ - NEW: Added whois.ascio.com parser (GH-262). [thanks @takama]
325
339
 
326
- - NEW: Added whois.rrpproxy.net parser (GH-259). [Thanks @takama]
340
+ - NEW: Added whois.rrpproxy.net parser (GH-259). [thanks @takama]
327
341
 
328
- - NEW: Added whois.schlund.info parser (GH-270). [Thanks @takama]
342
+ - NEW: Added whois.schlund.info parser (GH-270). [thanks @takama]
329
343
 
330
- - NEW: Added whois.udag.net parser (GH-272). [Thanks @gromnsk]
344
+ - NEW: Added whois.udag.net parser (GH-272). [thanks @gromnsk]
331
345
 
332
346
  - NEW: Added whois.nic.bj parser (GH-6).
333
347
 
@@ -341,18 +355,18 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
341
355
 
342
356
  - CHANGED: Changed .SE TLD to the new response format and parser.
343
357
 
344
- - CHANGED: Updated whois.register.com parser to the new response format (GH-273). [Thanks @gromnsk]
358
+ - CHANGED: Updated whois.register.com parser to the new response format (GH-273). [thanks @gromnsk]
345
359
 
346
360
 
347
361
  #### Release 3.3.1
348
362
 
349
363
  - SERVER: Updated .KR, .ES (GH-267) TLD definitions.
350
364
 
351
- - NEW: Added whois.nic.es parser (GH-267). [Thanks @takama]
365
+ - NEW: Added whois.nic.es parser (GH-267). [thanks @takama]
352
366
 
353
- - NEW: Added whois.gandi.net parser (GH-261). [Thanks @takama]
367
+ - NEW: Added whois.gandi.net parser (GH-261). [thanks @takama]
354
368
 
355
- - CHANGED: Updated whois.enom.com parser to the new response format (GH-269). [Thanks @takama]
369
+ - CHANGED: Updated whois.enom.com parser to the new response format (GH-269). [thanks @takama]
356
370
 
357
371
 
358
372
  #### Release 3.3.0
@@ -361,9 +375,9 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
361
375
 
362
376
  - NEW: Added whois.dot.cf parser.
363
377
 
364
- - NEW: Added support for ASN queries (GH-243). [Thanks @linrock]
378
+ - NEW: Added support for ASN queries (GH-243). [thanks @linrock]
365
379
 
366
- - FIXED: Added contact support for whois.nic.ch (GH-246). [Thanks @Pietr]
380
+ - FIXED: Added contact support for whois.nic.ch (GH-246). [thanks @Pietr]
367
381
 
368
382
  - CHANGED: Deprecated Whois.query. Replaced with Whois.lookup to match client. Fixed README to use Whois.whois instead of Whois.lookup
369
383
 
@@ -371,11 +385,11 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
371
385
 
372
386
  - FIXED: whois.cira.ca should support `pending delete` status.
373
387
 
374
- - FIXED: whois.fi should support `Grace Period` status (GH-252). [Thanks @Pietr]
388
+ - FIXED: whois.fi should support `Grace Period` status (GH-252). [thanks @Pietr]
375
389
 
376
- - FIXED: additional status for whois.ua (GH-244). [Thanks @Pietr]
390
+ - FIXED: additional status for whois.ua (GH-244). [thanks @Pietr]
377
391
 
378
- - FIXED: whois.jprs.jp should support `Registered` status (GH-253). [Thanks @Pietr]
392
+ - FIXED: whois.jprs.jp should support `Registered` status (GH-253). [thanks @Pietr]
379
393
 
380
394
 
381
395
  #### Release 3.2.1
@@ -441,13 +455,13 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
441
455
 
442
456
  #### Release 3.1.2
443
457
 
444
- - NEW: Added full whois.comlaude.com parser (GH-222). [Thanks @delwyn]
458
+ - NEW: Added full whois.comlaude.com parser (GH-222). [thanks @delwyn]
445
459
 
446
460
  - NEW: Added #domain, #domain_id to whois.tcinet.ru.
447
461
 
448
- - NEW: Added full whois.eu parser (GH-223). [Thanks @delwyn]
462
+ - NEW: Added full whois.eu parser (GH-223). [thanks @delwyn]
449
463
 
450
- - FIXED: ARIN queries required additional params (GH-220, GH-10). [Thanks @linrock]
464
+ - FIXED: ARIN queries required additional params (GH-220, GH-10). [thanks @linrock]
451
465
 
452
466
  - FIXED: Fixed ARPA Reverse DNS lookup.
453
467
 
@@ -460,7 +474,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
460
474
 
461
475
  #### Release 3.1.1
462
476
 
463
- - FIXED: Fixed CLI crash (GH-219). [Thanks @linrock]
477
+ - FIXED: Fixed CLI crash (GH-219). [thanks @linrock]
464
478
 
465
479
 
466
480
  #### Release 3.1.0
@@ -469,7 +483,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
469
483
 
470
484
  - SERVER: Updated .BN (GH-214), .SY (GH-196) TLD definitions.
471
485
 
472
- - NEW: Added #domain and #registrar to whois.dns.be parser (GH-216). [Thanks @chuckadams]
486
+ - NEW: Added #domain and #registrar to whois.dns.be parser (GH-216). [thanks @chuckadams]
473
487
 
474
488
  - NEW: Added full whois.dotpostregistry.net parser (GH-192).
475
489
 
@@ -477,7 +491,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
477
491
 
478
492
  - NEW: Added whois.bn parser (GH-214).
479
493
 
480
- - CHANGED: Rescue all SystemCallError instead of a few Errno errors (GH-212). [Thanks @mat813]
494
+ - CHANGED: Rescue all SystemCallError instead of a few Errno errors (GH-212). [thanks @mat813]
481
495
 
482
496
  - CHANGED: Removed deprecated method Whois::Client#query.
483
497
 
@@ -489,9 +503,9 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
489
503
 
490
504
  - FIXED: whois.dns.pl crashes when expiration date is not defined.
491
505
 
492
- - FIXED: Handle ReferralServer directive in ARIN whois queries (GH-204, GH-37). [Thanks @linrock]
506
+ - FIXED: Handle ReferralServer directive in ARIN whois queries (GH-204, GH-37). [thanks @linrock]
493
507
 
494
- - FIXED: Record#technical_contact raised a NoMethodError (GH-217). [Thanks @yspro]
508
+ - FIXED: Record#technical_contact raised a NoMethodError (GH-217). [thanks @yspro]
495
509
 
496
510
 
497
511
  #### Release 3.0.0
@@ -572,11 +586,11 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
572
586
 
573
587
  - CHANGED: Updated whois.cnnic.cn parser to the new response format.
574
588
 
575
- - CHANGED: Updated whois.thnic.co.th parser to the new response format (GH-194). [Thanks @ATimofeev]
589
+ - CHANGED: Updated whois.thnic.co.th parser to the new response format (GH-194). [thanks @ATimofeev]
576
590
 
577
591
  - CHANGED: Updated whois.nic.ms parser to the new response format.
578
592
 
579
- - CHANGED: whois.coza.net.za became whois.registry.net.za (GH-191). [Thanks @rorymckinley]
593
+ - CHANGED: whois.coza.net.za became whois.registry.net.za (GH-191). [thanks @rorymckinley]
580
594
 
581
595
  - CHANGED: Definitions are now stored as JSON.
582
596
 
@@ -608,7 +622,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
608
622
 
609
623
  - FIXED: whois.nic.cz crashes when nsset node has the same ID of a contact.
610
624
 
611
- - FIXED: whois.register.com fails to parse name servers in some cases (GH-207). [Thanks @stormsilver]
625
+ - FIXED: whois.register.com fails to parse name servers in some cases (GH-207). [thanks @stormsilver]
612
626
 
613
627
  - FIXED: whois.nc crashes when the address is missing the state.
614
628
 
@@ -650,7 +664,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
650
664
 
651
665
  - NEW: Added full whois.register.com parser.
652
666
 
653
- - NEW: whois.networksolutions.com parser now recognizes throttled responses (GH-182). [Thanks @JustinCampbell]
667
+ - NEW: whois.networksolutions.com parser now recognizes throttled responses (GH-182). [thanks @JustinCampbell]
654
668
 
655
669
  - NEW: Added full whois.cmc.iq parser (GH-171).
656
670
 
@@ -662,7 +676,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
662
676
 
663
677
  - NEW: Added full whois.monic.mo parser.
664
678
 
665
- - FIXED: Fixed whois.register.com parser for enom formats (GH-181). [Thanks @JustinCampbell]
679
+ - FIXED: Fixed whois.register.com parser for enom formats (GH-181). [thanks @JustinCampbell]
666
680
 
667
681
  - FIXED: whois.jprs.js parser should support status `Suspended`.
668
682
 
@@ -672,7 +686,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
672
686
 
673
687
  - CHANGED: Changed .NAME to a formatted adapter to fetch additional properties.
674
688
 
675
- - CHANGED: whois.dns.pl now supports expires_on (GH-185). [Thanks @y3ti]
689
+ - CHANGED: whois.dns.pl now supports expires_on (GH-185). [thanks @y3ti]
676
690
 
677
691
 
678
692
  #### Release 2.6.4
@@ -697,7 +711,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
697
711
 
698
712
  - FIXED: whois.rnids.rs parser should support statuses Locked, Expired, and In Transfer.
699
713
 
700
- - FIXED: whois.nic.gs parser should support status `Excluded - Pending Delete - Restorable` (GH-180). [Thanks @smith]
714
+ - FIXED: whois.nic.gs parser should support status `Excluded - Pending Delete - Restorable` (GH-180). [thanks @smith]
701
715
 
702
716
  - CHANGED: Deprecated options[:web] for :web adapter in favor of options[:url].
703
717
 
@@ -714,11 +728,11 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
714
728
 
715
729
  - NEW: whois.registrypro.pro is now a full parser.
716
730
 
717
- - FIXED: In some cases the parser class is not correctly detected from hostname (GH-173). [Thanks @JustinCampbell]
731
+ - FIXED: In some cases the parser class is not correctly detected from hostname (GH-173). [thanks @JustinCampbell]
718
732
 
719
733
  - FIXED: whois.ua parser raises ArgumcentError when the created_on object invalid data.
720
734
 
721
- - FIXED: Whois::Server may occasionally raise an error trying to resolve an IPv6 matching query object (GH-174). [Thanks @aeden].
735
+ - FIXED: Whois::Server may occasionally raise an error trying to resolve an IPv6 matching query object (GH-174). [thanks @aeden].
722
736
 
723
737
  - CHANGED: Updated whois.registrypro.pro parser to the new response format.
724
738
 
@@ -727,11 +741,11 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
727
741
 
728
742
  - SERVER: Added .SX TLD server (GH-170).
729
743
 
730
- - NEW: Added full whois.networksolutions.com parser (GH-168). [Thanks @bramp]
744
+ - NEW: Added full whois.networksolutions.com parser (GH-168). [thanks @bramp]
731
745
 
732
746
  - NEW: Added full whois.sx parser (GH-170).
733
747
 
734
- - NEW: whois.ua parser is now a full parser (GH-169). [Thanks @Uko]
748
+ - NEW: whois.ua parser is now a full parser (GH-169). [thanks @Uko]
735
749
 
736
750
 
737
751
  #### Release 2.6.1
@@ -753,29 +767,29 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
753
767
 
754
768
  - NEW: Added full whois.educause.edu parser.
755
769
 
756
- - NEW: Implement registrar property for CoCCA (GH-165). [Thanks @sherwind]
770
+ - NEW: Implement registrar property for CoCCA (GH-165). [thanks @sherwind]
757
771
 
758
772
  - CHANGED: whois.nic.uk changed response format.
759
773
 
760
- - CHANGED: whois.nic.gl now inherits from CoCCA and learns new properties (GH-166). [Thanks @sherwind]
774
+ - CHANGED: whois.nic.gl now inherits from CoCCA and learns new properties (GH-166). [thanks @sherwind]
761
775
 
762
776
  - CHANGED: Deprecate SuperStruct initialization with list of params.
763
777
 
764
778
  - FIXED: whois.hkirc.hk parser crashes when expiration date is "null".
765
779
 
766
- - FIXED: whois.na-nic.com.na parser fails to support 'Delegate' status (GH-159). [Thanks @sherwind]
780
+ - FIXED: whois.na-nic.com.na parser fails to support 'Delegate' status (GH-159). [thanks @sherwind]
767
781
 
768
- - FIXED: whois.rnids.rs parser crashes when domain is private (GH-163). [Thanks @sherwind]
782
+ - FIXED: whois.rnids.rs parser crashes when domain is private (GH-163). [thanks @sherwind]
769
783
 
770
- - FIXED: whois.rnids.rs parser not to split nameserver name at the hypen (GH-164). [Thanks @sherwind]
784
+ - FIXED: whois.rnids.rs parser not to split nameserver name at the hypen (GH-164). [thanks @sherwind]
771
785
 
772
786
  - FIXED: whois.co.ug parser fails to support 'Unconfirmed' status.
773
787
 
774
- - FIXED: whois.cctld.uz parser crashes when expiration date is dash (GH-161). [Thanks @sherwind]
788
+ - FIXED: whois.cctld.uz parser crashes when expiration date is dash (GH-161). [thanks @sherwind]
775
789
 
776
- - FIXED: whois.cctld.uz parser fails to support 'RESERVED' status (GH-162). [Thanks @sherwind]
790
+ - FIXED: whois.cctld.uz parser fails to support 'RESERVED' status (GH-162). [thanks @sherwind]
777
791
 
778
- - FIXED: whois.tznic.or.tz parser fails to support 'Expired' status (GH-160). [Thanks @sherwind]
792
+ - FIXED: whois.tznic.or.tz parser fails to support 'Expired' status (GH-160). [thanks @sherwind]
779
793
 
780
794
 
781
795
  ## Release 2.5.1
@@ -799,7 +813,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
799
813
 
800
814
  - NEW: Added full whois.audns.net.au parser.
801
815
 
802
- - NEW: Added full whois.cctld.by parser (GH-154). [Thanks @kliuchnikau]
816
+ - NEW: Added full whois.cctld.by parser (GH-154). [thanks @kliuchnikau]
803
817
 
804
818
  - NEW: Added full whois.domainregistry.ie parser.
805
819
 
@@ -952,9 +966,9 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
952
966
 
953
967
  - NEW: whois.nic.xxs parser now recognizes reserved domains.
954
968
 
955
- - NEW: whois.nic.uk parser now recognizes throttled responses (GH-118). [Thanks @semaperepelitsa]
969
+ - NEW: whois.nic.uk parser now recognizes throttled responses (GH-118). [thanks @semaperepelitsa]
956
970
 
957
- - NEW: whois.nic.uk parser now extracts registrant_contacts (GH-118). [Thanks @semaperepelitsa]
971
+ - NEW: whois.nic.uk parser now extracts registrant_contacts (GH-118). [thanks @semaperepelitsa]
958
972
 
959
973
  - FIXED: whois.nic.it parser doesn't correctly understand reserved domains.
960
974
 
@@ -999,7 +1013,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
999
1013
  - whois.nic.xx
1000
1014
  - whois.afilias.info
1001
1015
  - whois.registry.qa (GH-114)
1002
- - whois.godaddy.com (GH-105) [Thanks @pmyteh]
1016
+ - whois.godaddy.com (GH-105) [thanks @pmyteh]
1003
1017
 
1004
1018
  - CHANGED: use the first public .XXX domain to test the whois.nic.xx response format.
1005
1019
 
@@ -1076,7 +1090,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
1076
1090
  when the response from the Verisign database doesn't contain a
1077
1091
  referral (GH-103)
1078
1092
 
1079
- - FIXED: whois.eu parser changed the format of the nameserver property (GH-99). [Thanks @armins]
1093
+ - FIXED: whois.eu parser changed the format of the nameserver property (GH-99). [thanks @armins]
1080
1094
 
1081
1095
  - FIXED: whois.nic.uk parser should return `:invalid' status when the domain is invalid.
1082
1096
 
@@ -1112,7 +1126,7 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
1112
1126
 
1113
1127
  ## Release 2.0.2
1114
1128
 
1115
- - CHANGED: whois.ripn.net now returns an array of contacts, one for each email (GH-89). [Thanks @semaperepelitsa]
1129
+ - CHANGED: whois.ripn.net now returns an array of contacts, one for each email (GH-89). [thanks @semaperepelitsa]
1116
1130
 
1117
1131
  - FIXED: whois.nic.it parser must support UNASSIGNABLE status.
1118
1132
 
@@ -1179,9 +1193,9 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
1179
1193
 
1180
1194
  - NEW: Extracted Whois::Answer::Parser::Features and Extracted Whois::Answer::Parser::Scanners::Base.
1181
1195
 
1182
- - NEW: whois.nic.uk now supports #registrar (GH-81, GH-82). [Thanks @geoffgarside]
1196
+ - NEW: whois.nic.uk now supports #registrar (GH-81, GH-82). [thanks @geoffgarside]
1183
1197
 
1184
- - NEW: Added simple whois.markmonitor.net parser (GH-83). [Thanks @semaperepelitsa]
1198
+ - NEW: Added simple whois.markmonitor.net parser (GH-83). [thanks @semaperepelitsa]
1185
1199
 
1186
1200
  - CHANGED: Renamed whois.centralnic.net to whois.centralnic.com (GH-28).
1187
1201
 
@@ -2005,7 +2019,7 @@ WARNING: Whois >= 1.5.0 requires Ruby 1.8.7 or newer.
2005
2019
 
2006
2020
  - NEW: Simple .wf, .yt TLD parser (whois.nic.fr).
2007
2021
 
2008
- - NEW: Simple .dk TLD parser [Thanks Mikkel Kristensen]
2022
+ - NEW: Simple .dk TLD parser [thanks Mikkel Kristensen]
2009
2023
 
2010
2024
  - NEW: Simple .uk TLD parser (whois.nic.uk).
2011
2025
 
@@ -2139,7 +2153,7 @@ WARNING: Whois >= 1.5.0 requires Ruby 1.8.7 or newer.
2139
2153
 
2140
2154
  ## Release 0.8.1
2141
2155
 
2142
- - FIXED: Updated the whois.denic.de parser to the new format (REDMINE-314). [Thanks David Krentzlin]
2156
+ - FIXED: Updated the whois.denic.de parser to the new format (REDMINE-314). [thanks David Krentzlin]
2143
2157
 
2144
2158
  - FIXED: In case of thin server the client should select the closest whois server match (closes REDMINE-264)
2145
2159