Skip to content
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/+main.housekeeping

This file was deleted.

1 change: 0 additions & 1 deletion changes/+oui-regex.housekeeping

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changes/oui-automation.housekeeping

This file was deleted.

31 changes: 31 additions & 0 deletions docs/admin/release_notes/version_1.19.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# v1.19 Release Notes

This document describes all new features and changes in the release. 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

- Major features or milestones

<!-- towncrier release notes start -->

## [v1.19.0 (2026-08-25)](https://github.com/networktocode/netutils/releases/tag/v1.19.0)

### Added

- [#596](https://github.com/networktocode/netutils/issues/596) - Added a library mapping for `ncclient` which is used for NETCONF communication.
- [#765](https://github.com/networktocode/netutils/issues/765) - Add a Library Mapper for LibreNMS obtained values in order to map with existing network_drivers.
- [#832](https://github.com/networktocode/netutils/issues/832) - Add bit, Kbit, Mbit to normalize bandwidth utility.
- [#873](https://github.com/networktocode/netutils/issues/873) - Added Aruba AOS-CX support to the Netmiko and Hier Config library mappers.

### Fixed

- [#775](https://github.com/networktocode/netutils/issues/775) - Fixed platform mappings to reconcile Netmiko driver support.
- [#795](https://github.com/networktocode/netutils/issues/795) - Fixed the incorrect running configuration command for `aruba_os`.
- [#833](https://github.com/networktocode/netutils/issues/833) - Fixed typo in Ansible mappings for `dell_os10`.
- [#859](https://github.com/networktocode/netutils/issues/859) - Fixed config parser failing to parse more than three consecutive banners, which caused "Unable to parse banner end." errors on configs with many banners (e.g. Cisco IOS).

### Housekeeping

- [#oui-automation](https://github.com/networktocode/netutils/issues/oui-automation) - Fix OUI automation and CI workflow to auto format.
- Rebaked from the cookie `main`.
- Update the regex for OUI data file gathering.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ nav:
- Uninstall: "admin/uninstall.md"
- Release Notes:
- "admin/release_notes/index.md"
- v1.19: "admin/release_notes/version_1.19.md"
- v1.17: "admin/release_notes/version_1.17.md"
- v1.16: "admin/release_notes/version_1.16.md"
- v1.15: "admin/release_notes/version_1.15.md"
Expand Down
1,576 changes: 901 additions & 675 deletions poetry.lock

Large diffs are not rendered by default.

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 = "netutils"
version = "1.18.1a0"
version = "1.19.1a0"
description = "Common helper functions useful in network automation."
authors = ["Network to Code, LLC <opensource@networktocode.com>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -188,7 +188,7 @@ show_error_codes = true
[tool.towncrier]
package = "netutils"
directory = "changes"
filename = "docs/admin/release_notes/version_1.18.md"
filename = "docs/admin/release_notes/version_1.19.md"
template = "development/towncrier_template.j2"
start_string = "<!-- towncrier release notes start -->"
issue_format = "[#{issue}](https://github.com/networktocode/netutils/issues/{issue})"
Expand Down
Loading