-
Notifications
You must be signed in to change notification settings - Fork 51
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 #478 from networktocode/develop
Merge 1.7.0 into main
- Loading branch information
Showing
54 changed files
with
1,872 additions
and
167 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# v1.7 Release Notes | ||
|
||
## Release Overview | ||
|
||
- Added the ability to hash a value via `hash_data` function. | ||
- Added the ability to sort IPs a value via `get_ips_sorted` function. | ||
- Added lib_mapper entries for `ruckus_smartzone`, `cisco_xe`, `huawei` and `cisco_xr`. | ||
|
||
## [v1.7.0] - 2024-03 | ||
|
||
### Added | ||
|
||
- [#373](https://github.com/networktocode/netutils/pull/373) Added the ability to hash a value via `hash_data` function. | ||
- [#374](https://github.com/networktocode/netutils/pull/374) Added `ruckus_smartzone` to lib_mapper. | ||
- [#451](https://github.com/networktocode/netutils/pull/451) Added `forward` mappings. | ||
- [#473](https://github.com/networktocode/netutils/pull/473) Added the ability to sort IPs a value via `get_ips_sorted` function. | ||
|
||
### Changed | ||
|
||
- [#369](https://github.com/networktocode/netutils/pull/369) Update doc string example to include the import statement. | ||
- [#429](https://github.com/networktocode/netutils/pull/429) Updated `cisco_xe` mappings. | ||
- [#443](https://github.com/networktocode/netutils/pull/443) Updated `ansible` platform mappers. | ||
- [#466](https://github.com/networktocode/netutils/pull/466) Improve performance of jinja2_convenience_function by not importing NAPALM when called. | ||
|
||
### Fixed | ||
|
||
- [#429](https://github.com/networktocode/netutils/pull/429) Fixed `huawei` and `cisco_xr` mapping. | ||
- [#445](https://github.com/networktocode/netutils/pull/445) Fixed dual banner issue. |
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 @@ | ||
# Hash | ||
|
||
::: netutils.hash | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
| AERLEON | | NORMALIZED | | ||
| ---------- | -- | ------ | | ||
| arista | → | arista_eos | | ||
| aruba | → | aruba_aoscx | | ||
| brocade | → | ruckus_fastiron | | ||
| cisco | → | cisco_ios | | ||
| ciscoasa | → | cisco_asa | | ||
| cisconx | → | cisco_nxos | | ||
| ciscoxr | → | cisco_iosxr | | ||
| cloudarmor | → | cloudarmor | | ||
| gce | → | gce | | ||
| gcp_hf | → | gcp_hf | | ||
| ipset | → | ipset | | ||
| iptables | → | iptables | | ||
| juniper | → | juniper_junos | | ||
| juniperevo | → | juniper_evo | | ||
| k8s | → | k8s | | ||
| msmpc | → | juniper_msmpc | | ||
| nsxt | → | vmware_nsxt | | ||
| nsxv | → | vmware_nsxv | | ||
| openconfig | → | openconfig | | ||
| packetfilter | → | packetfilter | | ||
| paloalto | → | paloalto_panos | | ||
| pcap | → | pcap | | ||
| sonic | → | sonic | | ||
| speedway | → | speedway | | ||
| srx | → | juniper_srx | | ||
| srxlo | → | juniper_srx | | ||
| windows | → | windows | | ||
| windows_advfirewall | → | windows_advfirewall | |
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,31 @@ | ||
| NORMALIZED | | AERLEON | | ||
| ---------- | -- | ------ | | ||
| arista_eos | → | arista | | ||
| aruba_aoscx | → | aruba | | ||
| brocade_fastiron | → | brocade | | ||
| brocade_netiron | → | brocade | | ||
| cisco_asa | → | ciscoasa | | ||
| cisco_ios | → | cisco | | ||
| cisco_iosxr | → | ciscoxr | | ||
| cisco_nxos | → | cisconx | | ||
| cloudarmor | → | cloudarmor | | ||
| gce | → | gce | | ||
| gcp_hf | → | gcp_hf | | ||
| ipset | → | ipset | | ||
| iptables | → | iptables | | ||
| juniper_evo | → | juniperevo | | ||
| juniper_junos | → | juniper | | ||
| juniper_msmpc | → | msmpc | | ||
| juniper_srx | → | srxlo | | ||
| k8s | → | k8s | | ||
| openconfig | → | openconfig | | ||
| packetfilter | → | packetfilter | | ||
| paloalto_panos | → | paloalto | | ||
| pcap | → | pcap | | ||
| ruckus_fastiron | → | brocade | | ||
| sonic | → | sonic | | ||
| speedway | → | speedway | | ||
| vmware_nsxt | → | nsxt | | ||
| vmware_nsxv | → | nsxv | | ||
| windows_advfirewall | → | windows_advfirewall | | ||
| windows_ipsec | → | windows | |
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,30 @@ | ||
| CAPIRCA | | NORMALIZED | | ||
| ---------- | -- | ------ | | ||
| arista | → | arista_eos | | ||
| aruba | → | aruba_aoscx | | ||
| brocade | → | ruckus_fastiron | | ||
| cisco | → | cisco_ios | | ||
| ciscoasa | → | cisco_asa | | ||
| cisconx | → | cisco_nxos | | ||
| ciscoxr | → | cisco_iosxr | | ||
| cloudarmor | → | cloudarmor | | ||
| gce | → | gce | | ||
| gcp_hf | → | gcp_hf | | ||
| ipset | → | ipset | | ||
| iptables | → | iptables | | ||
| juniper | → | juniper_junos | | ||
| juniperevo | → | juniper_evo | | ||
| k8s | → | k8s | | ||
| msmpc | → | juniper_msmpc | | ||
| nsxt | → | vmware_nsxt | | ||
| nsxv | → | vmware_nsxv | | ||
| openconfig | → | openconfig | | ||
| packetfilter | → | packetfilter | | ||
| paloalto | → | paloalto_panos | | ||
| pcap | → | pcap | | ||
| sonic | → | sonic | | ||
| speedway | → | speedway | | ||
| srx | → | juniper_srx | | ||
| srxlo | → | juniper_srx | | ||
| windows | → | windows | | ||
| windows_advfirewall | → | windows_advfirewall | |
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,31 @@ | ||
| NORMALIZED | | CAPIRCA | | ||
| ---------- | -- | ------ | | ||
| arista_eos | → | arista | | ||
| aruba_aoscx | → | aruba | | ||
| brocade_fastiron | → | brocade | | ||
| brocade_netiron | → | brocade | | ||
| cisco_asa | → | ciscoasa | | ||
| cisco_ios | → | cisco | | ||
| cisco_iosxr | → | ciscoxr | | ||
| cisco_nxos | → | cisconx | | ||
| cloudarmor | → | cloudarmor | | ||
| gce | → | gce | | ||
| gcp_hf | → | gcp_hf | | ||
| ipset | → | ipset | | ||
| iptables | → | iptables | | ||
| juniper_evo | → | juniperevo | | ||
| juniper_junos | → | juniper | | ||
| juniper_msmpc | → | msmpc | | ||
| juniper_srx | → | srxlo | | ||
| k8s | → | k8s | | ||
| openconfig | → | openconfig | | ||
| packetfilter | → | packetfilter | | ||
| paloalto_panos | → | paloalto | | ||
| pcap | → | pcap | | ||
| ruckus_fastiron | → | brocade | | ||
| sonic | → | sonic | | ||
| speedway | → | speedway | | ||
| vmware_nsxt | → | nsxt | | ||
| vmware_nsxv | → | nsxv | | ||
| windows_advfirewall | → | windows_advfirewall | | ||
| windows_ipsec | → | windows | |
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,18 @@ | ||
| FORWARDNETWORKS | | NORMALIZED | | ||
| ---------- | -- | ------ | | ||
| ARISTA_EOS | → | arista_eos | | ||
| ARUBA_SWITCH | → | aruba_aoscx | | ||
| ASA | → | cisco_asa | | ||
| EXTREME_NOS | → | extreme_netiron | | ||
| F5 | → | bigip_f5 | | ||
| FORTINET | → | fortinet_fortios | | ||
| IOS | → | cisco_ios | | ||
| IOS_XE | → | cisco_ios | | ||
| IOS_XR | → | cisco_iosxr | | ||
| JUNOS | → | juniper_junos | | ||
| LINUX | → | linux | | ||
| LINUX_OVS_OFCTL | → | linux | | ||
| NETSCALER | → | netscaler | | ||
| NXOS | → | cisco_nxos | | ||
| PAN_OS | → | paloalto_panos | | ||
| SRX | → | juniper_junos | |
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,15 @@ | ||
| NORMALIZED | | FORWARDNETWORKS | | ||
| ---------- | -- | ------ | | ||
| arista_eos | → | ARISTA_EOS | | ||
| aruba_aoscx | → | ARUBA_SWITCH | | ||
| bigip_f5 | → | F5 | | ||
| cisco_asa | → | ASA | | ||
| cisco_ios | → | IOS | | ||
| cisco_iosxr | → | IOS_XR | | ||
| cisco_nxos | → | NXOS | | ||
| extreme_netiron | → | EXTREME_NOS | | ||
| fortinet_fortios | → | FORTINET | | ||
| juniper_junos | → | JUNOS | | ||
| linux | → | LINUX | | ||
| netscaler | → | NETSCALER | | ||
| paloalto_panos | → | PAN_OS | |
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
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
Oops, something went wrong.