From 8e5edef537aaf5c14470bb5c63766d48e9bbb759 Mon Sep 17 00:00:00 2001 From: jmcgill298 Date: Fri, 2 Oct 2020 19:19:47 -0400 Subject: [PATCH] Release 1.6.0 --- CHANGELOG | 38 +++++++++++++++++++++++++++++++++++ README.md | 4 ++++ lib/ntc_templates/__init__.py | 2 +- 3 files changed, 43 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 22a5468967..0c81a253eb 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,43 @@ # Changelog +## [1.6.0](https://github.com/networktocode/ntc-templates/tree/1.6.0) (2020-10-02) + +[Full Changelog](https://github.com/networktocode/ntc-templates/compare/v1.5.0...1.6.0) + +**Implemented enhancements:** + +- Creation of a Faq [\#716](https://github.com/networktocode/ntc-templates/issues/716) + +**Closed issues:** + +- This is not a data modeling project. So is there any data modeling project can work with this? [\#802](https://github.com/networktocode/ntc-templates/issues/802) +- Black 20.b0 breaks tox test [\#794](https://github.com/networktocode/ntc-templates/issues/794) +- Unable to Parse show version on IOSv Device [\#780](https://github.com/networktocode/ntc-templates/issues/780) +- TXTFSM will not process template even though Regex checker says line is acceptable for ciena SAOS [\#779](https://github.com/networktocode/ntc-templates/issues/779) +- cisco\_nxos\_show\_ip\_bgp\_summary.textfsm doesn't account for dual line bgp when output is too wide [\#766](https://github.com/networktocode/ntc-templates/issues/766) +- arista eos show mac address-table is choking on case sensitivity on line Total Mac Addresses for this criterion: 0 [\#764](https://github.com/networktocode/ntc-templates/issues/764) +- Cisco IOS - textfsm.parser.TextFSMError: State Error raised. Rule Line: 17. [\#718](https://github.com/networktocode/ntc-templates/issues/718) + +**Merged pull requests:** + +- changes tests to import from lib [\#806](https://github.com/networktocode/ntc-templates/pull/806) ([jmcgill298](https://github.com/jmcgill298)) +- modify for show inventory all. [\#804](https://github.com/networktocode/ntc-templates/pull/804) ([yshu95](https://github.com/yshu95)) +- Change TextFSM Windows failure to a runtime failure \(instead of an import failure\) [\#803](https://github.com/networktocode/ntc-templates/pull/803) ([ktbyers](https://github.com/ktbyers)) +- Added juniper\_junos\_show\_lldp\_neighbors [\#797](https://github.com/networktocode/ntc-templates/pull/797) ([qduk](https://github.com/qduk)) +- Bugfix: Re-formatted development\_scripts.py and tests/test\_testcases\_… [\#795](https://github.com/networktocode/ntc-templates/pull/795) ([mjuenema](https://github.com/mjuenema)) +- Fix typos in README.md [\#792](https://github.com/networktocode/ntc-templates/pull/792) ([epryan](https://github.com/epryan)) +- Detect hostname on NX-OS platforms [\#789](https://github.com/networktocode/ntc-templates/pull/789) ([Yakuza-UA](https://github.com/Yakuza-UA)) +- Cisco ASA show access-list command templates update. [\#783](https://github.com/networktocode/ntc-templates/pull/783) ([HideoYukutake](https://github.com/HideoYukutake)) +- Updates to include capture on single word, no number model number [\#781](https://github.com/networktocode/ntc-templates/pull/781) ([jvanderaa](https://github.com/jvanderaa)) +- Bugfix: Account for "powered-up" value in the output of nxos show module [\#774](https://github.com/networktocode/ntc-templates/pull/774) ([mtbutler07](https://github.com/mtbutler07)) +- Dual line support for Cisco NX-OS 'ip bgp summary' command [\#772](https://github.com/networktocode/ntc-templates/pull/772) ([rtkennedy](https://github.com/rtkennedy)) +- Arista eos show mac address table [\#765](https://github.com/networktocode/ntc-templates/pull/765) ([JoeyG1973](https://github.com/JoeyG1973)) +- New Template: cisco\_nxos\_show\_ip\_interface [\#761](https://github.com/networktocode/ntc-templates/pull/761) ([network-dave](https://github.com/network-dave)) +- New Template: cisco\_nxos\_show\_hsrp\_all [\#760](https://github.com/networktocode/ntc-templates/pull/760) ([network-dave](https://github.com/network-dave)) +- New Template: cisco\_nxos\_show\_license\_usage [\#759](https://github.com/networktocode/ntc-templates/pull/759) ([network-dave](https://github.com/network-dave)) +- New Template: cisco\_nxos\_show\_interface\_description [\#758](https://github.com/networktocode/ntc-templates/pull/758) ([network-dave](https://github.com/network-dave)) +- Fixes \#716 [\#753](https://github.com/networktocode/ntc-templates/pull/753) ([itdependsnetworks](https://github.com/itdependsnetworks)) + ## [1.5.0](https://github.com/networktocode/ntc-templates/tree/1.5.0) (2020-06-14) [Full Changelog](https://github.com/networktocode/ntc-templates/compare/v1.4.2...1.5.0) diff --git a/README.md b/README.md index 777595455e..08a57069fc 100644 --- a/README.md +++ b/README.md @@ -336,6 +336,10 @@ For any questions or comments, please feel free to swing by the [networktocode s Sign up [here](http://slack.networktocode.com/) +CHANGELOG +--------- + +Changelog should be generated using [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator) FAQ --- diff --git a/lib/ntc_templates/__init__.py b/lib/ntc_templates/__init__.py index e5ed6d99ee..1d0b6d9d36 100644 --- a/lib/ntc_templates/__init__.py +++ b/lib/ntc_templates/__init__.py @@ -1,3 +1,3 @@ """ntc_templates - Parse raw output from network devices and return structured data.""" -__version__ = "1.5.0" +__version__ = "1.6.0"