[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 1.11.0 Released2013-12-06

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

1.11.0 - 2013-12-06
    Bugfixes:-----------
      fixed edns-client-subnet issue with configurations that
        enclose a geoip resource within a metafo resource: the
        metafo plugin would clear the edns scope mask set by
        the geoip plugin in this case, but no longer does so.
      fixed a segfault that could occur when parsing an illegal
        configuration for the metafo and geoip plugins.
      misc improvements to warning/error outputs
      misc doc fixups
    Features/Changes:---
      New options 'udp_threads' and 'tcp_threads' (global or
        per-listen-address).  Both default to 1, which is
        the previous behavior.  If increased, SO_REUSEPORT
        is set on the affected listening sockets, and multiple
        sockets are bound to the same address with separate
        listening threads.  If SO_REUSEPORT is not available
        (as is the case for Linux kernels < 3.9), the options
        will be forced down to 1.
      New option 'zones_strict_data', similar to the old
        'strict_data' option, upgrades zone data warnings to
        full errors.  Defaults false.
      New commandline option '-S' temporarily enables
        'zones_strict_data' regardless of config-file setting,
        mostly useful for 'checkconf'
      New commandline option '-s', as above for 'zones_strict_startup'
      'listen' option: new values 'any' and 'scan'.  'any' uses
        the ANY-addresses (IPv4 + v6 as applicable), and 'scan'
        scans the interface list via getifaddrs() and configures
        each valid address as a separate listener, which is still
        the default behavior.  A warning has been added when using
        the implicit default 'scan' behavior, indicating that the
        default will change to the 'any' behavior in a future
        release.
      PTR records no longer do additional-section processing, as
        per the RFCs (not that any practical config ever made use
        of it anyways)
    Deprecations:-------
      The use of 'cnames' in the same resource as 'addrs_v[46]'
        in the 'weighted' plugin is deprecated.  Please migrate
        away from this by placing the cnames in a separate
        resource.
      'late_bind_secs' feature is deprecated, and should be
        unnecessary now that we fallback to attempting
        IP_FREEBIND (or the BSD equivalent) on initial bind()
        failure.
      'zones_rfc1035_strict_startup' option was renamed to
        'zones_strict_startup' with deprecated support for
        the old name.
      'tcp_clients_per_socket' option was renamed to
        'tcp_clients_per_thread' with deprecated support
        for the old name.
      'tcp_disabled' option deprecated in favor of setting
        the new 'tcp_threads' option to zero.
    *** NOTE *** Version 2.0.0 will be coming up soon, it could
       even potentially be the very next release.  2.0.0 will contain
       major feature work related to plugins, and (as the bump of
       the leading version number indicates) it won't be a fully
       backwards-compatible release.
     Most things that have become "deprecated" over the past
       several releases will have their backwards-compatibility
       removed in 2.0.0, and notably the plugin API will have
       substantial changes for any 3rd-party plugin code to
       accomodate.  You have been warned!