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.5

This commit is contained in:
Benedikt Rudolph 2019-02-22 19:09:21 +01:00
parent 85eac133e0
commit ae298b73d0
3 changed files with 16 additions and 3 deletions

View file

@ -1,5 +1,18 @@
1.11.4
1.11.5
This version brings a major redesign of the cache feature. The cache is more
efficient leading to fewer executions of birdc commands in high load scenarios.
Other improvements are:
* Fix testcase for /protocols/bgp
* New birdc query 'RoutesFilteredCount()'
* Queue for birdc commands, prevents running the same birdc command multiple
times in parallel on concurrent API requests.
* Cache: redesign cache structure, separation of Parsed and Meta cache
* allows independent cache access
* implement convenience methods for interaction with the cache
1.11.4
* Fix race condition between main() and InstallRateLimitReset()
* Fix endpoint /routes/count/table now returns integer instead of routes

View file

@ -1 +1 @@
1.11.4
1.11.5

View file

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