-
Notifications
You must be signed in to change notification settings - Fork 47
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 #101 from CiscoTestAutomation/release_24.6
Releasing v24.6
- Loading branch information
Showing
22 changed files
with
864 additions
and
243 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,63 @@ | ||
June 2024 | ||
========== | ||
|
||
- Unicon v24.6 | ||
------------------------ | ||
|
||
|
||
|
||
.. csv-table:: Module Versions | ||
:header: "Modules", "Versions" | ||
|
||
``unicon.plugins``, v24.6 | ||
``unicon``, v24.6 | ||
|
||
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 | ||
-------------------------------------------------------------------------------- | ||
|
||
* stackswitchover | ||
* Modified to wait for known switch state before continuing to check all stack members | ||
|
||
* stackreload | ||
* Modified to always check all stack memebers after reload | ||
* Modified to work for newer platforms | ||
|
||
* iosxe/stack | ||
* Reload Service | ||
* fix the logic for reloading stack devices to wait for all the members to be ready. | ||
|
||
|
||
-------------------------------------------------------------------------------- | ||
New | ||
-------------------------------------------------------------------------------- | ||
|
||
* iosxe.stack.utils | ||
* Added new method wait_for_any_state | ||
* wait for any known state to bypass possible timing issues | ||
|
||
|
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/june | ||
2024/may | ||
2024/april | ||
2024/march | ||
|
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,55 @@ | ||
June 2024 | ||
========== | ||
|
||
- Unicon.Plugins v24.6 | ||
------------------------ | ||
|
||
|
||
|
||
.. csv-table:: Module Versions | ||
:header: "Modules", "Versions" | ||
|
||
``unicon.plugins``, v24.6 | ||
``unicon``, v24.6 | ||
|
||
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 | ||
-------------------------------------------------------------------------------- | ||
|
||
* other | ||
* Update os value to iosxe for model C1100 | ||
* Updated os value to iosxe for ISR1100 submodel | ||
|
||
|
||
-------------------------------------------------------------------------------- | ||
Add | ||
-------------------------------------------------------------------------------- | ||
|
||
* iosxr | ||
* Added `admin_host` state support | ||
|
||
|
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/june | ||
2024/may | ||
2024/april | ||
2024/march | ||
|
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.5' | ||
__version__ = '24.6' | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
class StackException(Exception): | ||
''' base class ''' | ||
pass | ||
|
||
class StackMemberReadyException(StackException): | ||
""" | ||
Exception for when all the member of stack device is configured | ||
""" | ||
pass | ||
|
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.