-
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 #192 from networktocode/develop
Release 1.4.0
- Loading branch information
Showing
62 changed files
with
78,673 additions
and
100 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 |
---|---|---|
@@ -1,27 +1,50 @@ | ||
--- | ||
name: "Flat" | ||
|
||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
branches: | ||
- "main" | ||
on: # yamllint disable-line rule:truthy | ||
schedule: | ||
- cron: "0 8 * * 4" | ||
|
||
jobs: | ||
scheduled: | ||
data_gathering: | ||
runs-on: "ubuntu-latest" | ||
env: | ||
BRANCH_NAME: "OUI_Updates" | ||
steps: | ||
# Checkout repo | ||
- name: "Check out code" | ||
uses: "actions/checkout@v2" | ||
with: | ||
ref: "develop" | ||
# Create branch for Flatbot | ||
- name: "Create Flatbot branch" | ||
run: "git checkout -b $BRANCH_NAME" | ||
# Push new branch so Flatbot can make its commit | ||
- name: "Push Flatbot branch" | ||
run: "git push --set-upstream origin $BRANCH_NAME" | ||
# This step installs Deno, which is a new Javascript runtime that improves on Node. Can be used for an optional postprocessing step | ||
- name: "Setup deno" | ||
uses: "denoland/setup-deno@main" | ||
with: | ||
deno-version: "v1.10.x" | ||
# Check out the repository so it can read the files inside of it and do other operations | ||
- name: "Check out repo" | ||
uses: "actions/checkout@v2" | ||
# The Flat Action step. We fetch the data in the http_url and save it as downloaded_filename | ||
- name: "Fetch data" | ||
uses: "githubocto/flat@v3" | ||
with: | ||
http_url: "https://standards-oui.ieee.org" | ||
downloaded_filename: "./netutils/oui_mappings.py" | ||
downloaded_filename: "./netutils/data_files/oui_mappings.py" | ||
postprocess: "./flat_postprocess/oui_postprocess.ts" | ||
pr_creation: | ||
runs-on: "ubuntu-latest" | ||
needs: "data_gathering" | ||
steps: | ||
# Checkout repo | ||
- name: "Check out code" | ||
uses: "actions/checkout@v2" | ||
with: | ||
ref: "OUI_Updates" | ||
# Create PR from branch created above into develop | ||
- name: "Create a Pull Request" | ||
run: "gh pr create -B develop -H OUI_Updates --title 'Flatbot OUI File Updates' --body 'Created by Flatbot action'" | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
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,33 @@ | ||
# v1.4 Release Notes | ||
|
||
## Release Overview | ||
|
||
- Added is_classful utility function. | ||
- Added AOS-CX, IOS-XR, MRV_OPTISWITCH, and EXTREME_NETIRON parsers. | ||
- Update flatbot CI process. | ||
- Fix and cleanup tests and parser information. | ||
- Fix tcp_ping behavior. | ||
|
||
## [v1.4.0] - 2023-01 | ||
|
||
### Added | ||
|
||
- [#163](https://github.com/networktocode/netutils/pull/163) Added IP `is_classfull` utility function. | ||
- [#172](https://github.com/networktocode/netutils/pull/172) Added Aruba AOS-CX Parser. | ||
- [#177](https://github.com/networktocode/netutils/pull/177) Added IOS-XR Parser. | ||
- [#182](https://github.com/networktocode/netutils/pull/182) Added Mrv Optiswitch Parser. | ||
- [#182](https://github.com/networktocode/netutils/pull/182) Added Extreme Netiron Parser. | ||
|
||
### Changed | ||
|
||
- [#178](https://github.com/networktocode/netutils/pull/178) Update OUI flatbot CI process. | ||
|
||
### Fixed | ||
|
||
- [#173](https://github.com/networktocode/netutils/pull/173) Fixes classfull address naming. | ||
- [#183](https://github.com/networktocode/netutils/pull/183) Updates parser folder info, fix aruba tests. | ||
- [#181](https://github.com/networktocode/netutils/pull/181) Fixes incorrect behavior when calling tcp_ping with timeout >= 3. | ||
|
||
### Removed | ||
|
||
- [#184](https://github.com/networktocode/netutils/pull/184) Removed redundant `__init__` methods on Parser classes. |
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,13 +1,17 @@ | ||
| OS Name | Parser Class | | ||
| ---------- | ------ | | ||
| arista_eos | netutils.config.parser.EOSConfigParser | | ||
| aruba_aoscx | netutils.config.parser.ArubaConfigParser | | ||
| bigip_f5 | netutils.config.parser.F5ConfigParser | | ||
| cisco_aireos | netutils.config.parser.AIREOSConfigParser | | ||
| cisco_asa | netutils.config.parser.ASAConfigParser | | ||
| cisco_ios | netutils.config.parser.IOSConfigParser | | ||
| cisco_iosxr | netutils.config.parser.IOSXRConfigParser | | ||
| cisco_nxos | netutils.config.parser.NXOSConfigParser | | ||
| citrix_netscaler | netutils.config.parser.NetscalerConfigParser | | ||
| extreme_netiron | netutils.config.parser.NetironConfigParser | | ||
| fortinet_fortios | netutils.config.parser.FortinetConfigParser | | ||
| juniper_junos | netutils.config.parser.JunosConfigParser | | ||
| linux | netutils.config.parser.LINUXConfigParser | | ||
| mrv_optiswitch | netutils.config.parser.OptiswitchConfigParser | | ||
| nokia_sros | netutils.config.parser.NokiaConfigParser | |
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
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.