From 973cb5520219d59b7e70d793d9b95c014633d136 Mon Sep 17 00:00:00 2001 From: SRBuilds Date: Fri, 6 Sep 2024 08:02:00 -0700 Subject: [PATCH] 24.7.2 released --- docs/source/conf.py | 4 ++-- docs/source/features/22.10.rst | 14 ++++++++++++++ docs/source/features/23.10.rst | 8 ++++++++ docs/source/features/24.07.rst | 8 ++++++++ docs/source/index.rst | 8 +++----- examples/show_router_bgp_asn.py | 5 +++-- setup.py | 2 +- 7 files changed, 39 insertions(+), 10 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index b9f2349..57c833a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -10,8 +10,8 @@ author = 'Nokia' # The full version, including alpha/beta/rc tags -version = '24.7.1' -release = '24.7.1' +version = '24.7.2' +release = '24.7.2' # -- General configuration --------------------------------------------------- diff --git a/docs/source/features/22.10.rst b/docs/source/features/22.10.rst index 14ae3d4..e34e5d9 100644 --- a/docs/source/features/22.10.rst +++ b/docs/source/features/22.10.rst @@ -1,6 +1,20 @@ Release 22.10 ************* +22.10.9 +####### + +* No additional features + +.. Reviewed by PLM 20240627 + +22.10.8 +####### + +* No additional features + + + 22.10.7 ####### diff --git a/docs/source/features/23.10.rst b/docs/source/features/23.10.rst index 8a5ad98..00843f2 100644 --- a/docs/source/features/23.10.rst +++ b/docs/source/features/23.10.rst @@ -1,6 +1,14 @@ Release 23.10 ************* +23.10.6 +####### + +* No additional features + +.. Reviewed by PLM 20240718 +.. Reviewed by TechComms 20240718 + 23.10.5 ####### diff --git a/docs/source/features/24.07.rst b/docs/source/features/24.07.rst index cba3789..52b05cd 100644 --- a/docs/source/features/24.07.rst +++ b/docs/source/features/24.07.rst @@ -1,6 +1,14 @@ Release 24.7 ************ +24.7.2 +###### + +* No additional features + +.. Reviewed by PLM 20240814 + + 24.7.1 ###### diff --git a/docs/source/index.rst b/docs/source/index.rst index 44992b2..58a25a1 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -17,12 +17,10 @@ documentation will be updated accordingly. .. list-table:: :header-rows: 0 - * - pySROS release: 24.7.1 - * - Document Number: 3HE 20087 AAAD TQZZA - -.. Reviewed by PLM 20240506 -.. Reviewed by TechComms 20240529 + * - pySROS release: 24.7.2 + * - Document Number: 3HE 20087 AAAE TQZZA +.. Reviewed by PLM 20240813 .. toctree:: diff --git a/examples/show_router_bgp_asn.py b/examples/show_router_bgp_asn.py index 0506953..54e2355 100755 --- a/examples/show_router_bgp_asn.py +++ b/examples/show_router_bgp_asn.py @@ -7,7 +7,7 @@ # pylint: disable=import-error, import-outside-toplevel, line-too-long, too-many-branches, too-many-locals, too-many-statements """ -Tested on: SR OS 24.3.R1 +Tested on: SR OS 24.3.R2 Show all BGP peers for an ASN. @@ -221,6 +221,8 @@ def show_router_bgp_asn_output(connection_object, asn): num_down_neighbors = 0 num_disabled_neighbors = 0 for neighbor in sorted(bgp_config): + num_families = 0 + if asn == 0 or int(asn) == bgp_config[neighbor]["peer-as"].data: # Print line 1 print(bright_cyan, end="") @@ -270,7 +272,6 @@ def show_router_bgp_asn_output(connection_object, asn): == "Established" ): num_up_neighbors += 1 - num_families = 0 for family in sorted( bgp_stats[neighbor]["statistics"]["negotiated-family"] ): diff --git a/setup.py b/setup.py index fb6d5bd..e01ca79 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='pysros', - version='24.7.1', + version='24.7.2', packages=['pysros'], url='https://www.nokia.com', license='Copyright 2021-2024 Nokia. License available in the LICENSE.md file.',