Skip to content

Commit

Permalink
Merge pull request #316 from nautobot/release/v2.2.4
Browse files Browse the repository at this point in the history
Release v2.2.4
  • Loading branch information
gsnider2195 authored Aug 8, 2024
2 parents 947c93e + a02bfda commit a6960fc
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/admin/compatibility_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
| ------------- | -------------------- | ------------- |
| 0.1.1-0.6.2 | 1.0.0 | 1.99.99 |
| 1.0.0 | 1.4.0 | 1.5.99 |
| 2.0.0 | 2.0.0 | 2.99.99 |
| 2.0.0-2.2.3 | 2.0.0 | 2.2.99 |
| 2.2.4 | 2.0.0 | 2.99.99 |

!!! note
MySQL support added in v0.5.0
7 changes: 6 additions & 1 deletion docs/admin/release_notes/version_2.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@

<!-- towncrier release notes start -->

## [v2.2.4 (2024-08-08)](https://github.com/nautobot/nautobot-app-circuit-maintenance/releases/tag/v2.2.4)

### Fixed

- [#312](https://github.com/nautobot/nautobot-app-circuit-maintenance/issues/312) - Fixed incorrect reference to nonexistent `raw_notification__date` field that caused errors under Django 4.2.

## [v2.2.3 (2024-07-03)](https://github.com/nautobot/nautobot-app-circuit-maintenance/releases/tag/v2.2.3)

### Documentation

- [#345](https://github.com/nautobot/nautobot-app-circuit-maintenance/issues/345) - Updated app config and urls to populate documentation link.


## [v2.2.2 (2024-06-04)](https://github.com/nautobot/nautobot-app-circuit-maintenance/releases/tag/v2.2.2)

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@ nav:
- Compatibility Matrix: "admin/compatibility_matrix.md"
- Release Notes:
- "admin/release_notes/index.md"
- v2.2: "admin/release_notes/version_2.2.md"
- v2.1: "admin/release_notes/version_2.1.md"
- v2.0: "admin/release_notes/version_2.0.md"
- v1.0: "admin/release_notes/version_1.0.md"
- v0.6: "admin/release_notes/version_0.6.md"
- v0.5: "admin/release_notes/version_0.5.md"
- v0.4: "admin/release_notes/version_0.4.md"
Expand Down
2 changes: 1 addition & 1 deletion nautobot_circuit_maintenance/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def get_extra_context(self, request, instance):
maintenance_note = models.Note.objects.filter(maintenance=instance)
circuits = models.CircuitImpact.objects.filter(maintenance=instance)
parsednotification = models.ParsedNotification.objects.filter(maintenance=instance).order_by(
"-raw_notification__date"
"-raw_notification__stamp"
)

return {
Expand Down
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-circuit-maintenance"
version = "2.2.3"
version = "2.2.4"
description = "Nautobot app to automatically handle Circuit Maintenances Notifications"
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit a6960fc

Please sign in to comment.