[rss] RSS Feed Version 3.8.2 Released 2024-01-04 Version 3.8.1 Released 2023-02-22 Version 3.8.0 Released 2021-08-13 Version 3.7.0 Released 2021-06-08 Version 3.6.0 Released 2021-02-24 Version 3.5.2 Released 2021-02-23 Version 3.5.1 Released 2021-02-10 Version 3.5.0 Released 2021-01-11 Version 3.4.2 Released 2021-01-11 Version 3.4.1 Released 2020-11-20 Version 3.4.0 Released 2020-11-19 Version 3.3.0 Released 2020-09-09 Version 3.2.2 Released 2020-02-19 Version 3.2.1 Released 2019-07-19 Version 2.4.3 Released 2019-07-19 Version 3.2.0 Released 2019-05-05 Version 3.1.0 Released 2019-03-30 Version 3.0.1 Released 2019-03-04 Version 3.0.0 Released 2019-02-15 Version 2.4.2 Released 2019-02-11 Version 2.4.1 Released 2019-01-10 Version 2.4.0 Released 2018-02-15 Version 2.3.1 Released 2018-02-15 Version 2.2.5 Released 2018-02-15 Version 2.3.0 Released 2017-11-20 Version 2.2.4 Released 2016-04-14 Version 2.2.3 Released 2016-03-23 Version 2.2.2 Released 2016-01-06 Version 2.2.1 Released 2015-08-05 Version 2.1.3 Released 2015-08-05 Version 2.1.2 Released 2015-05-06 Version 2.2.0 Released 2014-12-30 Version 2.1.1 Released 2014-12-30 Version 2.1.0 Released 2014-10-14 New Repo Url 2014-10-09 Version 2.0.0 Released 2014-10-02 Version 1.11.5 Released 2014-09-10 Version 1.11.4 Released 2014-07-18 Version 1.11.3 Released 2014-05-14 Version 1.11.2 Released 2014-02-27 Version 1.11.1 Released 2014-01-11 Version 1.11.0 Released 2013-12-06 Version 1.10.1 Released 2013-10-04 Version 1.10.0 Released 2013-09-04

Version 2.3.0 Released2017-11-20

Source tarball and GPG signature available at: https://github.com/gdnsd/gdnsd/releases/

2.3.0 - 2017-11-20
  *** Bugfixes:
    * Comments at the end of RRs using RFC 3597 syntax now work properly with
      whitespace, fixes Github issue 147.
    * UDPv6 listening sockets no longer fail fatally if IPV6_DONTFRAG cannot be
      set on them, possibly fixing Github issue 115 for some OpenVZ+Debian
      installations.
  *** Features:
    * any_mitigation - New boolean config option, default true.  When
      enabled, gdnsd sends empty truncated responses to ANY queries over
      UDP, which mitigates their use in amplified reflection attacks and
      forces legitimate clients to use TCP for these queries.  In the
      future, the behavior of this option may be relaxed in combination with
      other more-general mitigation strategies such as RRL and/or cookies.
    * The configuration language's $include{} directive now supports
      including whole directories or glob wildcards.  The previous behavior
      was to treat the include pathname as a singular literal filename.  The
      new behavior first checks whether the pathname is the literal name of
      an existing directory.  If so, all files within will be included (as
      if the glob pattern "/*" were appended), and it will not be an error
      if no matching files exist.  Otherwise, the pathname is treated as a
      glob wildcard match, and it will be an error if no matches exist.
    * plugin_extmon has a new per-service option 'max_proc' which defaults to
      zero.  If non-zero, this sets the limit on the number of concurrent
      commands that will be run.  If the limit is exceeded, excess commands are
      rescheduled for 0.1 seconds later. After a few runs, the processes will
      be spread out enough to run without running into the limit.  This avoids
      thundering herds of subprocess executions at startup in large
      configurations.  Contributed by ScaleEngine / Alan Jude.
    * CAA records are now natively supported in the normal rdata format from
      RFC 6844.  CAA records continue to be supported in RFC 3597 generic
      format as well, although this is not recommended going forward.
    * plugin_geoip has a new top-level option "undefined_datacenters_ok", which
      allows resources to leave some of their map's datacenters undefined.
      Enabling this can be dangerous, see warnings in the documentation.