Browse Source

Bump version to 2.6.0

Ask Bjørn Hansen 10 years ago
parent
commit
e2a531b301
3 changed files with 31 additions and 1 deletions
  1. 29 0
      CHANGES.md
  2. 1 0
      build
  3. 1 1
      geodns.go

+ 29 - 0
CHANGES.md

@@ -1,5 +1,34 @@
 # GeoDNS Changelog
 # GeoDNS Changelog
 
 
+## 2.6.0 October 4, 2015
+
+Leif Johansson:
+* Start new /status.json statistics end-point
+
+Alex Bligh:
+* Add ability to log to file.
+* Add option to make debugging queries private.
+* Fix race referencing config and other configuration system improvements.
+* Fix crash on removal of zonefile with invalid JSON (Issue #69)
+* Fix issue #74 - crash on reenabling previously invalid zone
+
+Ask Bjørn Hansen:
+* Fix critical data race in serve.go (and other rare races)
+* Optionally require basic authentication for http interface
+* Fix weighted CNAMEs (only return one)
+* Make /status.json dump all metrics from go-metrics
+* Update godeps (including miekg/dns)
+* StatHat bugfix when the configuration changed at runtime
+* ./build should just build, not install
+* Fix crash when removing an invalid zone file
+* Don't double timestamps when running under supervise
+* Require Go 1.4+
+* Internal improvements to metrics collection
+* Remove every minute logging of goroutine and query count
+* Add per-instance UUID to parsable status outputs (experimental)
+* Report Go version as part of the version reporting
+* Minor optimizations
+
 ## 2.5.0 June 5, 2015
 ## 2.5.0 June 5, 2015
 
 
 * Add resolver ASN and IP targeting (Ewan Chou)
 * Add resolver ASN and IP targeting (Ewan Chou)

+ 1 - 0
build

@@ -1,4 +1,5 @@
 #!/bin/sh
 #!/bin/sh
+# git describe --always --tags --dirty --long)
 REVISION=`git rev-parse --short=5  HEAD`
 REVISION=`git rev-parse --short=5  HEAD`
 BUILDTIME=`TZ=UTC date "+%Y-%m-%dT%H:%MZ"`
 BUILDTIME=`TZ=UTC date "+%Y-%m-%dT%H:%MZ"`
 echo $REVISION > REVISION
 echo $REVISION > REVISION

+ 1 - 1
geodns.go

@@ -33,7 +33,7 @@ import (
 )
 )
 
 
 // VERSION is the current version of GeoDNS
 // VERSION is the current version of GeoDNS
-var VERSION string = "2.5.0"
+var VERSION string = "2.6.0"
 var buildTime string
 var buildTime string
 var gitVersion string
 var gitVersion string