dnsimple 11.1.0 → 12.0.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.
Files changed (269) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +10 -5
  3. data/.github/workflows/release.yml +44 -13
  4. data/.github/workflows/sync-test-fixtures.yml +1 -1
  5. data/.rubocop.yml +4 -1
  6. data/.rubocop_dnsimple.yml +13 -41
  7. data/.rubocop_todo.yml +4 -9
  8. data/CHANGELOG.md +285 -183
  9. data/CONTRIBUTING.md +6 -40
  10. data/Gemfile +1 -1
  11. data/LICENSE.txt +1 -1
  12. data/README.md +49 -40
  13. data/RELEASING.md +67 -0
  14. data/dnsimple.gemspec +1 -1
  15. data/lib/dnsimple/client/accounts.rb +1 -3
  16. data/lib/dnsimple/client/billing.rb +2 -4
  17. data/lib/dnsimple/client/certificates.rb +0 -2
  18. data/lib/dnsimple/client/clients.rb +2 -40
  19. data/lib/dnsimple/client/contacts.rb +17 -19
  20. data/lib/dnsimple/client/dns_analytics.rb +2 -4
  21. data/lib/dnsimple/client/domains.rb +13 -15
  22. data/lib/dnsimple/client/domains_delegation_signer_records.rb +18 -20
  23. data/lib/dnsimple/client/domains_dnssec.rb +9 -11
  24. data/lib/dnsimple/client/domains_email_forwards.rb +18 -20
  25. data/lib/dnsimple/client/domains_pushes.rb +13 -15
  26. data/lib/dnsimple/client/identity.rb +4 -9
  27. data/lib/dnsimple/client/oauth.rb +1 -3
  28. data/lib/dnsimple/client/registrar.rb +45 -47
  29. data/lib/dnsimple/client/registrar_auto_renewal.rb +6 -8
  30. data/lib/dnsimple/client/registrar_delegation.rb +14 -16
  31. data/lib/dnsimple/client/registrar_registrant_changes.rb +14 -16
  32. data/lib/dnsimple/client/registrar_transfer_lock.rb +9 -11
  33. data/lib/dnsimple/client/registrar_whois_privacy.rb +6 -48
  34. data/lib/dnsimple/client/services.rb +4 -6
  35. data/lib/dnsimple/client/services_domains.rb +12 -14
  36. data/lib/dnsimple/client/templates.rb +17 -19
  37. data/lib/dnsimple/client/templates_domains.rb +4 -6
  38. data/lib/dnsimple/client/templates_records.rb +18 -20
  39. data/lib/dnsimple/client/tlds.rb +6 -8
  40. data/lib/dnsimple/client/vanity_name_servers.rb +0 -2
  41. data/lib/dnsimple/client/webhooks.rb +11 -13
  42. data/lib/dnsimple/client/zones.rb +16 -18
  43. data/lib/dnsimple/client/zones_distributions.rb +4 -6
  44. data/lib/dnsimple/client/zones_records.rb +29 -31
  45. data/lib/dnsimple/client.rb +22 -24
  46. data/lib/dnsimple/default.rb +0 -4
  47. data/lib/dnsimple/error.rb +0 -6
  48. data/lib/dnsimple/extra.rb +4 -6
  49. data/lib/dnsimple/options.rb +1 -7
  50. data/lib/dnsimple/response.rb +4 -13
  51. data/lib/dnsimple/struct/account.rb +0 -2
  52. data/lib/dnsimple/struct/certificate.rb +0 -2
  53. data/lib/dnsimple/struct/certificate_bundle.rb +0 -2
  54. data/lib/dnsimple/struct/certificate_purchase.rb +0 -2
  55. data/lib/dnsimple/struct/certificate_renewal.rb +0 -2
  56. data/lib/dnsimple/struct/charge.rb +4 -8
  57. data/lib/dnsimple/struct/collaborator.rb +0 -2
  58. data/lib/dnsimple/struct/contact.rb +0 -2
  59. data/lib/dnsimple/struct/delegation_signer_record.rb +0 -2
  60. data/lib/dnsimple/struct/dns_analytics.rb +0 -2
  61. data/lib/dnsimple/struct/dnssec.rb +0 -2
  62. data/lib/dnsimple/struct/domain.rb +0 -2
  63. data/lib/dnsimple/struct/domain_check.rb +0 -2
  64. data/lib/dnsimple/struct/domain_premium_price.rb +0 -2
  65. data/lib/dnsimple/struct/domain_price.rb +0 -2
  66. data/lib/dnsimple/struct/domain_push.rb +0 -2
  67. data/lib/dnsimple/struct/domain_registration.rb +0 -2
  68. data/lib/dnsimple/struct/domain_renewal.rb +0 -2
  69. data/lib/dnsimple/struct/domain_restore.rb +0 -2
  70. data/lib/dnsimple/struct/domain_transfer.rb +0 -2
  71. data/lib/dnsimple/struct/email_forward.rb +0 -2
  72. data/lib/dnsimple/struct/extended_attribute.rb +0 -4
  73. data/lib/dnsimple/struct/oauth_token.rb +0 -2
  74. data/lib/dnsimple/struct/registrant_change.rb +0 -2
  75. data/lib/dnsimple/struct/registrant_change_check.rb +0 -2
  76. data/lib/dnsimple/struct/service.rb +0 -4
  77. data/lib/dnsimple/struct/template.rb +0 -2
  78. data/lib/dnsimple/struct/template_record.rb +0 -2
  79. data/lib/dnsimple/struct/tld.rb +0 -2
  80. data/lib/dnsimple/struct/transfer_lock.rb +0 -2
  81. data/lib/dnsimple/struct/user.rb +0 -2
  82. data/lib/dnsimple/struct/vanity_name_server.rb +0 -2
  83. data/lib/dnsimple/struct/webhook.rb +0 -2
  84. data/lib/dnsimple/struct/whoami.rb +2 -4
  85. data/lib/dnsimple/struct/whois_privacy.rb +0 -2
  86. data/lib/dnsimple/struct/zone.rb +0 -2
  87. data/lib/dnsimple/struct/zone_distribution.rb +0 -2
  88. data/lib/dnsimple/struct/zone_file.rb +0 -2
  89. data/lib/dnsimple/struct/zone_record.rb +0 -2
  90. data/lib/dnsimple/struct/zone_record_id.rb +0 -2
  91. data/lib/dnsimple/struct/zone_records_batch_change.rb +0 -2
  92. data/lib/dnsimple/struct.rb +0 -3
  93. data/lib/dnsimple/version.rb +1 -3
  94. data/lib/dnsimple.rb +1 -3
  95. data/spec/dnsimple/client/client_service_spec.rb +12 -10
  96. data/spec/dnsimple/client/oauth_spec.rb +6 -6
  97. data/spec/dnsimple/client/registrar_whois_privacy_spec.rb +0 -82
  98. data/spec/fixtures.http/acceptPush/success.http +15 -15
  99. data/spec/fixtures.http/accounts/success-account.http +20 -20
  100. data/spec/fixtures.http/accounts/success-user.http +21 -21
  101. data/spec/fixtures.http/activateZoneService/success.http +16 -16
  102. data/spec/fixtures.http/appliedServices/success.http +19 -19
  103. data/spec/fixtures.http/applyService/success.http +15 -15
  104. data/spec/fixtures.http/applyTemplate/success.http +13 -13
  105. data/spec/fixtures.http/authorizeDomainTransferOut/success.http +13 -13
  106. data/spec/fixtures.http/badgateway.http +5 -5
  107. data/spec/fixtures.http/batchChangeZoneRecords/error_400_create_validation_failed.http +16 -16
  108. data/spec/fixtures.http/batchChangeZoneRecords/error_400_delete_validation_failed.http +3 -3
  109. data/spec/fixtures.http/batchChangeZoneRecords/error_400_update_validation_failed.http +3 -3
  110. data/spec/fixtures.http/batchChangeZoneRecords/success.http +16 -16
  111. data/spec/fixtures.http/cancelDomainTransfer/success.http +17 -17
  112. data/spec/fixtures.http/changeDomainDelegation/success.http +15 -15
  113. data/spec/fixtures.http/changeDomainDelegationFromVanity/success.http +15 -15
  114. data/spec/fixtures.http/changeDomainDelegationToVanity/success.http +17 -17
  115. data/spec/fixtures.http/checkDomain/success.http +15 -15
  116. data/spec/fixtures.http/checkRegistrantChange/error-contactnotfound.http +3 -3
  117. data/spec/fixtures.http/checkRegistrantChange/error-domainnotfound.http +3 -3
  118. data/spec/fixtures.http/checkRegistrantChange/success.http +15 -15
  119. data/spec/fixtures.http/checkZoneDistribution/error.http +17 -17
  120. data/spec/fixtures.http/checkZoneDistribution/failure.http +17 -17
  121. data/spec/fixtures.http/checkZoneDistribution/success.http +17 -17
  122. data/spec/fixtures.http/checkZoneRecordDistribution/error.http +17 -17
  123. data/spec/fixtures.http/checkZoneRecordDistribution/failure.http +17 -17
  124. data/spec/fixtures.http/checkZoneRecordDistribution/success.http +17 -17
  125. data/spec/fixtures.http/createContact/created.http +16 -16
  126. data/spec/fixtures.http/createContact/error-validation-errors.http +15 -15
  127. data/spec/fixtures.http/createDelegationSignerRecord/created.http +17 -17
  128. data/spec/fixtures.http/createDelegationSignerRecord/validation-error.http +15 -15
  129. data/spec/fixtures.http/createDomain/created.http +19 -19
  130. data/spec/fixtures.http/createEmailForward/created.http +21 -21
  131. data/spec/fixtures.http/createPrimaryServer/created.http +20 -20
  132. data/spec/fixtures.http/createRegistrantChange/success.http +14 -14
  133. data/spec/fixtures.http/createSecondaryZone/created.http +20 -20
  134. data/spec/fixtures.http/createTemplate/created.http +15 -15
  135. data/spec/fixtures.http/createTemplateRecord/created.http +16 -16
  136. data/spec/fixtures.http/createWebhook/created.http +13 -13
  137. data/spec/fixtures.http/createZoneRecord/created-apex.http +13 -13
  138. data/spec/fixtures.http/createZoneRecord/created.http +13 -13
  139. data/spec/fixtures.http/deactivateZoneService/success.http +16 -16
  140. data/spec/fixtures.http/deleteContact/error-contact-in-use.http +15 -15
  141. data/spec/fixtures.http/deleteContact/success.http +13 -13
  142. data/spec/fixtures.http/deleteDelegationSignerRecord/success.http +15 -15
  143. data/spec/fixtures.http/deleteDomain/success.http +11 -11
  144. data/spec/fixtures.http/deleteEmailForward/success.http +18 -18
  145. data/spec/fixtures.http/deleteRegistrantChange/success.http +13 -13
  146. data/spec/fixtures.http/deleteRegistrantChange/success_async.http +3 -3
  147. data/spec/fixtures.http/deleteTemplate/success.http +13 -13
  148. data/spec/fixtures.http/deleteTemplateRecord/success.http +13 -13
  149. data/spec/fixtures.http/deleteWebhook/success.http +13 -13
  150. data/spec/fixtures.http/deleteZoneRecord/success.http +11 -11
  151. data/spec/fixtures.http/disableDnssec/not-enabled.http +15 -15
  152. data/spec/fixtures.http/disableDnssec/success.http +15 -15
  153. data/spec/fixtures.http/disableDomainAutoRenewal/success.http +13 -13
  154. data/spec/fixtures.http/disableDomainTransferLock/success.http +17 -17
  155. data/spec/fixtures.http/disableVanityNameServers/success.http +15 -15
  156. data/spec/fixtures.http/disableWhoisPrivacy/success.http +16 -16
  157. data/spec/fixtures.http/dnsAnalytics/success.http +17 -17
  158. data/spec/fixtures.http/downloadCertificate/success.http +19 -19
  159. data/spec/fixtures.http/enableDnssec/success.http +17 -17
  160. data/spec/fixtures.http/enableDomainAutoRenewal/success.http +13 -13
  161. data/spec/fixtures.http/enableDomainTransferLock/success.http +17 -17
  162. data/spec/fixtures.http/enableVanityNameServers/success.http +17 -17
  163. data/spec/fixtures.http/enableWhoisPrivacy/created.http +16 -16
  164. data/spec/fixtures.http/enableWhoisPrivacy/success.http +16 -16
  165. data/spec/fixtures.http/getCertificate/success.http +19 -19
  166. data/spec/fixtures.http/getCertificatePrivateKey/success.http +20 -20
  167. data/spec/fixtures.http/getContact/success.http +16 -16
  168. data/spec/fixtures.http/getDelegationSignerRecord/success.http +17 -17
  169. data/spec/fixtures.http/getDnssec/success.http +17 -17
  170. data/spec/fixtures.http/getDomain/success.http +19 -19
  171. data/spec/fixtures.http/getDomainDelegation/success-empty.http +15 -15
  172. data/spec/fixtures.http/getDomainDelegation/success.http +15 -15
  173. data/spec/fixtures.http/getDomainPrices/failure.http +18 -18
  174. data/spec/fixtures.http/getDomainPrices/success.http +21 -21
  175. data/spec/fixtures.http/getDomainRegistration/success.http +20 -20
  176. data/spec/fixtures.http/getDomainRenewal/success.http +20 -20
  177. data/spec/fixtures.http/getDomainRestore/success.http +22 -22
  178. data/spec/fixtures.http/getDomainTransfer/success.http +19 -19
  179. data/spec/fixtures.http/getDomainTransferLock/success.http +17 -17
  180. data/spec/fixtures.http/getEmailForward/success.http +21 -21
  181. data/spec/fixtures.http/getPrimaryServer/success.http +20 -20
  182. data/spec/fixtures.http/getRegistrantChange/success.http +15 -15
  183. data/spec/fixtures.http/getService/success.http +16 -16
  184. data/spec/fixtures.http/getTemplate/success.http +15 -15
  185. data/spec/fixtures.http/getTemplateRecord/success.http +16 -16
  186. data/spec/fixtures.http/getTld/success.http +20 -20
  187. data/spec/fixtures.http/getTldExtendedAttributes/success-attributes.http +15 -15
  188. data/spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http +15 -15
  189. data/spec/fixtures.http/getTldExtendedAttributes/success.http +15 -15
  190. data/spec/fixtures.http/getWebhook/success.http +13 -13
  191. data/spec/fixtures.http/getZone/success.http +16 -16
  192. data/spec/fixtures.http/getZoneFile/success.http +17 -17
  193. data/spec/fixtures.http/getZoneRecord/success.http +17 -17
  194. data/spec/fixtures.http/initiatePush/success.http +17 -17
  195. data/spec/fixtures.http/issueLetsencryptCertificate/success.http +17 -17
  196. data/spec/fixtures.http/issueRenewalLetsencryptCertificate/success.http +17 -17
  197. data/spec/fixtures.http/linkPrimaryServer/success.http +20 -20
  198. data/spec/fixtures.http/listAccounts/success-account.http +20 -20
  199. data/spec/fixtures.http/listAccounts/success-user.http +20 -20
  200. data/spec/fixtures.http/listCertificates/success.http +19 -19
  201. data/spec/fixtures.http/listCharges/fail-400-bad-filter.http +9 -9
  202. data/spec/fixtures.http/listCharges/fail-403.http +9 -9
  203. data/spec/fixtures.http/listCharges/success.http +9 -9
  204. data/spec/fixtures.http/listContacts/success.http +16 -16
  205. data/spec/fixtures.http/listDelegationSignerRecords/success.http +17 -17
  206. data/spec/fixtures.http/listDomains/success.http +19 -19
  207. data/spec/fixtures.http/listEmailForwards/success.http +13 -13
  208. data/spec/fixtures.http/listPrimaryServers/success.http +20 -20
  209. data/spec/fixtures.http/listPushes/success.http +17 -17
  210. data/spec/fixtures.http/listRegistrantChanges/success.http +15 -15
  211. data/spec/fixtures.http/listServices/success.http +17 -17
  212. data/spec/fixtures.http/listTemplateRecords/success.http +16 -16
  213. data/spec/fixtures.http/listTemplates/success.http +15 -15
  214. data/spec/fixtures.http/listTlds/success.http +20 -20
  215. data/spec/fixtures.http/listWebhooks/success.http +13 -13
  216. data/spec/fixtures.http/listZoneRecords/success.http +17 -17
  217. data/spec/fixtures.http/listZones/success.http +16 -16
  218. data/spec/fixtures.http/method-not-allowed.http +8 -8
  219. data/spec/fixtures.http/notfound-certificate.http +12 -12
  220. data/spec/fixtures.http/notfound-contact.http +10 -10
  221. data/spec/fixtures.http/notfound-delegationSignerRecord.http +8 -8
  222. data/spec/fixtures.http/notfound-domain.http +8 -8
  223. data/spec/fixtures.http/notfound-domainpush.http +8 -8
  224. data/spec/fixtures.http/notfound-emailforward.http +8 -8
  225. data/spec/fixtures.http/notfound-record.http +10 -10
  226. data/spec/fixtures.http/notfound-template.http +10 -10
  227. data/spec/fixtures.http/notfound-webhook.http +8 -8
  228. data/spec/fixtures.http/notfound-whoisprivacy.http +10 -10
  229. data/spec/fixtures.http/notfound-zone.http +10 -10
  230. data/spec/fixtures.http/oauthAccessToken/error-invalid-request.http +12 -12
  231. data/spec/fixtures.http/oauthAccessToken/success.http +16 -16
  232. data/spec/fixtures.http/pages-1of3.http +12 -12
  233. data/spec/fixtures.http/pages-2of3.http +12 -12
  234. data/spec/fixtures.http/pages-3of3.http +12 -12
  235. data/spec/fixtures.http/purchaseLetsencryptCertificate/success.http +19 -19
  236. data/spec/fixtures.http/purchaseRenewalLetsencryptCertificate/success.http +19 -19
  237. data/spec/fixtures.http/registerDomain/error-extended-attributes.http +15 -15
  238. data/spec/fixtures.http/registerDomain/success.http +20 -20
  239. data/spec/fixtures.http/rejectPush/success.http +15 -15
  240. data/spec/fixtures.http/renewDomain/error-tooearly.http +14 -14
  241. data/spec/fixtures.http/renewDomain/success.http +20 -20
  242. data/spec/fixtures.http/response.http +12 -12
  243. data/spec/fixtures.http/restoreDomain/success.http +22 -22
  244. data/spec/fixtures.http/success-with-malformed-json.http +4 -4
  245. data/spec/fixtures.http/transferDomain/error-indnsimple.http +13 -13
  246. data/spec/fixtures.http/transferDomain/error-missing-authcode.http +13 -13
  247. data/spec/fixtures.http/transferDomain/success.http +20 -20
  248. data/spec/fixtures.http/unapplyService/success.http +15 -15
  249. data/spec/fixtures.http/unlinkPrimaryServer/success.http +20 -20
  250. data/spec/fixtures.http/updateContact/success.http +16 -16
  251. data/spec/fixtures.http/updateTemplate/success.http +15 -15
  252. data/spec/fixtures.http/updateZoneNsRecords/success.http +16 -16
  253. data/spec/fixtures.http/updateZoneRecord/success.http +17 -17
  254. data/spec/fixtures.http/validation-error.http +15 -15
  255. data/spec/fixtures.http/whoami/success-account.http +15 -15
  256. data/spec/fixtures.http/whoami/success-user.http +15 -15
  257. data/spec/fixtures.http/whoami/success.http +15 -15
  258. data/spec/support/helpers.rb +0 -2
  259. metadata +7 -13
  260. data/lib/dnsimple/struct/whois_privacy_renewal.rb +0 -30
  261. data/spec/fixtures.http/checkDomainPremiumPrice/error_400_not_a_premium_domain.http +0 -18
  262. data/spec/fixtures.http/checkDomainPremiumPrice/error_400_tld_not_supported.http +0 -18
  263. data/spec/fixtures.http/checkDomainPremiumPrice/success.http +0 -20
  264. data/spec/fixtures.http/getDomainPremiumPrice/failure.http +0 -15
  265. data/spec/fixtures.http/getDomainPremiumPrice/success.http +0 -20
  266. data/spec/fixtures.http/getWhoisPrivacy/success.http +0 -16
  267. data/spec/fixtures.http/renewWhoisPrivacy/success.http +0 -20
  268. data/spec/fixtures.http/renewWhoisPrivacy/whois-privacy-duplicated-order.http +0 -18
  269. data/spec/fixtures.http/renewWhoisPrivacy/whois-privacy-not-found.http +0 -18
