-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Taarini Sarath Chander
committed
Apr 30, 2024
1 parent
3c39dcb
commit cbaa854
Showing
52 changed files
with
807 additions
and
143 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,102 @@ | ||
April 2024 | ||
========== | ||
|
||
- Unicon v24.4 | ||
------------------------ | ||
|
||
|
||
|
||
.. csv-table:: Module Versions | ||
:header: "Modules", "Versions" | ||
|
||
``unicon.plugins``, v24.4 | ||
``unicon``, v24.4 | ||
|
||
Install Instructions | ||
^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. code-block:: bash | ||
bash$ pip install unicon.plugins | ||
bash$ pip install unicon | ||
Upgrade Instructions | ||
^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. code-block:: bash | ||
bash$ pip install --upgrade unicon.plugins | ||
bash$ pip install --upgrade unicon | ||
Features and Bug Fixes: | ||
^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
|
||
|
||
|
||
Changelogs | ||
^^^^^^^^^^ | ||
-------------------------------------------------------------------------------- | ||
Fix | ||
-------------------------------------------------------------------------------- | ||
|
||
* sshutils | ||
* add_tunnel | ||
* add logic to handle allocating ports based on the tunnel type. | ||
|
||
* unicon | ||
* Bases/Routers | ||
* Do learn hostname if only the learn pattern is in the statmachine patterns. | ||
* Update the connection init logic. | ||
* Patterns | ||
* Add Bad secrets to bad_passwords pattern. | ||
|
||
* unicon/bases | ||
* Router/connection_provider | ||
* Update logic to not learn the hostname when the device is in shell mode. | ||
|
||
|
||
-------------------------------------------------------------------------------- | ||
New | ||
-------------------------------------------------------------------------------- | ||
|
||
* unicon | ||
* Connection provider | ||
* Add args and kwargs for connect function | ||
|
||
|
||
-------------------------------------------------------------------------------- | ||
New | ||
-------------------------------------------------------------------------------- | ||
|
||
* iosxe | ||
* statemachine | ||
* add pki_hexmode state for iosxe | ||
|
||
* iosxr | ||
* Added get_commit_cmd | ||
* Added support for 'commit best-effort' command. | ||
|
||
* stackresetstandbyrp | ||
* Added iosxe/stack StackResetStandbyRP | ||
* iosxe/stack service reset_standby_rp | ||
* Check whole stack readiness to decide the result of reset_standby_rp | ||
|
||
|
||
-------------------------------------------------------------------------------- | ||
Fix | ||
-------------------------------------------------------------------------------- | ||
|
||
* iosxr/spitfire | ||
* Modified Prompt Recovery Commands | ||
* Updated prompt recovery commands to user CTRL+C. | ||
|
||
* iosxe | ||
* connection provider | ||
* Get the pattern for the enable statment from state machine for handeling device prompts after | ||
|
||
* resetstandbyrp | ||
* Modified generic ResetStandbyRP | ||
* Fixed to handle the optinal argument "reply" | ||
|
||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ Changelog | |
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
2024/april | ||
2024/march | ||
2024/february | ||
2024/january | ||
|
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,67 @@ | ||
April 2024 | ||
========== | ||
|
||
- Unicon.Plugins v24.4 | ||
------------------------ | ||
|
||
|
||
|
||
.. csv-table:: Module Versions | ||
:header: "Modules", "Versions" | ||
|
||
``unicon.plugins``, v24.4 | ||
``unicon``, v24.4 | ||
|
||
Install Instructions | ||
^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. code-block:: bash | ||
bash$ pip install unicon.plugins | ||
bash$ pip install unicon | ||
Upgrade Instructions | ||
^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. code-block:: bash | ||
bash$ pip install --upgrade unicon.plugins | ||
bash$ pip install --upgrade unicon | ||
Features and Bug Fixes: | ||
^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
|
||
|
||
|
||
Changelogs | ||
^^^^^^^^^^ | ||
-------------------------------------------------------------------------------- | ||
Fix | ||
-------------------------------------------------------------------------------- | ||
|
||
* generic | ||
* Use stricter pattern for enable password | ||
* Update standby locked pattern | ||
* Add connection closed statement to execute service | ||
* Add standby locked state to single RP statemachine | ||
* Update escape character handler timing settings | ||
* Revert adding connection closed statement to execute service | ||
* Update config transition logic | ||
* Add `result_check_per_command` option to disable/enable error checking per configuration command | ||
|
||
* iosxe | ||
* Fix operating mode logic | ||
* More prompt handling updated | ||
* Added statements to token discovery dialog | ||
|
||
* iosxr | ||
* Add standby locked state to single RP statemachine | ||
* Change default behavior of ``configure()`` service, error check after all commands by default | ||
* Add handler for `show configuration failed` errors to ``configure()`` service. | ||
* Add `SHOW_CONFIG_FAILED_CMD` setting for command to use, default `show configuration failed` | ||
|
||
* other | ||
* update pid token list | ||
|
||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ Plugins Changelog | |
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
2024/april | ||
2024/march | ||
2024/february | ||
2024/january | ||
|
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,4 +1,4 @@ | ||
__version__ = '24.3' | ||
__version__ = '24.4' | ||
|
||
supported_chassis = [ | ||
'single_rp', | ||
|
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ def __init__(self): | |
'terminal width 0', | ||
'show version', | ||
'logging console disable', | ||
] | ||
] |
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.