diff --git a/ChangeLog.md b/ChangeLog.md index e7a16d71..f0e0d703 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,6 +4,59 @@ Change Log All notable changes to the project are documented in this file. +[v2.11.0][] - 2023-05-20 +------------------------ + +> **Note:** this releases replaces built-in default checkip server +> http://api.ipify.org with the more reliable http://ifconfig.me/ip + +### Changes +- Add custom provider example for dnsmadeeasy.com +- Add wildcard support for Cloudflare +- New DDNS providers from DD-WRT, courtesy of Sebastian Gottschall: + - goip.de + - myonlineportal.net + - desec.io (a.k.a. dedyn.io) + - domaindiscount24.com + - dy.fi + - do.de (Domain-Offensive) + - Domopoli.de + - inwx + - It's DNS + - Joker.com + - all-inkl.com + - core-networks.de + - dnsever.com + - dnshome.de + - dnsmadeeasy.com + - dnsmax.com + - schokokeks.org + - variomedia.de + - udmedia.de + - moniker.com + - dyndns.it + - infomaniak.com + - oray.com + - simply.com + - mydns.jp + - myonlineportal.net + - namecheap.com + - regfish.de + - twodns.de +- Initial support for updating both ipv4 and ipv6 address for the same + provider, also by Sebastian Gottschall +- Add new command line options `-L` and `-S NAME` to list supported + providers and their respective details + +### Fixes +- Issue #398: add `success` as a valid generic response to DNS update +- Issue #402: fix use after free in logger at inadyn exit +- Issue #416: use dynv6 'auto' IP only if we have not detected an address +- Issue #424: replace unstable api.ipify.org with http://ifconfig.me +- Fix default checkip server for dnsexit.com +- Fix easydns response code problem + + [v2.10.0][] - 2022-11-12 ------------------------ @@ -915,7 +968,8 @@ First stable version. - port to pSOS -[UNRELEASED]: https://github.com/troglobit/inadyn/compare/v2.10.0...HEAD +[UNRELEASED]: https://github.com/troglobit/inadyn/compare/v2.11.0...HEAD +[v2.11.0]: https://github.com/troglobit/inadyn/compare/v2.10.0...v2.11.0 [v2.10.0]: https://github.com/troglobit/inadyn/compare/v2.9.1...v2.10.0 [v2.9.1]: https://github.com/troglobit/inadyn/compare/v2.9.0...v2.9.1 [v2.9.0]: https://github.com/troglobit/inadyn/compare/v2.8.1...v2.9.0 diff --git a/configure.ac b/configure.ac index 6a711097..3c92f9df 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.61) -AC_INIT([In-a-dyn], [2.11.0-rc1], [https://github.com/troglobit/inadyn/issues], +AC_INIT([In-a-dyn], [2.11.0], [https://github.com/troglobit/inadyn/issues], [inadyn], [https://troglobit.com/projects/inadyn/]) AC_CONFIG_AUX_DIR(aux) AM_INIT_AUTOMAKE([1.11 foreign dist-xz])