Skip to content

Commit

Permalink
Merge pull request #1664 from networktocode/release4_4_0
Browse files Browse the repository at this point in the history
Release 4.4.0
  • Loading branch information
pszulczewski committed Mar 14, 2024
2 parents b14e0bf + 8c79afb commit 16df141
Show file tree
Hide file tree
Showing 11 changed files with 460 additions and 526 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM python:${PYTHON_VER}-slim
# hadolint ignore=DL3005,DL3008,DL3013
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install --no-install-recommends -y git mime-support curl libxml2 libmariadb3 openssl && \
apt-get install --no-install-recommends -y git mime-support curl libxml2 libmariadb3 openssl gcc musl-dev python3-dev && \
apt-get autoremove -y && \
apt-get clean all && \
rm -rf /var/lib/apt/lists/* && \
Expand Down
1 change: 1 addition & 0 deletions cli.py
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 (
Expand Down
21 changes: 21 additions & 0 deletions docs/admin/release_notes/version_4.4.md
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
1 change: 1 addition & 0 deletions ntc_templates/parse.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ntc_templates.parse."""

import os

# Due to TextFSM library issues on Windows, it is better to not fail on import
Expand Down
954 changes: 430 additions & 524 deletions poetry.lock

Large diffs are not rendered by default.

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 = "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"
Expand Down
1 change: 1 addition & 0 deletions tasks.py
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
Expand Down
1 change: 1 addition & 0 deletions tests/test_development_scripts.py
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
Expand Down
1 change: 1 addition & 0 deletions tests/test_index_order.py
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
Expand Down
1 change: 1 addition & 0 deletions tests/test_tasks.py
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
Expand Down
1 change: 1 addition & 0 deletions tests/test_testcases_exists.py
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
Expand Down

0 comments on commit 16df141

Please sign in to comment.