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