rrda

REST API allowing to perform DNS queries over HTTP
Log | Files | Refs | README | LICENSE

ChangeLog (1708B)


      1 RRDA 1.4.0 (2023-01-19)
      2 
      3 - Add a systemd unit file and document launching RRDA via systemd
      4 - Remove the Debian init script and its installation instructions
      5 - Remove the FreeBSD rc.d script and its installation instructions
      6 - Refactor the resolve function to allow passing a DNS class parameter
      7 - Pass dns.ClassINET when resolving from the 'ptr' and 'query' endpoint
      8 - Add an 'id' handler to identify a Name Server instance (RFC 4892)
      9 - Bump Go version to 1.19 in go.mod and update dependencies
     10 
     11 
     12 
     13 RRDA 1.3.0 (2022-11-21)
     14 
     15 - Allow setting a Timeout parameter through a net.Dialer (Thanks to
     16   Sebastien Couture)
     17 - Remove support for running in FastCGI mode
     18 - Refactor error handling for http.ListenAndServe()
     19 - Restore and refactor the "Listening on" message display
     20 
     21 
     22 
     23 RRDA 1.2.0 (2022-07-29)
     24 
     25 - Add SPDX short license identifier in source file
     26 - Switch to using chi for URL routing
     27 - Move the "Listening on" message after successful server startup
     28 
     29 
     30 
     31 RRDA 1.1.0 (2020-03-16)
     32 
     33 - Relicensed under the BSD 2-Clause license
     34 - Add support for running in FastCGI mode
     35 - Refactor host + port concatenation
     36 - Add a command line flag to display version
     37 - Switch back to using Msg.MsgHdr.Truncated, as dns.ErrTruncated is
     38   obsoleted
     39 - Migrate to Go modules
     40 - Minor fixes and improvements
     41 
     42 
     43 
     44 RRDA 1.02 (2016-02-24)
     45 
     46 - Adding CORS support by default
     47 - Updating import path for the 'idna' package, as code.google.com is
     48   now closed
     49 - Use error code returned by dns.Exchange() to detect truncated DNS
     50   messages
     51 
     52 
     53 
     54 RRDA 1.01 (2014-05-03)
     55 
     56 - Update to match Go DNS "IsDomainName" new prototype
     57 - Adding Debian init script
     58 - Adding FreeBSD rc.d script
     59 - Adding JSONP support
     60 
     61 
     62 
     63 RRDA 1.00 (2013-07-01)
     64 
     65 - Initial release