1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-09 00:00:05 +01:00

Increment version, add changelog for 1.11.4

This commit is contained in:
Benedikt Rudolph 2019-02-22 13:54:49 +01:00
parent 5279fe862f
commit 68beddef10
3 changed files with 17 additions and 2 deletions

View file

@ -1,4 +1,19 @@
1.11.4
* Fix race condition between main() and InstallRateLimitReset()
* Fix endpoint /routes/count/table now returns integer instead of routes
* Fix endpoint /routes/count/protocol now returns integer instead of routes
* Fix endpoint /routes/prefixed ignores URL paremeter
* Fix endpoint /symbols
* Fix TestParseProtocolBgp()
* Fix some filtered routes missing in /routes/dump
* Fix parser return correct type on error
* New endpoint for total number of best-paths '/routes/count/primary'
* Parser: support extended communities and test-cases
* Introduce new data structure for extended communities replacing the Parsed type
* Cache: avoid duplicate cache writes in Status()
1.11.3
* Move code to Alice-LG GitHub organization

View file

@ -1 +1 @@
1.11.3
1.11.4

View file

@ -18,7 +18,7 @@ import (
)
//go:generate versionize
var VERSION = "1.11.3"
var VERSION = "1.11.4"
func isModuleEnabled(module string, modulesEnabled []string) bool {
for _, enabled := range modulesEnabled {