From 5082921cf9e386ed91212a3c8a7a81d862408520 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Fri, 9 Aug 2024 11:32:53 -0600 Subject: [PATCH] docs(changelog): version 1.16.0 [citest skip] Update changelog and .README.html for version 1.16.0 Signed-off-by: Rich Megginson --- .README.html | 14 ++++++++------ CHANGELOG.md | 12 ++++++++++++ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.README.html b/.README.html index 8079d609..0dc6008a 100644 --- a/.README.html +++ b/.README.html @@ -829,12 +829,14 @@

ip

given in the route option. The default value is an empty list. Each route is a dictionary with the following entries: gateway, metric, network, -prefix, table and type. -network and prefix specify the destination -network. table supports both the numeric table and named -table. In order to specify the named table, the users have to ensure the -named table is properly defined in /etc/iproute2/rt_tables -or /etc/iproute2/rt_tables.d/*.conf. The optional +prefix, src, table and +type. network and prefix specify +the destination network. src specifies the source IP +address for a route. table supports both the numeric table +and named table. In order to specify the named table, the users have to +ensure the named table is properly defined in +/etc/iproute2/rt_tables or +/etc/iproute2/rt_tables.d/*.conf. The optional type key supports the values blackhole, prohibit, and unreachable. See man diff --git a/CHANGELOG.md b/CHANGELOG.md index efd50ead..44944b95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Changelog ========= +[1.16.0] - 2024-08-09 +-------------------- + +### New Features + +- feat: Add the support for the optional route source parameter in nm provider (#714) + +### Other Changes + +- ci: Add workflow for ci_test bad, use remote fmf plan (#712) +- ci: Fix missing slash in ARTIFACTS_URL (#713) + [1.15.6] - 2024-08-01 --------------------