diff --git a/CHANGES.rst b/CHANGES.rst index 85a5f43a..512243e8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,25 @@ Change log .. note:: **Upgrade notes**: after upgrading, run the ``arouteserver setup-templates`` command to sync the local templates with those distributed with the new version. More details on the `Upgrading `__ section of the documentation. +1.17.0 +------ + +- New: add support for `BIRD 2.0.10 `__, also added to the integration testing suite. + +- New: add support for `OpenBGPD 7.5 `__, also added to the integration testing suite (portable edition only). + +- New (OpenBGPD): add support for ADD-PATH (on version 7.5 or above). + +- Improvement: abort the configuration building process as soon as one *enricher* fails. + + This shorten the user feedback in case of errors that unavoidably would make the final configuration broken and not usable. + +- Fix: remove ``RGNET`` from the list of default IRR sources. + + To remove it from existing deployments, or to add it back, users can edit the arouteserver.yml file, ``bgpq3_sources`` section. + + See also `GitHub issue 111 `__. + 1.16.1 ------ diff --git a/pierky/arouteserver/version.py b/pierky/arouteserver/version.py index 3372b8ad..566ffb3c 100644 --- a/pierky/arouteserver/version.py +++ b/pierky/arouteserver/version.py @@ -13,5 +13,5 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -__version__ = "1.16.1" # pragma: no cover +__version__ = "1.17.0" # pragma: no cover COPYRIGHT_YEAR = 2022 # pragma: no cover