mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 09:41:54 +00:00
NEWS and version update
This commit is contained in:
parent
23f94b1368
commit
0e1fbaa5b2
30
NEWS
30
NEWS
@ -1,3 +1,33 @@
|
|||||||
|
Version 2.14 (2023-10-06)
|
||||||
|
o MPLS subsystem
|
||||||
|
o L3VPN: BGP/MPLS VPNs (RFC 4364)
|
||||||
|
o BGP: Access to unknown route attributes
|
||||||
|
o RAdv: Custom options
|
||||||
|
o Babel: RTT metric extension
|
||||||
|
o BMP: Refactored route monitoring
|
||||||
|
o BMP: Multiple instances of BMP protocol
|
||||||
|
o BMP: Both pre-policy and post-policy monitoring
|
||||||
|
o Experimental route aggregation
|
||||||
|
o Filter: Method framework
|
||||||
|
o Filter: Functions have return type statements
|
||||||
|
o Filter: New bytestring data type
|
||||||
|
o Kernel: Option to learn kernel routes
|
||||||
|
o Many bugfixes and improvements
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
|
||||||
|
User-defined filter functions that return values now should have return type
|
||||||
|
statements. We still accept functions without such statement, if they could be
|
||||||
|
properly typed.
|
||||||
|
|
||||||
|
For loops allowed to use both existing iterator variables or ones defined in
|
||||||
|
the for statement. We no longer support the first case, all iterator variables
|
||||||
|
must be defined in the for statement (e.g. 'for int i in bgp_path ...').
|
||||||
|
|
||||||
|
Due to oversight, VRF interfaces were not included in respective VRFs, this is
|
||||||
|
fixed now.
|
||||||
|
|
||||||
|
|
||||||
Version 2.13.1 (2023-06-23)
|
Version 2.13.1 (2023-06-23)
|
||||||
o BGP: Fix role check when no capability option is present
|
o BGP: Fix role check when no capability option is present
|
||||||
o Filter: Fixed segfault when a case option had an empty block
|
o Filter: Fixed segfault when a case option had an empty block
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: BIRD Internet Routing Daemon
|
Summary: BIRD Internet Routing Daemon
|
||||||
Name: bird
|
Name: bird
|
||||||
Version: 2.13.1
|
Version: 2.14
|
||||||
Release: 1
|
Release: 1
|
||||||
Copyright: GPL
|
Copyright: GPL
|
||||||
Group: Networking/Daemons
|
Group: Networking/Daemons
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#ifdef GIT_LABEL
|
#ifdef GIT_LABEL
|
||||||
#define BIRD_VERSION XSTR1(GIT_LABEL)
|
#define BIRD_VERSION XSTR1(GIT_LABEL)
|
||||||
#else
|
#else
|
||||||
#define BIRD_VERSION "2.13.1"
|
#define BIRD_VERSION "2.14"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Include parameters determined by configure script */
|
/* Include parameters determined by configure script */
|
||||||
|
Loading…
Reference in New Issue
Block a user