Changelog History
Page 2
-
v0.2.7 Changes
October 08, 2018Major Features:
- ๐ Let's Encrypt Certificate Generation! #327 Documentation
- ๐จ Refactoring of most fields in the internal representation of domains. Most code now accesses fields on records through getters and setters, which should help us maintain better consistency throughout the system. #337
- ๐ New Provider HEXONET #373
BIND:
- ๐ Fix panic on CNAME #347
Cloudflare:
Route 53:
- ๐ Fix corner case when deleting r53_alias records #394
- โ Added token to NewStaticCredentials #401
- ๐ Fix bug in Route 53 ALIAS record #336
๐ Documentation:
- ๐ Improve spfcache.json instructions #375
- Clarify the when to implement certain interfaces #376
- ๐ update documentation for Gandi to mention the LiveDNS provider #385
- Review Maintainers of contributed providers #400
- AWS Token options documented #403
- โ Add Gandi registrar to example #335
- ๐ Document SRV, CF*REDIRECT, and note where docs are needed. #346
Misc / Bugs:
- ๐ convertzone produces deprecated NAMESERVER entries #363
- ๐ Fix #339 prevent the ovh provider to panic on SPF and DKIM record types #340
- ๐ Fix #341 do not erase all records labels #342
- ๐ Better validate NAMESERVER format. #350
- โก๏ธ Update AD integration failures #353
- ๐ fix names for internal transformed records #358
- ๐ Include support for exists element in SPF. #356
- โช Work around extra whitespace in spf records #361
- sort returned nameservers #369
- โ Add support for MX priorities of "" (0) #374
- ๐ Include PTR types in SPF Builder #378
- Create directories with execute permissions so they can be opened #395
- Correctly group R53_ALIAS records during IncrementalDiff. #399
- โ Add NAMESERVER_TTL and associated documentation. #398
- โก๏ธ update go version to 1.10 #409
Thanks to all contributors:
-
v0.2.6 Changes
March 16, 2018๐ What an exciting release!
Summary
- Gand v5i : Added support for the v5 API (also called "LIVEDNS")
- OpenSRS: You can now use OpenSRS as a registrar!
- ๐ OctoDNS Support! DNSControl now generates OctoDNS configuration files, which means you can use OctoDNS to talk to providers that DNSControl doesn't support. Users of OctoDNS will also appreciate that
convertzone
can read your OctoDNS zone configs and output a first draft of yourdnsconfig.py
.
๐จ Major refactoring! The RecordConfig struct has been reworked and that required code changes all over the place. Every provider was touched. Thanks to all the contributors for testing our changes (and fixing the bugs that were introduced by the refactoring). The benefit is that providers are now easier to write, cleaner to write, with less possibility for bugs. In the future support for new providers and DNS record types should be easier.
Major features:
- ๐ Make IGNORE work with all providers (#313)
- ๐ NEW REGISTRAR: OpenSRS (#275)
- ๐ NEW PROVIDER: OctoDNS (#309)
- ๐ NEW PROVIDER: GANDI-LIVEDNS (API v5) (#320)
๐ Bugs fixed:
- Rewrite IGNORE to use GetLabel (#331) (Fix #312)
- ๐ Fix CAA Support: helpers.js CAA_CRITICAL flag=128 (#318) (#319)
- DNSIMPLE: Fix DNSimple crashes on Alias: (#322)
- GCLOUD: create-zones breaks if domain starts with digit
- LINODE: Fix Linode provider (#333)
- ROUTE53: R53 crashes if traffic flow policy records exist (#330)
- ROUTE53: Fix R53_ALIAS not being registered as custom type (#310) (#311)
Code improvements:
- ๐จ Refactor RecordConfig: Add getters/setters (#314)
- โก๏ธ Update vendored packages (#326)
- Switch from fmt.Error* to errors.Error* (#317)
- ๐ Better .gitignore of integration test stuff. (#316)
- ๐จ Refactor: Prelink providers to domains (#305)
- ๐จ DNSIMPLE: dnssimple URL broke during refactor (#325)
- GCLOUD: Differentiate two modules name dns (#328)
- ROUTE53: Deleting wildcards doesn't work 19ca760
- ๐ Plus a few documentation and minor bugfixes
-
v0.2.5 Changes
January 23, 2018๐ So many new features! New record types! Better DKIM support! Better AWS support!
Highlights:
- ๐ Support for the ability to IGNORE() a label if some other system is updating it (all providers)
- ๐ Support for very long DKIM strings. You no longer have to split them yourself.
- ๐ Support for the new CAA record type (GANDI, CLOUDFLARE)
- ๐ Support for TXT records with multiple strings (BIND, ROUTE53, NAMEDOTCOM)
- ๐ Support for AWS ROUTE53 "ALIAS" records.
- โ Add the ability to send notifications to chat rooms when updates are done.
- ๐ A lot of code cleanups and documentation fixes.
๐ Detailed list of features and bug fixes:
- โ Add support for the IGNORE(label) directive (#183)
- Simple notification framework (#297)
- โ Add syntax for very long DKIM strings (#295)
- โ Add general support for TXT records with multiple strings (#293)
Provider-specific news:
- ๐ BIND: Add support for TXT records with multiple strings (#289)
- โก๏ธ BIND: Fix bug where SOA serial numbers were not updating
- ๐ CLOUDFLARE: Support CAA rtype (#285)
- ๐ DIGITALOCEAN: Improve example in docs (#281)
- ๐ GANDI: Add support for CAA rtype (#288)
- ๐ NAMEDOTCOM: Add support for TXT records with multiple strings (#299)
- โฌ๏ธ NAMEDOTCOM: Upgrade to v4 api (#298)
- ๐ ROUTE53: Add support for TXT records with multiple strings (#292)
- ๐ ROUTE53: Support Route53's ALIAS record type (#239) (#301)
- ROUTE53: Document error messages from various credential issues. (#291)
๐ Internal cleanups and documentation improvements:
- ๐ Improve docs on how to add an DNS record type.
- ๐ Many other small documentation improvements
- ๐ "go vet" and "go lint" the entire system.
- โ run helpers.js through Prettier
- ๐ docs: Improve comments related to capabilities. (#287)
- โก๏ธ Update github.com/prasmussen/gandi-api to prepare for LiveDNS support. (#302)
-
v0.2.4 Changes
December 06, 2017๐ Another big release! Two new providers (Linode, OVH), Gandi now supports registration functions, and my favorite new feature: the SPF optimizer!
๐ New features:
- โก๏ธ SPF Optimizer! dnscontrol's compiler now has an optimizer. Our first optimization is to improve your SPF records. See https://stackexchange.github.io/dnscontrol/spf-optimizer for info. Thanks to @captncraig for contributing this.
The language has changed slightly:
- Defining a domain twice is now considered an error.
- Labels that are FQDNs is now an error. (this is a common typo)
- Downcase DNS names (#253). DNSControl is opinionated and we've added a new optinion: All DNS labels and targets should be lowercase. Uppercase (language permitting) is now downcased silently.
Provider-specific improvements:
- ๐ New provider: Linode (#268)
- ๐ New Provider: OVH DNS Provider (#143) (#175)
- ๐ GANDI: Registrar support (#274)
- NAMECHEAP: Rate limiting now only throttles when needed
- ๐ NS1: Add SRV record support (#277)
- NS1: TXT records are broken if they contain spaces (#270)
- โก๏ธ ROUTE53: Update aws libraries and remove "waiter" code.
๐ Plus many code cleanups and fixes:
- โฌ๏ธ Upgrade to newest miekg/dns library
- ๐ Rename source files that don't match the name/nameProvider.go standard. (#261)
- ๐ Improved Namecheap documentation (#221) (#232)
- ๐ Improved documentation: Document that creds.json can include env variables, improve Namecheap docs, improve explanation of how to write a new provider, release engineering docs, and a massive overhaul to the website docs by Patrick G
Thanks to everyone for their contributions!
-
v0.2.3 Changes
October 19, 2017๐ This release adds two new DNS providers! We now support managing domains on Namecheap, thanks to @rbelnap (was previously just a registrar), and we have Vultr support thanks to @geek1011.
๐ Everything else is mostly a few bug fixes, and some much needed documentation cleanup from @geek1011.
๐ Pull Requests Merged:
DNSimple:
Namecheap:
- ๐ New Provider! #202
Vultr:
- ๐ New Provider! #219
other:
- ๐ Website fixes (Part 1) #223
- ๐ Improved consistency of provider documentation #222
- ๐ Fixed Cloudflare docs (#221) #224
- ๐ Fixed Active Directory docs (#221) #225
- ๐ Improve Gandi documentation (#221) #229
- ๐ Improve Google Cloud DNS docs (#221) #230
- ๐ Improve NS1 documentation (#221) #233
- ๐ Improved BIND docs (#221) #226
- ๐ Improve softlayer documentation (#221) #235
- ๐ Improved Name.com documentation (#221) #231
- ๐ Improve DNSimple documentation (#221) #228
- ๐ Improved DigitalOcean documentation (#221) #227
- โก๏ธ update README to include NS1 as a provider #240
Thanks to all contributors:
-
v0.2.2 Changes
October 02, 2017So many new features!
๐ The biggest change in this release is the new command line flag parser. The good news is that is the subcommands and flags are much more consistent and better documented. It is also much easier to add new subcommands and flags. The bad news (BREAKING CHANGE) is that some of the old command/flag names have changed, which might break bash scripts, documented procedures, etc.. WARNING: Carefully test this release with any shell scripts (especially if you use a CI system to push DNS changes) as you upgrade from v1.5 to v2.2.
A special thanks to all the contributors, especially Jamie Lennox for the SoftLayer DNS provider (#59) and Craig Peterson for the NS1 DNS provider (#63).
๐ The SPF flattening feature is very exciting but needs more documentation.
Big changes:
- ๐ New command line flags framework (#177)
- ๐ Completely new docs homepage (#213)
- โ Add SPF flattening feature. (#126)
- โ Add TLSA record support (#165) (#203)
- ๐ NEW PROVIDER! SoftLayer (#59)
- ๐ NEW PROVIDER! Ns1 (#63)
- ๐ BIND: AAAA sort better (consistent and prettier)
- ๐ GANDI: Now supports SRV records (#192)
- GANDI: Now works large zones and >100 domains
Other notable changes:
- ๐ Fix GCLOUD integration test (#214)
- โก๏ธ Update vendored dependencies (#208)
- ๐ Improve docker support (fix ca-certs (#211), switch to alpine (#207))
- Pretty helpers.js (#205)
- Create a dynamic provider features matrix (#201)
- ๐ Document the release engineering process (#189)
- ๐ And a lot of documentation fixes and updates.
-
v0.2.1
September 27, 2017