Skip to content

Commit aaf4022

Browse files
authored
Merge pull request #916 from CiscoTestAutomation/release_24.11
Releasing v24.11
2 parents c733815 + 3dce6ad commit aaf4022

File tree

147 files changed

+10468
-421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+10468
-421
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ develop:
160160
@pip uninstall -y $(RELATED_PKGS) || true
161161
@pip install $(DEPENDENCIES)
162162

163-
@$(PYTHON) setup.py develop --no-deps
163+
@pip install -e . --no-deps
164164

165165
@echo ""
166166
@echo "Completed building and installing: $@"
@@ -179,7 +179,7 @@ undevelop:
179179
@echo "Uninstalling $(PKG_NAME) development distributable: $@"
180180
@echo ""
181181

182-
@$(PYTHON) setup.py develop --no-deps -q --uninstall
182+
@pip uninstall $(PKG_NAME) -y
183183

184184
@echo ""
185185
@echo "Completed uninstalling: $@"

changelog/2024/november.rst

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
--------------------------------------------------------------------------------
2+
New
3+
--------------------------------------------------------------------------------
4+
5+
* iosxe
6+
* Added ShowSoftwareAuthenticityRunning
7+
* Added schema and parser for 'show software authenticity running'
8+
* Added ShowPlatformHardwareFedXcvrRegisters parser
9+
* Added parser for cli show platform Hardware Fed XCVR Registers
10+
* Added ShowPlatformHardwareFedSwitchActiveNpuSlotPortRecreate parser
11+
* Added parser for cli show platform Hardware NPUSlot PortCreate
12+
* Added `ShowPlatformSoftwareFedSwitchActiveIfmMappingsL3if_le` parser.
13+
* Added parser for CLI `show platform software fed switch active ifm mappings l3if-le`.
14+
* Added ShowPlatformSoftwareFedSwitchNumberIfmMappingsPortLE parser.
15+
* Added parser for CLI `show platform software fed switch active ifm mappings port-le`.
16+
* Added ShowDnsLookup Parser in show_dns_lookup.py
17+
* show dns-lookup cache
18+
* show dns-lookup hostname {hostname}
19+
* Added ShowControllerEthernetControllerInterfaceMac parser
20+
* Added parser for cli show controller interface mac
21+
* Added ShowIdpromEeprom parser
22+
* Added parser for cli show idprom all eeprom
23+
* added ShowPlatformSoftwareFedPuntEntriesInclude Parser
24+
* parser for show platform software fed {switch} {port_num} punt entries | include {match}
25+
* Added ShowPlatformSoftwareFedSwitchActiveStatisticsInit parser.
26+
* Added parser for CLI 'show platform software fed switch active statistics init'
27+
* Added revision1 for ShowProcessesCpuPlatformSorted parser.
28+
* Added revision1 for CLI `show processes cpu platform sorted`.
29+
* Added ShowPlatformSoftwareFedSwitchActiveCpuInterfaces parser.
30+
* Added parser for CLI `show platform software fed switch active cpu-interfaces`.
31+
* Added ShowPlatformSoftwareWiredClientID parser.
32+
* Added parser for cli 'show platform software wired-client {client_id}'.
33+
34+
* utils
35+
* Added revision keyword and handling to get_parser.
36+
37+
38+
--------------------------------------------------------------------------------
39+
Fix
40+
--------------------------------------------------------------------------------
41+
42+
* iosxe
43+
* Modified fix for golden_output_expected.py
44+
* fixed the regex spaces fixes
45+
* Modified fix for show_platform_software_fed.py
46+
* removed unnecessary blank lines
47+
* added pattern as a comment for regex
48+
* conflict for show_platform_software_fed.py resolved
49+
* test commit done
50+
* added comment for match line
51+
* Modified fix for ShowIdprom.
52+
* Modified the key value as optional to accomodate various outputs.
53+
* Modified fix for ShowLispDatabaseConfigPropSuperParser
54+
* Modified the regex patterns <p3> to accommodate different output.
55+
* Modified ShowIpNbarVersion
56+
* made file and creation_time optional
57+
* Modified fix for ShowPolicyMapInterface
58+
* added rate_bps and burst_bytes under child policy-name section.
59+
* Modified ShowIpIgmpSnoopingGroups
60+
* Modified <vlan_id>, <type>, <version> and <port> in the schema as Optional.
61+
* Added regex pattern <p1_0> to accommodate various outputs.
62+
* Modified ShowLispExtranet
63+
* Changed <home_instance>, <total> from schema to Optional.
64+
* Modified ShowPlatformSoftwareCpmCountersInterfaceIsis
65+
* Added BP command for the same schema and output.
66+
* Modified ShowPlatformSoftwareCpmSwitchB0CountersPuntInject
67+
* Added BP command for the same schema and output.
68+
* Modified ShowPlatformSoftwareCpmSwitchActiveB0CountersInterfaceLacp
69+
* Added BP command for the same schema and output.
70+
* Modified ShowPlatformSoftwareCpmSwitchB0CountersDrop
71+
* Added BP command for the same schema and output.
72+
* Update revision1 for ShowProcessesCpuPlatformSorted parser.
73+
* Made cpu_utilization, five_sec_cpu_total, one_min_cpu, five_min_cpu optional.
74+
75+
* viptela
76+
* Modified ShowControlConnections
77+
* Updated regex pattern <p1> to accommodate string length changes in rows.
78+
* Modified ShowIpRoutes
79+
* Updated regex pattern <p1> to accommodate the nh_if_name column running into the nh_addr column.
80+
* Modified ShowOmpPeers
81+
* Updated regex pattern <p1> to accommodate tenant id and region id.
82+
* Modified ShowSystemStatus
83+
* Updated regex pattern <p10> to accommodate matching key values correctly when additional colons are in values.
84+
85+
* iosxr
86+
* Modified ShowLacp
87+
* Changed <rate> key from schema to Optional.
88+
* Updated regex pattern <p1> and <p2> to accommodate various outputs.
89+
90+
* nxos
91+
* Modified ShowIpIgmpGroups
92+
* Updated regex pattern <p2> and <p3> to accommodate various outputs.
93+
* Modified ShowPimRp
94+
* Updated regex pattern <p8_3> to accommodate various outputs.
95+
* Modified ShowIpv6MldGroups
96+
* Updated regex pattern p4, p6 and p7 to handle white space.
97+
* Modified line.strip() to rstrip().
98+
* Modified the logic to handle different output
99+
100+
* common
101+
* Modified _fuzzy_search_command and _is_regular_token functions to make it work for commands which contains arguments inside parenthesis.
102+
103+

0 commit comments

Comments
 (0)