data/CHANGELOG.md CHANGED
@@ -1,326 +1,428 @@
1
1
  # Changelog
2
2
 
3
- This project uses [Semantic Versioning 2.0.0](http://semver.org/).
3
+ This project uses [Semantic Versioning 2.0.0](http://semver.org/), the format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
- ## main
5
+ ## 12.0.0 - 2026-01-22
6
6
 
7
- ## 11.1.0
7
+ ### Removed
8
8
 
9
- - NEW: Added `Dnsimple::Client::ZonesRecords#batch_change_zone_records` to make changes to zone records in a batch. (dnsimple/dnsimple-ruby#434)
9
+ - Removed `Dnsimple::Client::Registrar#whois_privacy` (dnsimple/dnsimple-developer#919)
10
+ - Removed `Dnsimple::Client::Registrar#renew_whois_privacy` (dnsimple/dnsimple-developer#919)
10
11
 
11
- ## 11.0.0
12
+ ## 11.1.0 - 2025-09-25
12
13
 
13
- - CHANGED: Removed `from` and `to` fields in `EmailForward`
14
- - CHANGED: Removed `DomainCollaborators`
14
+ ### Added
15
15
 
16
- ## 10.0.0
16
+ - Added `Dnsimple::Client::ZonesRecords#batch_change_zone_records` to make changes to zone records in a batch. (#434)
17
17
 
18
- - CHANGED: Minimum Ruby version is now 3.2
18
+ ## 11.0.0 - 2025-08-20
19
19
 
20
- ## 9.0.1
20
+ ### Removed
21
21
 
22
- - NEW: Added `alias_email` and `destination_email` to `EmailForward`
23
- - CHANGED: Deprecated `from` and `to` fields in `EmailForward`
24
- - CHANGED: `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.
22
+ - Removed `from` and `to` fields in `EmailForward`
23
+ - Removed `DomainCollaborators`
25
24
 
26
- ## 9.0.0
25
+ ## 10.0.0 - 2025-05-02
27
26
 
28
- - CHANGED: Minimum Ruby version is now 3.1
27
+ ### Changed
29
28
 
30
- ## 8.9.0
29
+ - Minimum Ruby version is now 3.2
31
30
 
32
- - NEW: Added `Dnsimple::Client::Registrar#restore_domain` to restore a domain. (dnsimple/dnsimple-ruby#379)
33
- - NEW: Added `Dnsimple::Client::Registrar#get_domain_restore` to retrieve the details of an existing dommain restore. (dnsimple/dnsimple-ruby#379)
31
+ ## 9.0.1 - 2024-12-12
34
32
 
35
- ## 8.8.0
33
+ ### Added
36
34
 
37
- - NEW: Added `Dnsimple::Client::DnsAnalytics#query` to query and pull data from the DNS Analytics API endpoint(dnsimple/dnsimple-ruby#375)
35
+ - Added `alias_email` and `destination_email` to `EmailForward`
38
36
 
39
- ## 8.7.1
37
+ ### Deprecated
40
38
 
41
- ENHANCEMENTS:
39
+ - Deprecated `from` and `to` fields in `EmailForward`
40
+ - `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.
42
41
 
43
- - NEW: Added `#secondary`, `#last_transferred_at`, `#active` to `Dnsimple::Struct::Zone` (dnsimple/dnsimple-ruby)
42
+ ## 9.0.0 - 2024-03-12
44
43
 
45
- ## 8.7.0
44
+ ### Changed
46
45
 
47
- FEATURES:
46
+ - Minimum Ruby version is now 3.1
48
47
 
49
- - NEW: Added `Dnsimple::Client::Billing#charges` to retrieve the list of billing charges for an account. (dnsimple/dnsimple-ruby#365)
48
+ ## 8.9.0 - 2024-02-29
50
49
 
51
- ## 8.6.0
50
+ ### Added
52
51
 
53
- FEATURES:
52
+ - Added `Dnsimple::Client::Registrar#restore_domain` to restore a domain. (#379)
53
+ - Added `Dnsimple::Client::Registrar#get_domain_restore` to retrieve the details of an existing dommain restore. (#379)
54
54
 
55
- - NEW: Added `Dnsimple::Client::Registrar#get_domain_transfer_lock` to retrieves the transfer lock status of a registered domain. (dnsimple/dnsimple-ruby#356)
56
- - NEW: Added `Dnsimple::Client::Registrar#enable_domain_transfer_lock` to enable the transfer lock for a registered domain. (dnsimple/dnsimple-ruby#356)
57
- - NEW: Added `Dnsimple::Client::Registrar#disable_domain_transfer_lock` to disable the transfer lock for a registered domain. (dnsimple/dnsimple-ruby#356)
55
+ ## 8.8.0 - 2024-02-06
58
56
 
59
- ## 8.5.0
57
+ ### Added
60
58
 
61
- FEATURES:
59
+ - Added `Dnsimple::Client::DnsAnalytics#query` to query and pull data from the DNS Analytics API endpoint(#375)
62
60
 
63
- - NEW: Added `Dnsimple::Client::Registrar#check_registrant_change` to retrieves the requirements of a registrant change. (dnsimple/dnsimple-ruby#355)
64
- - NEW: Added `Dnsimple::Client::Registrar#get_registrant_change` to retrieves the details of an existing registrant change. (dnsimple/dnsimple-ruby#355)
65
- - NEW: Added `Dnsimple::Client::Registrar#create_registrant_change` to start registrant change. (dnsimple/dnsimple-ruby#355)
66
- - NEW: Added `Dnsimple::Client::Registrar#list_registrant_changes` to lists the registrant changes for a domain. (dnsimple/dnsimple-ruby#355)
67
- - NEW: Added `Dnsimple::Client::Registrar#delete_registrant_change` to cancel an ongoing registrant change from the account. (dnsimple/dnsimple-ruby#355)
61
+ ## 8.7.1 - 2023-11-22
68
62
 
69
- ## 8.4.0
63
+ ### Added
70
64
 
71
- FEATURES:
65
+ - Added `#secondary`, `#last_transferred_at`, `#active` to `Dnsimple::Struct::Zone`
72
66
 
73
- - NEW: Added `Dnsimple::Client::Zones#activate_dns` to activate DNS services (resolution) for a zone. (dnsimple/dnsimple-ruby#354)
74
- - NEW: Added `Dnsimple::Client::Zones#deactivate_dns` to deactivate DNS services (resolution) for a zone. (dnsimple/dnsimple-ruby#354)
67
+ ## 8.7.0 - 2023-11-03
75
68
 
76
- ## 8.3.1
69
+ ### Added
77
70
 
78
- - FIXED: Our release process had failed to push correctly `8.2.0` and `8.3.0` to RubyGems resulting in empty gem releases. This releases fixes the issue and contains the same changes of `8.2.0` and `8.3.0`.
71
+ - Added `Dnsimple::Client::Billing#charges` to retrieve the list of billing charges for an account. (#365)
79
72
 
80
- ## 8.3.0
73
+ ## 8.6.0 - 2023-09-08
81
74
 
82
- - CHANGED: Wrap 400 errors on the OAuth endpoint in `Dnsimple::OAuthInvalidRequestError` (dnsimple/dnsimple-ruby#336)
75
+ ### Added
83
76
 
84
- ## 8.2.0
77
+ - Added `Dnsimple::Client::Registrar#get_domain_transfer_lock` to retrieves the transfer lock status of a registered domain. (#356)
78
+ - Added `Dnsimple::Client::Registrar#enable_domain_transfer_lock` to enable the transfer lock for a registered domain. (#356)
79
+ - Added `Dnsimple::Client::Registrar#disable_domain_transfer_lock` to disable the transfer lock for a registered domain. (#356)
85
80
 
86
- - NEW: Added getDomainRenewal and getDomainRegistration endpoints (dnsimple/dnsimple-ruby#332)
87
- - NEW: Documented the new `signature_algorithm` parameter for the Lets Encrypt certificate purchase endpoint (dnsimple/dnsimple-ruby#331)
81
+ ## 8.5.0 - 2023-08-24
88
82
 
89
- ## 8.1.0
83
+ ### Added
90
84
 
91
- - CHANGED: Fixed and updated documentation for domain endpoints (dnsimple/dnsimple-ruby#300)
92
- - CHANGED: Expose all information available in error responses (dnsimple/dnsimple-ruby#298)
85
+ - Added `Dnsimple::Client::Registrar#check_registrant_change` to retrieves the requirements of a registrant change. (#355)
86
+ - Added `Dnsimple::Client::Registrar#get_registrant_change` to retrieves the details of an existing registrant change. (#355)
87
+ - Added `Dnsimple::Client::Registrar#create_registrant_change` to start registrant change. (#355)
88
+ - Added `Dnsimple::Client::Registrar#list_registrant_changes` to lists the registrant changes for a domain. (#355)
89
+ - Added `Dnsimple::Client::Registrar#delete_registrant_change` to cancel an ongoing registrant change from the account. (#355)
93
90
 
94
- ## 8.0.0
91
+ ## 8.4.0 - 2023-08-10
95
92
 
96
- - CHANGED: Minimum Ruby version is now 2.7
97
- - REMOVED: `registrar.getDomainPremiumPrice` in favour of `registrar.getDomainPrices`
98
- - CHANGED: Deprecate Certificate's `contact_id` (dnsimple/dnsimple-ruby#276)
99
- - FIXED: Remove stale reference to Client::DomainServicesService (dnsimple/dnsimple-ruby#267)
93
+ ### Added
100
94
 
101
- ## 7.1.1
95
+ - Added `Dnsimple::Client::Zones#activate_dns` to activate DNS services (resolution) for a zone. (#354)
96
+ - Added `Dnsimple::Client::Zones#deactivate_dns` to deactivate DNS services (resolution) for a zone. (#354)
102
97
 
103
- - CHANGED: Bumped up dependencies
98
+ ## 8.3.1 - 2023-03-10
104
99
 
105
- ## 7.1.0
100
+ ### Fixed
106
101
 
107
- - CHANGED: Updated DNSSEC-related structs and entrypoints to support DS record key-data interface. (dnsimple/dnsimple-ruby#252)
102
+ - Our release process had failed to push correctly `8.2.0` and `8.3.0` to RubyGems resulting in empty gem releases. This releases fixes the issue and contains the same changes of `8.2.0` and `8.3.0`.
108
103
 
109
- ## 7.0.0
104
+ ## 8.3.0 - 2023-03-09
110
105
 
111
- - CHANGED: Minimum Ruby version is now 2.6
112
- - CHANGED: Deprecates `registrar.getDomainPremiumPrice` in favour of `registrar.getDomainPrices`
106
+ ### Changed
113
107
 
114
- ## 6.0.0
108
+ - Wrap 400 errors on the OAuth endpoint in `Dnsimple::OAuthInvalidRequestError` (#336)
115
109
 
116
- - NEW: Added `registrar.get_domain_prices` to retrieve whether a domain is premium and the prices to register, transfer, and renew. (dnsimple/dnsimple-ruby#230)
117
- - REMOVED: `domain.reset_domain_token` endpoint no longer exists and the client method is removed. (dnsimple/dnsimple-ruby#231)
118
- - REMOVED: The deprecated `Domain.expires_on` is removed. (dnsimple/dnsimple-ruby#232)
119
- - REMOVED: The deprecated `Certificate.expires_on` is removed. (dnsimple/dnsimple-ruby#232)
110
+ ## 8.2.0 - 2023-03-02
120
111
 
121
- ## 5.2.0
112
+ ### Added
122
113
 
123
- - CHANGED: `Certificate#expires_on` (date only) is deprecated in favor of `Certificate#expires_at` (timestamp). (dnsimple/dnsimple-ruby#190)
114
+ - Added getDomainRenewal and getDomainRegistration endpoints (#332)
115
+ - Documented the new `signature_algorithm` parameter for the Lets Encrypt certificate purchase endpoint (#331)
124
116
 
125
- ## 5.1.0
117
+ ## 8.1.0 - 2022-09-19
126
118
 
127
- - CHANGED: `Domain#expires_on` (date only) is deprecated in favor of `Domain#expires_at` (timestamp). (dnsimple/dnsimple-ruby#186)
119
+ ### Changed
128
120
 
129
- ## 5.0.0
121
+ - Fixed and updated documentation for domain endpoints (#300)
122
+ - Expose all information available in error responses (#298)
130
123
 
131
- - CHANGED: Minimum Ruby version is now 2.4
132
- - CHANGED: User-agent format has been changed to prepend custom token before default token.
133
- - NEW: Added `registrar.get_domain_transfer` to retrieve a domain transfer. (dnsimple/dnsimple-ruby#180)
134
- - NEW: Added `registrar.cancel_domain_transfer` to cancel an in progress domain transfer. (dnsimple/dnsimple-ruby#180)
135
- - NEW: Added `DomainTransfer#status_description` attribute to identify the failure reason of a transfer. (dnsimple/dnsimple-ruby#180).
124
+ ## 8.0.0 - 2022-08-10
136
125
 
137
- ## 4.6.0
126
+ ### Changed
138
127
 
139
- - NEW: Added WHOIS privacy renewal (GH-171)
128
+ - Minimum Ruby version is now 2.7
129
+ - Deprecate Certificate's `contact_id` (#276)
140
130
 
141
- ## 4.5.0
131
+ ### Removed
142
132
 
143
- - NEW: Added zone distribution and zone record distribution (GH-160)
133
+ - `registrar.getDomainPremiumPrice` in favour of `registrar.getDomainPrices`
144
134
 
145
- - CHANGED: Bump minimum Ruby requirement to 2.1
146
- - CHANGED: Introduce Dnsimple::Struct::VanityNameServer (GH-144)
147
- - CHANGED: Fix name inconsistency of the Collaborator module (GH-154)
135
+ ### Fixed
148
136
 
149
- - REMOVED: Removed extra alias (GH-168). You should use `dnsimple.foo.list_foo` instead of `dnsimple.foo.list`. Same for create/update. The change ensures consistency across the various clients. We prefer fully qualified methods.
137
+ - Remove stale reference to Client::DomainServicesService (#267)
150
138
 
151
- ## 4.4.0
139
+ ## 7.1.1 - 2022-01-20
152
140
 
153
- - NEW: Added Let's Encrypt certificate methods (GH-159)
141
+ ### Changed
154
142
 
155
- - REMOVED: Removed premium_price attribute from registrar order responses (GH-163). Please do not rely on that attribute, as it returned an incorrect value. The attribute is going to be removed, and the API now returns a null value.
143
+ - Bumped up dependencies
156
144
 
157
- ## 4.3.0
145
+ ## 7.1.0 - 2021-10-19
158
146
 
159
- - NEW: Added `certificates.all_certificates` (dnsimple/dnsimple-ruby#155)
147
+ ### Changed
160
148
 
161
- - CHANGED: Updated registrar URLs (dnsimple/dnsimple-ruby#153)
149
+ - Updated DNSSEC-related structs and entrypoints to support DS record key-data interface. (#252)
162
150
 
163
- ## 4.2.0
151
+ ## 7.0.0 - 2021-06-16
164
152
 
165
- - NEW: Added DNSSEC support support (dnsimple/dnsimple-ruby#152)
153
+ ### Changed
166
154
 
167
- ## 4.1.0
155
+ - Minimum Ruby version is now 2.6
168
156
 
169
- - NEW: Added domain premium price support (dnsimple/dnsimple-ruby#143)
157
+ ### Deprecated
170
158
 
171
- - CHANGED: Updated registration, transfer, renewal response payload (dnsimple/dnsimple-developer#111, dnsimple/dnsimple-ruby#140).
172
- - CHANGED: Normalize unique string identifiers to SID (dnsimple/dnsimple-ruby#141)
159
+ - Deprecates `registrar.getDomainPremiumPrice` in favour of `registrar.getDomainPrices`
173
160
 
174
- ## 4.0.0
161
+ ## 6.0.0 - 2021-04-20
175
162
 
176
- - NEW: Added domain collaborators support (GH-137).
177
- - NEW: Added regions support for zone records (GH-135, GH-139).
178
- - NEW: Added domain services support (GH-122).
179
- - NEW: Added domain templates support (GH-125).
180
- - NEW: Added zone file support (GH-124).
181
- - NEW: Added certificate support (GH-123).
182
- - NEW: Added domain delegation support (GH-120).
183
- - NEW: Added domain push support (GH-127).
184
- - NEW: Added vanity name server support (GH-121).
163
+ ### Added
185
164
 
186
- - CHANGED: Record struct renamed to ZoneRecord (GH-117).
187
- - CHANGED: Updated Tld payload (GH-133, GH-129).
188
- - CHANGED: Renamed registrar `auth_info` into `auth_code` (GH-136).
165
+ - Added `registrar.get_domain_prices` to retrieve whether a domain is premium and the prices to register, transfer, and renew. (#230)
189
166
 
190
- ## 3.1.0
167
+ ### Removed
191
168
 
192
- - NEW: Added accounts support (GH-113).
193
- - NEW: Added sorting and filtering support (GH-112).
194
- - NEW: Added template record support (GH-104).
169
+ - `domain.reset_domain_token` endpoint no longer exists and the client method is removed. (#231)
170
+ - The deprecated `Domain.expires_on` is removed. (#232)
171
+ - The deprecated `Certificate.expires_on` is removed. (#232)
195
172
 
196
- - CHANGED: Pagination params must be passed as top level options. Previously they were passed inside `:query` options (GH-116).
197
- - CHANGED: Authentication credentials presence is no longer validated on the client as it was causing an error getting the access token (GH-74 and GH-102).
198
- - CHANGED: Setting a custom user-agent no longer overrides the original user-agent (GH-105).
199
- - CHANGED: Updated client to use Contact#email (GH-108).
173
+ ## 5.2.0 - 2020-06-22
200
174
 
201
- - REMOVED: Removed support for wildcard accounts (GH-107).
175
+ ### Deprecated
202
176
 
203
- ## 3.0.0
177
+ - `Certificate#expires_on` (date only) is deprecated in favor of `Certificate#expires_at` (timestamp). (#190)
204
178
 
205
- ### stable
179
+ ## 5.1.0 - 2020-06-10
206
180
 
207
- - FIXED: The client was using the wrong key to store the ContactsService which could cause conflicts with the DomainsService.
181
+ ### Deprecated
208
182
 
209
- - FIXED: `renewDomain` used a wrong path (GH-96).
183
+ - `Domain#expires_on` (date only) is deprecated in favor of `Domain#expires_at` (timestamp). (#186)
210
184
 
211
- - NEW: Added registrar delegation support (GH-98).
185
+ ## 5.0.0 - 2020-05-21
212
186
 
213
- - NEW: Added template support (GH-99).
187
+ ### Added
214
188
 
215
- - NEW: Added service support (GH-101).
189
+ - Added `registrar.get_domain_transfer` to retrieve a domain transfer. (#180)
190
+ - Added `registrar.cancel_domain_transfer` to cancel an in progress domain transfer. (#180)
191
+ - Added `DomainTransfer#status_description` attribute to identify the failure reason of a transfer. (#180).
216
192
 
217
- - CHANGED: Error detection is now smarter. If the error is deserializable and contains a message, the message is attached to the exception (GH-94, GH-95, GH-100).
193
+ ### Changed
218
194
 
219
- ### beta2
195
+ - Minimum Ruby version is now 2.4
196
+ - User-agent format has been changed to prepend custom token before default token.
220
197
 
221
- - FIXED: `state` and `redirect_uri` are not properly passed in the request to exchang the code for an access token (GH-89, GH-90).
198
+ ## 4.6.0 - 2019-02-01
222
199
 
223
- - FIXED: Request body is not properly serialized to JSON, and the "Content-Type" header was omissed (GH-91).
200
+ ### Added
224
201
 
225
- ### beta1
202
+ - Added WHOIS privacy renewal (#171)
226
203
 
227
- - CHANGED: Minimum Ruby version >= 2
204
+ ## 4.5.0 - 2018-10-16
228
205
 
229
- - CHANGED: Renamed `api_endpoint` to `base_url` to match the other clients.
206
+ ### Added
207
+
208
+ - Added zone distribution and zone record distribution (#160)
209
+
210
+ ### Changed
211
+
212
+ - Bump minimum Ruby requirement to 2.1
213
+ - Introduce Dnsimple::Struct::VanityNameServer (#144)
214
+ - Fix name inconsistency of the Collaborator module (#154)
215
+
216
+ ### Removed
217
+
218
+ - Removed extra alias (#168). You should use `dnsimple.foo.list_foo` instead of `dnsimple.foo.list`. Same for create/update. The change ensures consistency across the various clients. We prefer fully qualified methods.
219
+
220
+ ## 4.4.0 - 2018-01-23
221
+
222
+ ### Added
223
+
224
+ - Added Let's Encrypt certificate methods (#159)
225
+
226
+ ### Removed
227
+
228
+ - Removed premium_price attribute from registrar order responses (#163). Please do not rely on that attribute, as it returned an incorrect value. The attribute is going to be removed, and the API now returns a null value.
229
+
230
+ ## 4.3.0 - 2017-06-20
231
+
232
+ ### Added
233
+
234
+ - Added `certificates.all_certificates` (#155)
235
+
236
+ ### Changed
237
+
238
+ - Updated registrar URLs (#153)
239
+
240
+ ## 4.2.0 - 2017-03-07
241
+
242
+ ### Added
243
+
244
+ - Added DNSSEC support support (#152)
245
+
246
+ ## 4.1.0 - 2016-12-12
247
+
248
+ ### Added
249
+
250
+ - Added domain premium price support (#143)
251
+
252
+ ### Changed
253
+
254
+ - Updated registration, transfer, renewal response payload (dnsimple/dnsimple-developer#111, #140).
255
+ - Normalize unique string identifiers to SID (#141)
256
+
257
+ ## 4.0.0 - 2016-11-25
258
+
259
+ ### Added
260
+
261
+ - Added domain collaborators support (#137).
262
+ - Added regions support for zone records (#135, #139).
263
+ - Added domain services support (#122).
264
+ - Added domain templates support (#125).
265
+ - Added zone file support (#124).
266
+ - Added certificate support (#123).
267
+ - Added domain delegation support (#120).
268
+ - Added domain push support (#127).
269
+ - Added vanity name server support (#121).
270
+
271
+ ### Changed
272
+
273
+ - Record struct renamed to ZoneRecord (#117).
274
+ - Updated Tld payload (#133, #129).
275
+ - Renamed registrar `auth_info` into `auth_code` (#136).
276
+
277
+ ## 3.1.0 - 2016-06-21
278
+
279
+ ### Added
280
+
281
+ - Added accounts support (#113).
282
+ - Added sorting and filtering support (#112).
283
+ - Added template record support (#104).
284
+
285
+ ### Changed
286
+
287
+ - Pagination params must be passed as top level options. Previously they were passed inside `:query` options (#116).
288
+ - Authentication credentials presence is no longer validated on the client as it was causing an error getting the access token (#74 and #102).
289
+ - Setting a custom user-agent no longer overrides the original user-agent (#105).
290
+ - Updated client to use Contact#email (#108).
291
+
292
+ ### Removed
293
+
294
+ - Removed support for wildcard accounts (#107).
295
+
296
+ ## 3.0.0 - 2016-04-19
297
+
298
+ ### Added
299
+
300
+ - Added registrar delegation support (#98).
301
+ - Added template support (#99).
302
+ - Added service support (#101).
303
+
304
+ ### Changed
305
+
306
+ - Minimum Ruby version >= 2
307
+ - Renamed `api_endpoint` to `base_url` to match the other clients.
308
+ - Error detection is now smarter. If the error is deserializable and contains a message, the message is attached to the exception (#94, #95, #100).
309
+
310
+ ### Fixed
311
+
312
+ - The client was using the wrong key to store the ContactsService which could cause conflicts with the DomainsService.
313
+ - `renewDomain` used a wrong path (#96).
314
+ - `state` and `redirect_uri` are not properly passed in the request to exchang the code for an access token (#89, #90).
315
+ - Request body is not properly serialized to JSON, and the "Content-Type" header was omissed (#91).
230
316
 
231
317
  The client has been completely redesigned to support the [API v2](https://developer.dnsimple.com/v2). Overall, the client behaves like the previous version, however it has been rewritten to leverage the API v2 features specifically.
232
318
 
233
319
  Internal changes were made to match conventions adopted in other clients, such as the Go one and the Elixir one.
234
320
 
235
- ## 2.1.1
321
+ ## 2.1.1 - 2015-11-30
322
+
323
+ ### Fixed
324
+
325
+ - Paths may mistakenly be generated use \ on windows.
326
+
327
+ ## 2.1.0 - 2015-09-04
328
+
329
+ ### Added
236
330
 
237
- - FIXED: Paths may mistakenly be generated use \ on windows.
331
+ - Add the ability to set headers and pass extra connection params in each API method (#64)
238
332
 
239
- ## 2.1.0
333
+ ## 2.0.0 - 2015-06-25
240
334
 
241
- - NEW: Add the ability to set headers and pass extra connection params in each API method (GH-64)
335
+ ### Added
242
336
 
243
- ## 2.0.0
337
+ - Add support changing name servers (#52). Thanks @rosscooperman
338
+ - Add support for all DNSimple API methods.
244
339
 
245
- ### 2.0.0.alpha
340
+ ### Changed
246
341
 
247
- 2.0 is a complete client redesign.
342
+ - Drop 1.8.7, 1.9.2 support. Required Ruby >= 1.9.3.
343
+ - This package no longer provides a CLI. The CLI has been extracted to [dnsimple-ruby-cli](https://github.com/dnsimple/dnsimple-ruby-cli)
344
+ - Renamed the Gem from "dnsimple-ruby" to "dnsimple" (#23).
345
+ - Renamed the namespace from DNSimple to Dnsimple.
248
346
 
249
- - NEW: Add support changing name servers (GH-52). Thanks @rosscooperman
347
+ ### Removed
250
348
 
251
- - NEW: Add support for all DNSimple API methods.
349
+ - The library no longer provides built-in support for loading the credentials from a config file.
252
350
 
253
- - CHANGED: Drop 1.8.7, 1.9.2 support. Required Ruby >= 1.9.3.
351
+ ### Fixed
254
352
 
255
- - CHANGED: This package no longer provides a CLI. The CLI has been extracted to [dnsimple-ruby-cli](https://github.com/dnsimple/dnsimple-ruby-cli)
353
+ - Fixed a bug where API token environment variables were not properly detected (#59, #62). Thanks @oguzbilgic and @rupurt.
256
354
 
257
- - CHANGED: Renamed the Gem from "dnsimple-ruby" to "dnsimple" (GH-23).
355
+ ## 1.7.1 - 2014-12-13
258
356
 
259
- - CHANGED: Renamed the namespace from DNSimple to Dnsimple.
357
+ ### Fixed
260
358
 
261
- - REMOVED: The library no longer provides built-in support for loading the credentials from a config file.
359
+ - Updated Certificate to match the serialized attributes (#53).
262
360
 
263
- ### 2.0
361
+ ## 1.7.0 - 2014-09-29
264
362
 
265
- - FIXED: Fixed a bug where API token environment variables were not properly detected (GH-59, GH-62). Thanks @oguzbilgic and @rupurt.
363
+ ### Added
266
364
 
267
- ## Release 1.7.1
365
+ - Add support for Domain-based authentication (#40, #46). Thanks @dwradcliffe and @samsonasu.
268
366
 
269
- - FIXED: Updated Certificate to match the serialized attributes (GH-53).
367
+ ## 1.6.0 - 2014-09-20
270
368
 
271
- ## Release 1.7.0
369
+ ### Added
272
370
 
273
- - NEW: Add support for Domain-based authentication (GH-40, GH-46). Thanks @dwradcliffe and @samsonasu.
371
+ - Add support for 2FA (#44)
274
372
 
275
- ## Release 1.6.0
373
+ ## 1.5.5 - 2014-09-05
276
374
 
277
- - NEW: Add support for 2FA (GH-44)
375
+ ### Added
278
376
 
279
- ## Release 1.5.5
377
+ - Add notice about the CLI moving to a new location
280
378
 
281
- - NEW: Add notice about the CLI moving to a new location
379
+ ## 1.5.4 - 2014-07-01
282
380
 
283
- ## Release 1.5.4
381
+ ### Added
284
382
 
285
- - NEW: Added domain#expires_on attribute (GH-34). Thanks @alkema
383
+ - Added domain#expires_on attribute (#34). Thanks @alkema
384
+ - Add various missing domain attributes (#38). Thanks @nickhammond
385
+ - Added support for auto-renewal (#36). Thanks @mzuneska
286
386
 
287
- - NEW: Add various missing domain attributes (GH-38). Thanks @nickhammond
387
+ ### Changed
288
388
 
289
- - NEW: Added support for auto-renewal (GH-36). Thanks @mzuneska
389
+ - User.me now uses the correct patch for API v1.
290
390
 
291
- - CHANGED: User.me now uses the correct patch for API v1.
391
+ ## 1.5.3 - 2014-01-26
292
392
 
293
- ## Release 1.5.3
393
+ ### Fixed
294
394
 
295
- - FIXED: In some cases the client crashed with NoMethodError VERSION (GH-35).
395
+ - In some cases the client crashed with NoMethodError VERSION (#35).
296
396
 
297
- ## Release 1.5.2
397
+ ## 1.5.2 - 2014-01-15
298
398
 
299
- - NEW: Provide a meaningful user-agent.
399
+ ### Added
300
400
 
301
- ## Release 1.5.1
401
+ - Provide a meaningful user-agent.
302
402
 
303
- - FIXED: Invalid base URI.
403
+ ## 1.5.1 - 2014-01-14
304
404
 
305
- ## Release 1.5.0
405
+ ### Fixed
306
406
 
307
- - CHANGED: Added support for versioned API (GH-33)
407
+ - Invalid base URI.
308
408
 
309
- ## Release 1.4.0
409
+ ## 1.5.0 - 2014-01-14
310
410
 
311
- - CHANGED: Normalized exception handling. No more RuntimeError.
312
- In case of request error, the client raises RequestError, RecordExists or RecodNotFound
313
- depending on the called method.
411
+ ### Changed
314
412
 
315
- - CHANGED: Use Accept header to determine the request type instead of the .json suffix in the URL.
413
+ - Added support for versioned API (#33)
316
414
 
317
- - CHANGED: Renamed commands to the ObjectAction scheme (e.g. CreateDomain became DomainCreate).
415
+ ## 1.4.0 - 2013-04-18
318
416
 
319
- - CHANGED: Removed DomainError, UserNotFound, CertificateNotFound, CertificateExists error classes.
320
- See Error and RequestError.
417
+ ### Changed
321
418
 
322
- - CHANGED: Removed DNSimple::Command base class.
419
+ - Normalized exception handling. No more RuntimeError. In case of request error, the client raises RequestError, RecordExists or RecodNotFound depending on the called method.
420
+ - Use Accept header to determine the request type instead of the .json suffix in the URL.
421
+ - Renamed commands to the ObjectAction scheme (e.g. CreateDomain became DomainCreate).
422
+ - Removed DomainError, UserNotFound, CertificateNotFound, CertificateExists error classes. See Error and RequestError.
423
+ - Removed DNSimple::Command base class.
323
424
 
324
- - FIXED: Cucumber was trying to execute steps on dnsimple.com main website instead of given site.
425
+ ### Fixed
325
426
 
326
- - FIXED: We're no longer accepting route format. Use the correct header.
427
+ - Cucumber was trying to execute steps on dnsimple.com main website instead of given site.
428
+ - We're no longer accepting route format. Use the correct header.