[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 3.4.0 Released2020-11-19

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

3.4.0 - 2020-11-19
    * The default value of 'experimental_no_chain' has changed from false to
      true.  This change affects on-the-wire DNS responses in the case of a
      CNAME record which points to another record in the same zone. This is
      kind of an edge case for a semver minor version bump: this is not
      strictly a feature-add, but the behavioral change here is deep in the
      weeds most users will never see and has been about as widely tested as it
      can be without becoming a default like it is now.  In case of issues, it
      can still be disabled by explicitly configuring it to false (which will
      also emit an error to syslog at startup pleading for bug reports about
      any such necessary case).  This path seemed better than putting all the
      risks of this change in a future 4.0 release for the first time, where
      there would already be a ton of other core work built on top of it,
      making reversion much more difficult.
    * A new statistic 'tcp_acceptfail' was created to track all non-trivial
      failure returns from accept4().
    * The daemon now makes a soft, non-fatal attempt to raise the soft limit on
      total file descriptors if internal calculations indicate it may be too
      small for the configuration (especially tcp listener config).  It will
      complain to syslog on startup if it sees a potentially-bad fd limit
      situation that it can't fix due to the hard limits.
    * The TCP code now at least attempts to handle running into such a file
      descriptor limit more-gracefully by shutting down the most-idle of its
      older connections if possible, which is the same mechanism used by our
      existing internal limiter tcp_clients_per_thread.
    * Several sites in the code which may emit syslog errors driven by network
      input (e.g. recv() errors, accept4() errors, etc) now use a different
      logging call which applies some sanity-level ratelimiting to avoid
      excessive log spam.
    * max_edns_response[_v6] default values both changed to 1232, from previous
      defaults of 1410 and 1212, respectively.
    * The server now prefers the Linux IP_PMTUDISC_OMIT socket option over
      IP_PMTUDISC_DONT, when OMIT exists at compile time and works at runtime,
      which increases resilience against certain kinds of fragmentation
      attacks.