-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[master] update sonic-utilities (#12307)
ac71d745d [VxLAN]Fix Vxlan delete command to throw error when there are references (#2404) 7419c6731 Added cisco config platform commands (#2242) 8760bbe80 Add UT to check sonic installer does not depend on database (#2401) 6bef65260 [doc] add documentation on automatic techsupport based on memory (#2411) 4a783745f [doc] update "config feature" section with "--block" option (#2409) dd6210fcc [Vxlanmgrd] [CPA] Update the vxlan_tunnel name len to be under IFNAMIZ to overcome netdev creation failure (#2398) bdc4a8a60 Fix broken pipeline build URL (#2363) b31681b43 Fix display disorder problem of show vrf (#2392) 123504a85 YANG validation for ConfigDB Updates: portchannel add/remove, loopback interface, VLAN 28f6820c6 [link-local]Modify RIF check to include link-local enabled interfaces (#2394)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule sonic-utilities
updated
29 files
+21 −0 | .github/workflows/semgrep.yml | |
+17 −6 | README.md | |
+185 −153 | config/main.py | |
+1 −1 | config/muxcable.py | |
+63 −0 | config/validated_config_db_connector.py | |
+106 −78 | config/vlan.py | |
+10 −0 | config/vxlan.py | |
+94 −18 | doc/Command-Reference.md | |
+2 −2 | generic_config_updater/generic_updater.py | |
+3 −0 | generic_config_updater/gu_common.py | |
+1 −1 | scripts/neighbor_advertiser | |
+1 −0 | show/main.py | |
+83 −1 | show/vnet.py | |
+22 −8 | show/vxlan.py | |
+103 −28 | tests/config_test.py | |
+37 −0 | tests/installer_dependency_test.py | |
+11 −1 | tests/ipv6_link_local_test.py | |
+8 −4 | tests/mock_tables/appl_db.json | |
+3 −0 | tests/mock_tables/config_db.json | |
+18 −0 | tests/mock_tables/state_db.json | |
+43 −5 | tests/portchannel_test.py | |
+14 −10 | tests/show_bfd_test.py | |
+74 −0 | tests/show_vnet_vxlan_cli_test.py | |
+6 −6 | tests/show_vrf_test.py | |
+30 −0 | tests/validated_config_db_connector_test.py | |
+24 −0 | tests/vlan_test.py | |
+10 −0 | tests/vnet_input/config_db.json | |
+47 −0 | tests/vxlan_test.py | |
+2 −2 | utilities_common/cli.py |