diff --git a/docs/admin/compatibility_matrix.md b/docs/admin/compatibility_matrix.md index 2e92528..3d6ba52 100644 --- a/docs/admin/compatibility_matrix.md +++ b/docs/admin/compatibility_matrix.md @@ -5,3 +5,5 @@ | 0.7.0 | 1.3.0 | 1.99.99 | | 0.7.1 | 1.5.4 | 1.99.99 | | 0.8.0 | 1.5.4 | 1.99.99 | +| 0.9.0 | 1.5.4 | 1.99.99 | +| 0.9.1 | 1.5.4 | 1.99.99 | diff --git a/docs/admin/install.md b/docs/admin/install.md index 16edf3c..dde03c5 100644 --- a/docs/admin/install.md +++ b/docs/admin/install.md @@ -5,7 +5,7 @@ Here you will find detailed instructions on how to **install** and **configure** ## Prerequisites -- The plugin is compatible with Nautobot 1.3.0 and higher. +- The plugin is compatible with Nautobot 1.5.4 and higher. - Databases supported: PostgreSQL, MySQL !!! note diff --git a/docs/admin/release_notes/version_0.9.md b/docs/admin/release_notes/version_0.9.md index 9c175a6..b19023a 100644 --- a/docs/admin/release_notes/version_0.9.md +++ b/docs/admin/release_notes/version_0.9.md @@ -7,6 +7,8 @@ This version introduces `PeerGroupAddressFamily` and `PeerEndpointAddressFamily` !!! warning This version **removes** the `import_policy`, `export_policy`, and `multipath` attributes from the `PeerGroupTemplate`, `PeerGroup`, and `PeerEndpoint` models, as these are generally address-family-specific configuration attributes and are modeled as such now. No data migration is provided at this time (as there is no way to identify **which** AFI-SAFI any existing policy/multipath configs should be migrated to), and upgrading to this version will therefore necessarily result in data loss if you had previously populated these model fields. Back up your configuration or record this data in some other format before upgrading if appropriate. +## Version 0.9.0 + ### Added - [#26](https://github.com/nautobot/nautobot-plugin-bgp-models/issues/26) - Adds `PeerGroupAddressFamily` and `PeerEndpointAddressFamily` data models. @@ -15,3 +17,13 @@ This version introduces `PeerGroupAddressFamily` and `PeerEndpointAddressFamily` ### Removed - [#132](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/132) - Removes `import_policy`, `export_policy`, and `multipath` attributes from `PeerGroupTemplate`, `PeerGroup`, and `PeerEndpoint` models. Use the equivalent fields on `PeerGroupAddressFamily` and `PeerEndpointAddressFamily` instead. + +### Dependencies + +- [#126](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/126) - Updated development dependencies `mkdocstrings` and `mkdocstrings-python` to `0.22` and `1.4.0` respectively to address CI failures. + +## Version 0.9.1 + +### Changed + +- [#150](https://github.com/nautobot/nautobot-plugin-bgp-models/pull/150) - Relaxed model validation of PeerEndpoint and PeerGroup to allow simultaneously setting `source_ip` and `source_interface` attributes. diff --git a/pyproject.toml b/pyproject.toml index 2f5ab17..0373461 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot-bgp-models" -version = "0.8.0" +version = "0.9.1" description = "Nautobot BGP Models Plugin" authors = ["Network to Code, LLC "]