Skip to content

Commit ffdaab1

Browse files
authored
Merge pull request #283 from nautobot/prepare-1.6.0
Release 1.6.0
2 parents 683e6d8 + e569537 commit ffdaab1

File tree

4 files changed

+38
-2
lines changed

4 files changed

+38
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# CHANGELOG
22

3+
## [v1.6.0] - 2024-01-26
4+
### Added
5+
- [#217](https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/pull/217) - Adds new tab "Contract devices" to the Contract details view. Adds "Contract devices" export feature to the Contract details view. Adds new tab "Contract inventory items" to the Contract details view. Adds "Contract inventory items" export feature to the Contract details view. Linting targeting Python 3.8
6+
7+
### Fixed
8+
- [#275](https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/pull/275) - Updated in cve_tracking.py job in order to get the Related Software Relationships fetched from the CVELVM database query. That way we reduce the DB queries and the overall execution time of the Job.
9+
- [#248](https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/pull/248) - Fixes issue with number field not showing up in UI and API. Fixes model validation to match UI validation. This ensures provider and contract_type fields are set. Adds missing tests. Addresses #242.
10+
- [#259](https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/pull/259) - Fixes incorrect query used to generate nautobot_lcm_hw_end_of_support_per_part_number metric.
11+
12+
313
## [v1.3.3] - 2023-09-29
414

515
### Changed

docs/admin/compatibility_matrix.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
| Device Lifecycle Management Version | Nautobot First Support Version | Nautobot Last Support Version |
44
| ------------- | -------------------- | ------------- |
5-
| 1.3.X | 1.4.0 | 1.5.X |
5+
| 1.6.X | 1.4.0 | 1.6.X |
6+
| 1.3.X | 1.4.0 | 1.6.X |
67
| 1.2.X | 1.4.0 | 1.5.X |
78
| 1.1.X | 1.2.0 | 1.5.9 |
89
| 1.0.X | 1.1.6 | 1.5.9 |
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# v1.6 Release Notes
2+
3+
This document describes all new features and changes in the release `1.6.X`. 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).
4+
5+
## Release Overview
6+
This release includes ltm1.6 support and some of the following highlights:
7+
8+
- Adds new tab "Contract devices" to the Contract details view.
9+
- Adds "Contract devices" export feature to the Contract details view.
10+
- Adds new tab "Contract inventory items" to the Contract details view.
11+
- Adds "Contract inventory items" export feature to the Contract details view.
12+
- Linting targeting Python 3.8
13+
- Updated in cve_tracking.py job in order to get the Related Software Relationships fetched from the CVELVM database query. That way we reduce the DB queries and the overall execution time of the Job.
14+
- Fixes issue with number field not showing up in UI and API. Fixes model validation to match UI validation. This ensures provider and contract_type fields are set. Adds missing tests. Addresses #242.
15+
- Fixes incorrect query used to generate nautobot_lcm_hw_end_of_support_per_part_number metric.
16+
17+
18+
## [v1.6.0] - 2024-01-26
19+
### Added
20+
- [#217](https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/pull/217) - Adds new tab "Contract devices" to the Contract details view. Adds "Contract devices" export feature to the Contract details view. Adds new tab "Contract inventory items" to the Contract details view. Adds "Contract inventory items" export feature to the Contract details view. Linting targeting Python 3.8
21+
22+
### Fixed
23+
- [#275](https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/pull/275) - Updated in cve_tracking.py job in order to get the Related Software Relationships fetched from the CVELVM database query. That way we reduce the DB queries and the overall execution time of the Job.
24+
- [#248](https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/pull/248) - Fixes issue with number field not showing up in UI and API. Fixes model validation to match UI validation. This ensures provider and contract_type fields are set. Adds missing tests. Addresses #242.
25+
- [#259](https://github.com/nautobot/nautobot-app-device-lifecycle-mgmt/pull/259) - Fixes incorrect query used to generate nautobot_lcm_hw_end_of_support_per_part_number metric.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nautobot-device-lifecycle-mgmt"
3-
version = "1.3.1"
3+
version = "1.6.0"
44
description = "Manages device lifecycles for platforms and software."
55
authors = ["Network to Code, LLC <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)