Skip to content

Commit

Permalink
submodule: bump openthread from b92bd46 to 151444f
Browse files Browse the repository at this point in the history
Bumps [openthread](https://github.com/openthread/openthread) from `b92bd46` to `151444f`.
- [Release notes](https://github.com/openthread/openthread/releases)
- [Commits](openthread/openthread@b92bd46...151444f)

---
updated-dependencies:
- dependency-name: openthread
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 27, 2024
1 parent c3ed990 commit c41741c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 90 files
+1 −9 .github/workflows/build.yml
+2 −2 .github/workflows/codeql.yml
+1 −1 .github/workflows/scorecards.yml
+4 −4 NOTICE
+1 −1 README.md
+6 −0 examples/apps/cli/main.c
+95 −9 examples/platforms/simulation/trel.c
+18 −2 examples/platforms/utils/mac_frame.cpp
+10 −0 examples/platforms/utils/mac_frame.h
+1 −1 include/openthread/instance.h
+9 −3 include/openthread/netdata_publisher.h
+22 −1 include/openthread/platform/trel.h
+6 −6 src/cli/README_NETDATA.md
+11 −1 src/cli/cli.cpp
+51 −25 src/cli/cli_network_data.cpp
+1 −1 src/core/api/border_agent_api.cpp
+27 −9 src/core/api/coap_secure_api.cpp
+10 −6 src/core/api/netdata_publisher_api.cpp
+44 −130 src/core/coap/coap_secure.cpp
+38 −234 src/core/coap/coap_secure.hpp
+53 −115 src/core/common/linked_list.hpp
+21 −25 src/core/common/owning_list.hpp
+4 −0 src/core/config/openthread-core-config-check.h
+0 −4 src/core/config/secure_transport.h
+87 −10 src/core/diags/README.md
+242 −56 src/core/diags/factory_diags.cpp
+37 −3 src/core/diags/factory_diags.hpp
+24 −0 src/core/mac/mac.cpp
+31 −0 src/core/mac/mac_types.cpp
+20 −0 src/core/mac/mac_types.hpp
+441 −451 src/core/meshcop/border_agent.cpp
+29 −35 src/core/meshcop/border_agent.hpp
+15 −28 src/core/meshcop/commissioner.cpp
+6 −2 src/core/meshcop/commissioner.hpp
+9 −0 src/core/meshcop/dataset.cpp
+8 −23 src/core/meshcop/joiner.cpp
+6 −6 src/core/meshcop/joiner.hpp
+20 −0 src/core/meshcop/meshcop.cpp
+19 −0 src/core/meshcop/meshcop.hpp
+240 −164 src/core/meshcop/secure_transport.cpp
+247 −164 src/core/meshcop/secure_transport.hpp
+2 −2 src/core/net/mdns.cpp
+1 −1 src/core/net/nat64_translator.cpp
+2 −2 src/core/net/netif.cpp
+2 −2 src/core/net/srp_advertising_proxy.cpp
+12 −3 src/core/net/srp_client.cpp
+2 −2 src/core/net/srp_server.cpp
+2 −0 src/core/net/srp_server.hpp
+4 −5 src/core/net/tcp6.cpp
+3 −1 src/core/radio/ble_secure.cpp
+4 −0 src/core/radio/ble_secure.hpp
+1 −1 src/core/radio/radio.hpp
+18 −5 src/core/radio/trel_interface.cpp
+35 −5 src/core/radio/trel_interface.hpp
+41 −2 src/core/radio/trel_link.cpp
+38 −13 src/core/radio/trel_link.hpp
+1 −1 src/core/thread/address_resolver.cpp
+31 −0 src/core/thread/mle.cpp
+5 −0 src/core/thread/mle.hpp
+2 −1 src/core/thread/mle_router.cpp
+41 −27 src/core/thread/network_data_publisher.cpp
+25 −11 src/core/thread/network_data_publisher.hpp
+57 −31 src/core/thread/network_data_service.cpp
+93 −31 src/core/thread/network_data_service.hpp
+19 −8 src/core/thread/network_data_tlvs.hpp
+1 −1 src/core/thread/thread_netif.cpp
+2 −2 src/core/thread/tmf.cpp
+1 −3 src/core/thread/tmf.hpp
+1 −1 src/core/utils/link_metrics_manager.cpp
+4 −4 src/lib/spinel/radio_spinel.cpp
+2 −0 src/posix/platform/CMakeLists.txt
+22 −294 src/posix/platform/settings.cpp
+0 −51 src/posix/platform/settings.hpp
+370 −0 src/posix/platform/settings_file.cpp
+131 −0 src/posix/platform/settings_file.hpp
+35 −1 src/posix/platform/trel.cpp
+5 −4 tests/gtest/fake_platform.cpp
+64 −41 tests/nexus/test_dtls.cpp
+0 −12 tests/scripts/expect/cli-diags.exp
+3 −2 tests/scripts/expect/posix-diag-rcp.exp
+0 −2 tests/scripts/expect/posix-power-calibration.exp
+6 −6 tests/scripts/thread-cert/node.py
+7 −7 tests/scripts/thread-cert/test_diag.py
+128 −3 tests/scripts/thread-cert/test_netdata_publisher.py
+19 −0 tests/toranj/cli/cli.py
+178 −0 tests/toranj/cli/test-706-multi-radio-trel-peer-addr-port-change-discovery.py
+1 −0 tests/toranj/start.sh
+24 −20 tests/unit/test_linked_list.cpp
+147 −76 tests/unit/test_network_data.cpp
+2 −0 tests/unit/test_platform.cpp

0 comments on commit c41741c

Please sign in to comment.