diff --git a/CHANGELOG b/CHANGELOG index 8d2371c..52daf12 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/VERSION b/VERSION index 0a5af26..3d0e623 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.11.3 +1.11.4 diff --git a/birdwatcher.go b/birdwatcher.go index 6685243..db0b699 100644 --- a/birdwatcher.go +++ b/birdwatcher.go @@ -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 {