This project is mirrored from https://github.com/coredns/coredns.git. The repository failed to update .
Repository mirroring has been paused due to too many failed attempts, and can be resumed by a project maintainer.
Last successful update .
  1. 17 Dec, 2018 4 commits
  2. 16 Dec, 2018 1 commit
  3. 15 Dec, 2018 1 commit
  4. 14 Dec, 2018 1 commit
  5. 12 Dec, 2018 2 commits
  6. 11 Dec, 2018 1 commit
  7. 10 Dec, 2018 1 commit
    • Miek Gieben's avatar
      map bool -> map struct{} (#2386) · 9abbf4a4
      Miek Gieben authored
      This clear out the remaining map[x]bool usage and moves the bool to an
      empty struct.
      
      Two note worthy other changes:
      
      * EnableChaos in the server is now also exported to make it show up in
        the documentation.
      * The auto plugin is left as is, because there the boolean is
        explicitaly set to false to signal 'to-be-deleted' and the key is left
        as-is.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      9abbf4a4
  8. 09 Dec, 2018 2 commits
  9. 08 Dec, 2018 4 commits
  10. 07 Dec, 2018 4 commits
  11. 06 Dec, 2018 1 commit
  12. 05 Dec, 2018 1 commit
  13. 04 Dec, 2018 1 commit
  14. 02 Dec, 2018 1 commit
  15. 01 Dec, 2018 3 commits
  16. 30 Nov, 2018 2 commits
    • Miek Gieben's avatar
      Remove benchmark from travis (#2350) · 95c9e14d
      Miek Gieben authored
      We're not doing anything with the data so stop doing it. Also makes
      travis 20% faster.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      95c9e14d
    • Miek Gieben's avatar
      Up to DNS version 1.1.0 (#2346) · 50ef7409
      Miek Gieben authored
      Upgrade to new dns lib version; that saw multiple improvements; some
      patch releases are in the pipeline.
      
      The big thing here is the removal of ErrTruncated, so we need to deal
      with this slightly different in the forward plugin. It removed the
      entire truncated.go logic and just checks the message for .Truncated (if
      there is a message) and retries with tcp.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      50ef7409
  17. 29 Nov, 2018 1 commit
  18. 28 Nov, 2018 1 commit
  19. 23 Nov, 2018 1 commit
  20. 21 Nov, 2018 3 commits
  21. 20 Nov, 2018 2 commits
  22. 16 Nov, 2018 2 commits
    • stuart nelson's avatar
      Set SOA record TTL as min of TTL/MINIMUM (#2295) · 8dbe1fbe
      stuart nelson authored
      * Set SOA record TTL as min of TTL/MINIMUM
      
      According to
      https://tools.ietf.org/html/rfc2308#section-3:
      
        The TTL of this record is set from the minimum
        of the MINIMUM field of the SOA record and the
        TTL of the SOA itself, and indicates how long a
        resolver may cache the negative answer.
      
      Set the TTL accordingly so as to not always
      negative cache SOA records for 300 seconds.
      
      * Inline min func
      
      * Update SOA record tests
      
      * Fix types
      8dbe1fbe
    • Miek Gieben's avatar
      Redo the plugin log PR (#2315) · 3f6dfba1
      Miek Gieben authored
      * Redo the plugin log PR
      
      Remove the code duplication and call of the "official" functions. This
      is the second(?) time we forgot to update the other half, so remove that
      problem entirely.
      
      Also add a test if the correct (within limits) time in front of the log
      line.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * Remove pFormat
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      3f6dfba1