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
11 changes: 11 additions & 0 deletions docs/admin/release_notes/version_1.17.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@

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

- Add config parsing and update RUNNING_CONFIG_MAPPER for HP Network OS devices.

## [v1.17.3 (2026-07-07)](https://github.com/networktocode/netutils/releases/tag/v1.17.3)

### Added

- [#841](https://github.com/networktocode/netutils/issues/841) - Added TenGigE to TenGigabitEthernet interface mapping in BASE_INTERFACES.
- [#843](https://github.com/networktocode/netutils/issues/843) - Added a PYNTC lib mapper entry mapping the `cisco_xr` network driver to pyntc's `cisco_iosxr_ssh` device type.

## [v1.17.2 (2026-04-02)](https://github.com/networktocode/netutils/releases/tag/v1.17.2)

### Dependencies
Expand Down
1 change: 1 addition & 0 deletions docs/user/lib_mapper/pyntc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
| cisco_aireos_ssh || cisco_wlc |
| cisco_asa_ssh || cisco_asa |
| cisco_ios_ssh || cisco_ios |
| cisco_iosxr_ssh || cisco_xr |
| cisco_nxos_nxapi || cisco_nxos |
| f5_tmos_icontrol || bigip_f5 |
| juniper_junos_netconf || juniper_junos |
1 change: 1 addition & 0 deletions docs/user/lib_mapper/pyntc_reverse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
| cisco_nxos | → | cisco_nxos_nxapi |
| cisco_wlc | → | cisco_aireos_ssh |
| cisco_xe | → | cisco_ios_ssh |
| cisco_xr | → | cisco_iosxr_ssh |
| juniper_junos | → | juniper_junos_netconf |
1 change: 1 addition & 0 deletions netutils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
"TenGigabitEthernet": "TenGigabitEthernet",
"TenGigEthernet": "TenGigabitEthernet",
"TenGigEth": "TenGigabitEthernet",
"TenGigE": "TenGigabitEthernet",
"TenGig": "TenGigabitEthernet",
"TeGig": "TenGigabitEthernet",
"Ten": "TenGigabitEthernet",
Expand Down
2 changes: 2 additions & 0 deletions netutils/lib_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@
"cisco_aireos_ssh": "cisco_wlc",
"cisco_asa_ssh": "cisco_asa",
"cisco_ios_ssh": "cisco_ios",
"cisco_iosxr_ssh": "cisco_xr",
"cisco_nxos_nxapi": "cisco_nxos",
"f5_tmos_icontrol": "bigip_f5",
"juniper_junos_netconf": "juniper_junos",
Expand Down Expand Up @@ -525,6 +526,7 @@
"cisco_nxos": "cisco_nxos_nxapi",
"cisco_wlc": "cisco_aireos_ssh",
"cisco_xe": "cisco_ios_ssh", # no reverse
"cisco_xr": "cisco_iosxr_ssh",
"juniper_junos": "juniper_junos_netconf",
}

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 = "netutils"
version = "1.17.2"
version = "1.17.3"
description = "Common helper functions useful in network automation."
authors = ["Network to Code, LLC <opensource@networktocode.com>"]
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"received": "TwoGigabitEthernet1/0/1",
},
{"sent": {"interface": "Tw1/0/1"}, "received": "TwoGigabitEthernet1/0/1"},
{"sent": {"interface": "TenGigE0/0/0/1"}, "received": "TenGigabitEthernet0/0/0/1"},
{
"sent": {"interface": "SuperFastEth 1/0/1", "addl_name_map": {"SuperFastEth": "SuperFastEthernet"}},
"received": "SuperFastEthernet1/0/1",
Expand Down Expand Up @@ -154,6 +155,7 @@
"received": "Tw1/0/1",
},
{"sent": {"interface": "Tw1/0/1"}, "received": "Tw1/0/1"},
{"sent": {"interface": "TenGigE0/0/0/1"}, "received": "Te0/0/0/1"},
{
"sent": {
"interface": "SuperFastEth 1/0/1",
Expand Down
Loading