-
Notifications
You must be signed in to change notification settings - Fork 50
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 #322 from networktocode/develop
1.5.0 release
- Loading branch information
Showing
87 changed files
with
5,899 additions
and
1,620 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
allow: | ||
- dependency-type: "direct" |
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
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
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# v1.5 Release Notes | ||
|
||
## Release Overview | ||
|
||
- Added Mikrotik, fastiron, and Panos parsers. | ||
- Added function to allow conversion from Panos curly bracket to set format. | ||
- Updated Interface mappings for FourHundredGigabitEthernet and TwoGigabitEthernet. | ||
- Added Encryption/Decryption/Comparison for Cisco & Juniper Type 9. | ||
- Added Regex functions to primarily be used wihin your Jinja2 environment. | ||
|
||
## Announcements | ||
|
||
- Deprecation of compare_type5, compare_type7, encrypt_type7, encrypt_type5, and decrypt_type7 in favor of vendor namespaced functions, such as compare_cisco_type5 and decrypt_cisco_type7 to take place on netutils 2.0. | ||
- Support for Python 3.7 is dropped. | ||
|
||
## [v1.5.0] - 2023-07 | ||
|
||
### Added | ||
|
||
- [#223](https://github.com/networktocode/netutils/pull/223) Interface abbreviation for TwoGigabitEthernet. | ||
- [#227](https://github.com/networktocode/netutils/pull/227) Add functions for encrypting and decrypting junipter $9$ type passwords. | ||
- [#244](https://github.com/networktocode/netutils/pull/244) Added Mikrotik RouterOS Parser. | ||
- [#252](https://github.com/networktocode/netutils/pull/252) New lib mapper to translate between normalized network OS names and names used by hier_config. | ||
- [#253](https://github.com/networktocode/netutils/pull/253) Add encrypt_type9 (changed to encrypt_cisco_type9) function to netutils.password. | ||
- [#261](https://github.com/networktocode/netutils/pull/261) Added function get_upgrade_path to provide the step upgrade path of to a new version. | ||
- [#262](https://github.com/networktocode/netutils/pull/262) Added Palo Alto networks panos parser. | ||
- [#262](https://github.com/networktocode/netutils/pull/262) Added Palo Alto brace to set conversion function. | ||
- [#264](https://github.com/networktocode/netutils/pull/264) Added Ruckus fastiron parser. | ||
- [#285](https://github.com/networktocode/netutils/pull/285) Added FourHundredGigabitEthernet to REVERSE_MAPPING. | ||
- [#318](https://github.com/networktocode/netutils/pull/318) Added Regex functions to primarily be used wihin your Jinja2 environment. | ||
|
||
### Changed | ||
|
||
- [#213](https://github.com/networktocode/netutils/pull/213) Clarify when Python 3.6 support was dropped. | ||
- [#286](https://github.com/networktocode/netutils/pull/286) Move password helper names to be namespaced with vendor information. Assign new name to old name to not break semver. | ||
- [#317](https://github.com/networktocode/netutils/pull/317) Dropped Python 3.6 and bump version of dev dependencies. | ||
|
||
|
||
### Fixed | ||
|
||
- [#217](https://github.com/networktocode/netutils/pull/217) Moved where deletion of branch took place in workflow. | ||
- [#218](https://github.com/networktocode/netutils/pull/218) Create dependabot.yml to fix itdependsabot. | ||
- [#219](https://github.com/networktocode/netutils/pull/219) Fix vlanlist_to_config failing on empty list. | ||
- [#224](https://github.com/networktocode/netutils/pull/224) Add Interface type for Cisco App-hosting port. | ||
- [#284](https://github.com/networktocode/netutils/pull/284) Add -f to flatbot branch pushes. | ||
- [#304](https://github.com/networktocode/netutils/pull/304) Update hier_config docs and add fastiron to NAPALM mapper. | ||
- [#305](https://github.com/networktocode/netutils/pull/305) Fixed OS Version docs showing in mkdocs. | ||
- [#316](https://github.com/networktocode/netutils/pull/316) Update panos conversion function to strip out `devices localhost.localdomain`. | ||
- [#317](https://github.com/networktocode/netutils/pull/317) Fix Citrix mock tests file location to correctly run. |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# OS Version | ||
|
||
::: netutils.os_version | ||
options: | ||
show_submodules: True |
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,5 @@ | ||
# Regex | ||
|
||
::: netutils.regex | ||
options: | ||
show_submodules: True |
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
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,8 +1,8 @@ | ||
mkdocs==1.3.1 | ||
mkdocs==1.4.3 | ||
# Material for MkDocs theme | ||
mkdocs-material==8.3.9 | ||
mkdocs-material==8.5.8 | ||
# Render custom markdown for version added/changed/remove notes | ||
mkdocs-version-annotations==1.0.0 | ||
# Automatic documentation from sources, for MkDocs | ||
mkdocstrings==0.19 | ||
mkdocstrings-python==0.7.1 | ||
mkdocstrings==0.22.0 | ||
mkdocstrings-python==1.1.2 |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
| HIERCONFIG | | NORMALIZED | | ||
| ---------- | -- | ------ | | ||
| eos | → | arista_eos | | ||
| fastiron | → | ruckus_fastiron | | ||
| ios | → | cisco_ios | | ||
| iosxe | → | cisco_xe | | ||
| iosxr | → | cisco_xr | | ||
| nxos | → | cisco_nxos | |
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,8 @@ | ||
| NORMALIZED | | HIERCONFIG | | ||
| ---------- | -- | ------ | | ||
| arista_eos | → | eos | | ||
| cisco_ios | → | ios | | ||
| cisco_nxos | → | nxos | | ||
| cisco_xe | → | iosxe | | ||
| cisco_xr | → | iosxr | | ||
| ruckus_fastiron | → | fastiron | |
Oops, something went wrong.