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

Sync main to develop post 2.1.0 #260

Merged
merged 3 commits into from
Aug 8, 2024
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
1 change: 0 additions & 1 deletion changes/212.fixed

This file was deleted.

3 changes: 0 additions & 3 deletions changes/213.added

This file was deleted.

1 change: 0 additions & 1 deletion changes/218.housekeeping

This file was deleted.

1 change: 0 additions & 1 deletion changes/229.housekeeping

This file was deleted.

1 change: 0 additions & 1 deletion changes/258.added

This file was deleted.

1 change: 0 additions & 1 deletion changes/258.fixed

This file was deleted.

1 change: 0 additions & 1 deletion changes/8.housekeeping

This file was deleted.

3 changes: 2 additions & 1 deletion docs/admin/compatibility_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
| 1.0.X | 1.2.0 | 1.5.99 |
| 1.1.X | 1.4.0 | 1.5.99 |
| 1.2.X | 1.4.0 | 1.5.99 |
| 2.0.X | 2.0.0 | 2.9999 |
| 2.0.X | 2.0.0 | 2.2.99 |
| 2.1.X | 2.0.0 | 2.99.99 |
27 changes: 27 additions & 0 deletions docs/admin/release_notes/version_2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# v2.1 Release Notes

This document describes all new features and changes in the release `2.1`. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Release Overview

This release includes various housekeeping updates and adds support for Nautobot v2.3.0.

<!-- towncrier release notes start -->
## [v2.1.0 (2024-08-07)](https://github.com/nautobot/nautobot-app-firewall-models/releases/tag/v2.1.0)

### Added

- [#213](https://github.com/nautobot/nautobot-app-firewall-models/issues/213) - Added `invoke generate-app-config-schema` command to generate a JSON schema for the App config.
- [#213](https://github.com/nautobot/nautobot-app-firewall-models/issues/213) - Added `invoke validate-app-config` command to validate the App config against the schema.
- [#213](https://github.com/nautobot/nautobot-app-firewall-models/issues/213) - Added App config JSON schema.
- [#258](https://github.com/nautobot/nautobot-app-firewall-models/issues/258) - Added migration to support Django 4.

### Fixed

- [#258](https://github.com/nautobot/nautobot-app-firewall-models/issues/258) - Fixed IPRangeSerializer requiring vrf field.

### Housekeeping

- [#8](https://github.com/nautobot/nautobot-app-firewall-models/issues/8), [#229](https://github.com/nautobot/nautobot-app-firewall-models/issues/229) - Re-baked from the latest template.
- [#212](https://github.com/nautobot/nautobot-app-firewall-models/issues/212) - Fixed ruff excludes to use per-file excludes instead of global excludes.
- [#218](https://github.com/nautobot/nautobot-app-firewall-models/issues/218) - Rebaked using `nautobot-app-v2.1.0` cookiecutter template tag.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ nav:
- Compatibility Matrix: "admin/compatibility_matrix.md"
- Release Notes:
- "admin/release_notes/index.md"
- v2.1: "admin/release_notes/version_2.1.md"
- v2.0: "admin/release_notes/version_2.0.md"
- v1.2: "admin/release_notes/version_1.2.md"
- v1.1: "admin/release_notes/version_1.1.md"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nautobot-firewall-models"
version = "2.0.3"
version = "2.1.1b1"
description = "Nautobot app to model firewall objects."
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -162,7 +162,7 @@ build-backend = "poetry.core.masonry.api"
[tool.towncrier]
package = "nautobot_firewall_models"
directory = "changes"
filename = "docs/admin/release_notes/version_X.Y.md"
filename = "docs/admin/release_notes/version_2.1.md"
template = "development/towncrier_template.j2"
start_string = "<!-- towncrier release notes start -->"
issue_format = "[#{issue}](https://github.com/nautobot/nautobot-app-firewall-models/issues/{issue})"
Expand Down