-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1664 from networktocode/release4_4_0
Release 4.4.0
- Loading branch information
Showing
11 changed files
with
460 additions
and
526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""CLI for acitool.""" | ||
|
||
import click | ||
|
||
from tests.test_development_scripts import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## What's Changed | ||
* fix if cleartext authentication is used on HSRP in NX-OS by @SaschaSchwarzKyndryl in https://github.com/networktocode/ntc-templates/pull/1616 | ||
* MikroTik RouterOS 'ping' template by @PavloSkliarenko in https://github.com/networktocode/ntc-templates/pull/1502 | ||
* Cisco ASA/FTD: OSPF areas in dotted decimal format by @dragonballbw3 in https://github.com/networktocode/ntc-templates/pull/1571 | ||
* Issue 1556 proposed fix by @collin-wicker in https://github.com/networktocode/ntc-templates/pull/1562 | ||
* Normalize etherchannel, lacp, and portchannel capture groups by @mjbear in https://github.com/networktocode/ntc-templates/pull/1585 | ||
* Changed Cisco NXOS show interface transceiver command parser to fix error with vendor ID by @SaschaSchwarzKyndryl in https://github.com/networktocode/ntc-templates/pull/1614 | ||
* bugfix - update wlc radius summary to handle AP Events Accounting line by @mjbear in https://github.com/networktocode/ntc-templates/pull/1618 | ||
* Create template for Cisco AireOS WLC `show boot` command by @mjbear in https://github.com/networktocode/ntc-templates/pull/1619 | ||
* Updates contributing. by @jvanderaa in https://github.com/networktocode/ntc-templates/pull/1629 | ||
* CiscoS300 'show vlan' template by @PavloSkliarenko in https://github.com/networktocode/ntc-templates/pull/1520 | ||
* Fix Type5 LSA for IOS OSPF DB by @jmcgill298 in https://github.com/networktocode/ntc-templates/pull/1630 | ||
* enhancement - support NXOS `show ip bgp` output with multiple VRFs by @mjbear in https://github.com/networktocode/ntc-templates/pull/1628 | ||
* New 'show vlans' template for cisco_ios by @chadell in https://github.com/networktocode/ntc-templates/pull/1631 | ||
|
||
## New Contributors | ||
* @dragonballbw3 made their first contribution in https://github.com/networktocode/ntc-templates/pull/1571 | ||
* @collin-wicker made their first contribution in https://github.com/networktocode/ntc-templates/pull/1562 | ||
* @chadell made their first contribution in https://github.com/networktocode/ntc-templates/pull/1631 | ||
|
||
**Full Changelog**: https://github.com/networktocode/ntc-templates/compare/v4.3.0...v4.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "ntc_templates" | ||
version = "4.3.0" | ||
version = "4.4.0" | ||
description = "TextFSM Templates for Network Devices, and Python wrapper for TextFSM's CliTable." | ||
authors = ["Network to Code <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Tasks for use with Invoke.""" | ||
|
||
import os | ||
import sys | ||
from invoke import task | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Tests that original from the developer test suite.""" | ||
|
||
import os | ||
import glob | ||
import numbers | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Tests to check the order of the index file.""" | ||
|
||
import re | ||
|
||
from tests import load_index_data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Test functions for tasks.py.""" | ||
|
||
import pytest | ||
|
||
from tasks import strtobool | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Ensure that testcases exist for all templates.""" | ||
|
||
import os | ||
import glob | ||
import re | ||
|