Skip to content

Commit

Permalink
[submodule] Update submodule sonic-utilities to the latest HEAD autom…
Browse files Browse the repository at this point in the history
…atically
  • Loading branch information
mssonicbld committed Jun 5, 2024
1 parent 268e02f commit 6ba0c04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sonic-utilities
Submodule sonic-utilities updated 99 files
+35 −0 .azure-pipelines/pre-commit-check.yml
+9 −0 .pre-commit-config.yaml
+17 −0 azure-pipelines.yml
+23 −1 clear/main.py
+4 −4 config/aaa.py
+100 −1 config/chassis_modules.py
+255 −29 config/main.py
+2 −2 config/plugins/mlnx.py
+393 −0 config/plugins/sonic-system-ldap_yang.py
+135 −0 config/switchport.py
+202 −123 config/vlan.py
+363 −0 doc/Command-Reference.md
+1 −1 generic_config_updater/gcu_field_operation_validators.conf.json
+12 −17 generic_config_updater/generic_updater.py
+1 −0 generic_config_updater/gu_common.py
+119 −106 pfc/main.py
+52 −0 scripts/db_migrator.py
+1 −1 scripts/dropconfig
+76 −4 scripts/dropstat
+59 −8 scripts/fabricstat
+55 −2 scripts/fast-reboot
+2 −0 scripts/generate_dump
+4 −5 scripts/mellanox_buffer_migrator.py
+79 −30 scripts/queuestat
+23 −1 scripts/reboot
+1 −1 scripts/soft-reboot
+2 −1 setup.py
+10 −0 show/fabric.py
+76 −3 show/interfaces/__init__.py
+99 −2 show/main.py
+145 −0 show/plugins/sonic-system-ldap_yang.py
+4 −0 sonic_installer/main.py
+128 −1 sonic_package_manager/main.py
+301 −33 sonic_package_manager/manager.py
+40 −0 sonic_package_manager/manifest.py
+42 −15 sonic_package_manager/metadata.py
+35 −11 sonic_package_manager/service_creator/creator.py
+25 −10 sonic_package_manager/source.py
+1 −1 ssdutil/main.py
+12 −0 tests/asic_sdk_health_event_input/config_db.json
+19 −0 tests/asic_sdk_health_event_input/state_db.json
+9 −0 tests/asic_sdk_health_event_input/state_db_no_event.json
+13 −0 tests/asic_sdk_health_event_input/state_db_no_fatal.json
+13 −0 tests/asic_sdk_health_event_input/state_db_no_notice.json
+12 −0 tests/asic_sdk_health_event_input/state_db_no_warning.json
+205 −0 tests/asic_sdk_health_event_test.py
+113 −0 tests/chassis_modules_test.py
+5 −0 tests/config_save_output/all_config_db.json
+352 −1 tests/config_test.py
+7 −4 tests/conftest.py
+11 −0 tests/db_migrator_input/config_db/empty-config-with-device-info-nvidia-expected.json
+6 −0 tests/db_migrator_input/config_db/empty-config-with-device-info-nvidia-input.json
+6 −0 tests/db_migrator_input/config_db/per_command_aaa_disable.json
+6 −0 tests/db_migrator_input/config_db/per_command_aaa_disable_expected.json
+8 −0 tests/db_migrator_input/config_db/per_command_aaa_disable_golden.json
+9 −0 tests/db_migrator_input/config_db/per_command_aaa_enable.json
+15 −0 tests/db_migrator_input/config_db/per_command_aaa_enable_expected.json
+19 −0 tests/db_migrator_input/config_db/per_command_aaa_enable_golden.json
+9 −0 tests/db_migrator_input/config_db/per_command_aaa_no_authentication.json
+15 −0 tests/db_migrator_input/config_db/per_command_aaa_no_authentication_expected.json
+19 −0 tests/db_migrator_input/config_db/per_command_aaa_no_authentication_golden.json
+15 −0 tests/db_migrator_input/config_db/per_command_aaa_no_change.json
+15 −0 tests/db_migrator_input/config_db/per_command_aaa_no_change_expected.json
+19 −0 tests/db_migrator_input/config_db/per_command_aaa_no_change_golden.json
+11 −0 tests/db_migrator_input/config_db/per_command_aaa_no_passkey.json
+11 −0 tests/db_migrator_input/config_db/per_command_aaa_no_passkey_expected.json
+15 −0 tests/db_migrator_input/config_db/per_command_aaa_no_passkey_golden.json
+5 −0 tests/db_migrator_input/config_db/per_command_aaa_no_tacplus.json
+15 −0 tests/db_migrator_input/config_db/per_command_aaa_no_tacplus_expected.json
+19 −0 tests/db_migrator_input/config_db/per_command_aaa_no_tacplus_golden.json
+50 −0 tests/db_migrator_test.py
+28 −5 tests/drops_group_test.py
+53 −0 tests/fabricstat_test.py
+172 −13 tests/interfaces_test.py
+93 −37 tests/ip_config_test.py
+20 −0 tests/ldap_input/assert_show_output.py
+11 −0 tests/ldap_input/default_config_db.json
+5 −0 tests/ldap_input/server_config_db.json
+126 −0 tests/ldap_test.py
+1 −2 tests/loopback_action_test.py
+1 −0 tests/mock_tables/asic0/config_db.json
+30 −5 tests/mock_tables/asic0/state_db.json
+31 −0 tests/mock_tables/config_db.json
+52 −26 tests/mock_tables/counters_db.json
+4 −9 tests/mpls_test.py
+82 −0 tests/pfc_input/assert_show_output.py
+81 −0 tests/pfc_test.py
+140 −108 tests/queue_counter_test.py
+5 −3 tests/sonic_package_manager/conftest.py
+223 −0 tests/sonic_package_manager/test_cli.py
+206 −4 tests/sonic_package_manager/test_manager.py
+33 −1 tests/sonic_package_manager/test_manifest.py
+126 −3 tests/sonic_package_manager/test_metadata.py
+18 −0 tests/sonic_package_manager/test_service_creator.py
+42 −0 tests/ssdutil_test.py
+3 −0 tests/test_sonic_installer.py
+1,017 −215 tests/vlan_test.py
+6 −5 utilities_common/bgp_util.py
+231 −36 utilities_common/cli.py

0 comments on commit 6ba0c04

Please sign in to comment.