-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from nautobot/mzbroch/release-2.0
Release 2.0
- Loading branch information
Showing
11 changed files
with
691 additions
and
533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Nautobot development configuration file.""" | ||
|
||
# pylint: disable=invalid-envvar-default | ||
import os | ||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# v2.0 Release Notes | ||
|
||
## Release Overview | ||
|
||
This release contains a fix for invalid ordering of PeerEndpoints in a Peering and a fix for missing tags. | ||
|
||
## Version 2.0 | ||
|
||
### Fixed | ||
|
||
- [#169](https://github.com/nautobot/nautobot-app-bgp-models/pull/169) - Implement ordering of PeerEndpoints in Peering | ||
- [#177](https://github.com/nautobot/nautobot-app-bgp-models/pull/177) - fix: 🐛 missing tags in serializers (Nautobot 2.x) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""BGP data models.""" | ||
|
||
import functools | ||
from collections import OrderedDict | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Basic tests that do not require Django.""" | ||
|
||
import unittest | ||
import os | ||
import toml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Unit test automation for Model classes in nautobot_bgp_models.""" | ||
|
||
import json | ||
|
||
from unittest import skipIf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nautobot-bgp-models" | ||
version = "0.20.1" | ||
version = "2.0" | ||
description = "Nautobot BGP Models App" | ||
authors = ["Network to Code, LLC <[email protected]>"] | ||
|
||
|
@@ -21,10 +21,10 @@ packages = [ | |
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.12" | ||
nautobot = "^2.0.3" | ||
toml = "^0.10.2" | ||
|
||
[tool.poetry.dev-dependencies] | ||
invoke = "*" | ||
toml = "*" | ||
black = "*" | ||
django-debug-toolbar = "*" | ||
yamllint = "*" | ||
|