Releases: networktocode/pyntc
Releases · networktocode/pyntc
v2.0.1
[2.0.1] 09-2024
Added
- 311 Extend cisco_ios set_boot_options method.
Fixed
- 312 Fix Arista EOS file copy issues.
New Contributors
- @juanjtomasg made their first contribution in #289
- @alhogan made their first contribution in #312
Full Changelog: v2.0.0...v2.0.1
Release 2.0.0
v1.0.2
Release 1.0.1
What's Changed
- Fix default ports. by @pszulczewski in #300
- Release 1.0.1 by @pszulczewski in #301
New Contributors
- @pszulczewski made their first contribution in #300
Full Changelog: v1.0.0...v1.0.1
v1.0.0
[1.0.0] 04-2023
Added
- 270 Add additional properties to ASA and AIREOS.
- 271 Add default logging for all devices and overall library.
- 280 Add the
wait_for_reload
argument fromreboot
method throughout library. Defaults to False to keep current code backward compatible, If set to True the reboot method waits for the device to finish the reboot before returning.
Changed
Deprecated
- 269 Remove
show_list
andconfig_list
methods asa and ios. Add default functionality toshow
andconfig
to handle str and list. - 275 Remove python ABC (abstract base classes) as they were not required.
- 275 Remove
show_list
andconfig_list
methods for the rest of device drivers. Add default functionality toshow
andconfig
to handle str and list. - 280 Remove the use of
signal
modules within Cisco drivers. This will allow for reboots to be able to be handled within threads. - 280 Remove the
timer
argument fromreboot
method throughout library. Compatibility matrix on which versions, vendors support it became to much to maintain.
Full Changelog: v0.20.3...v1.0.0
v0.20.3
v0.20.2
What's Changed
- Linked to issue #242 Install mode issue by @shenglong in #243
- Update CODEOWNERS by @jeffkala in #241
New Contributors
- @shenglong made their first contribution in #243
Full Changelog: v0.20.1...v0.20.2
v0.20.1: Merge pull request #238 from networktocode/release-0.20-new
[0.20.1]
Fixed
- Tox pipeline black linting issue.
v0.18.0: Merge pull request #221 from networktocode/develop
Added
- IOSXEWLCDevice device Driver.
Fixed
- IOS
rollback()
method derives filesystem name using_get_file_system()
method to discover it from system.
v0.17.0
Added
- ASADevice supports connecting to HA Peer
- ASADevice
connected_interface
,ip_address
,ipv4_addresses
,ipv6_addresses
,ip_protocol
,peer_device
,peer_ip_address
,peer_ipv4_addresses
,peer_ipv6_addresses
, properties - ASADevice
enable_scp
,reboot_standby
methods - IOSDevice now supports setting
fast_cli
on Netmiko driver
Changed
- All Drivers
reboot
no longer acceptsconfirm
argument - AIREOSDevice
transfer_image_to_ap
attempts to check that install image matches expected value multiple times. - ASADevice
file_copy
now supports transferring files to active and standby devices - EOSDevice
config
method accepts a list of commands - EOSDevice
show
method accepts a list of commands - JUNOSDevice
config
method accepts a list of commands - JUNOSDevice
show
method accepts a list of commands
Fixed
- Account for additional output for verify if OS Image is booted
- Handle Upgrades by disabling
fast_cli
during reboot process