Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main to develop post 0.9.1 #152

Merged
merged 8 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/admin/compatibility_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
2 changes: 1 addition & 1 deletion docs/admin/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 12 additions & 0 deletions docs/admin/release_notes/version_0.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <info@networktocode.com>"]

Expand Down
Loading