Skip to content

Commit

Permalink
Bump third_party/openthread/repo from 8bc2504 to f7690fe (#27984)
Browse files Browse the repository at this point in the history
Bumps [third_party/openthread/repo](https://github.com/openthread/openthread) from `8bc2504` to `f7690fe`.
- [Release notes](https://github.com/openthread/openthread/releases)
- [Commits](openthread/openthread@8bc2504...f7690fe)

---
updated-dependencies:
- dependency-name: third_party/openthread/repo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jul 17, 2023
1 parent 3fc0766 commit ec7615d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 60 files
+1 −0 .github/workflows/build.yml
+2 −2 .github/workflows/codeql.yml
+1 −1 .github/workflows/scorecards.yml
+1 −0 etc/cmake/options.cmake
+6 −0 include/openthread/border_agent.h
+1 −1 include/openthread/instance.h
+189 −6 include/openthread/mesh_diag.h
+1 −0 include/openthread/netdata.h
+31 −0 include/openthread/netdiag.h
+87 −122 include/openthread/srp_server.h
+57 −0 include/openthread/thread.h
+179 −1 src/cli/README.md
+3 −0 src/cli/README_NETDATA.md
+446 −9 src/cli/cli.cpp
+18 −0 src/cli/cli.hpp
+5 −0 src/cli/cli_network_data.cpp
+17 −19 src/cli/cli_srp_server.cpp
+1 −0 src/core/BUILD.gn
+1 −0 src/core/CMakeLists.txt
+24 −0 src/core/api/mesh_diag_api.cpp
+36 −17 src/core/api/srp_server_api.cpp
+20 −0 src/core/api/thread_api.cpp
+67 −29 src/core/border_router/routing_manager.cpp
+15 −9 src/core/border_router/routing_manager.hpp
+11 −9 src/core/common/time.hpp
+8 −1 src/core/common/tlvs.cpp
+37 −0 src/core/common/tlvs.hpp
+52 −0 src/core/config/mesh_forwarder.h
+8 −27 src/core/meshcop/commissioner.cpp
+0 −2 src/core/meshcop/commissioner.hpp
+39 −41 src/core/net/dnssd_server.cpp
+9 −12 src/core/net/dnssd_server.hpp
+252 −438 src/core/net/srp_server.cpp
+94 −160 src/core/net/srp_server.hpp
+30 −0 src/core/thread/mesh_forwarder.cpp
+71 −0 src/core/thread/mesh_forwarder.hpp
+49 −41 src/core/thread/mle.cpp
+1 −0 src/core/thread/mle.hpp
+5 −0 src/core/thread/mle_router.cpp
+10 −0 src/core/thread/network_data_tlvs.hpp
+6 −0 src/core/thread/network_data_types.cpp
+401 −15 src/core/thread/network_diagnostic.cpp
+65 −2 src/core/thread/network_diagnostic.hpp
+152 −0 src/core/thread/network_diagnostic_tlvs.cpp
+500 −22 src/core/thread/network_diagnostic_tlvs.hpp
+390 −53 src/core/utils/mesh_diag.cpp
+135 −11 src/core/utils/mesh_diag.hpp
+1 −1 src/lib/spinel/radio_spinel_impl.hpp
+9 −9 tests/scripts/thread-cert/Cert_5_7_02_CoapDiagCommands.py
+4 −4 tests/scripts/thread-cert/Cert_5_7_03_CoapDiagCommands.py
+24 −0 tests/scripts/thread-cert/test_mle_msg_key_seq_jump.py
+9 −9 tests/toranj/cli/test-021-br-route-prf.py
+164 −0 tests/toranj/cli/test-023-mesh-diag.py
+0 −24 tests/toranj/openthread-core-toranj-config-posix.h
+2 −50 tests/toranj/openthread-core-toranj-config-simulation.h
+4 −471 tests/toranj/openthread-core-toranj-config.h
+1 −0 tests/toranj/start.sh
+2 −0 tests/unit/test_network_data.cpp
+70 −61 tests/unit/test_routing_manager.cpp
+11 −4 tests/unit/test_timer.cpp

0 comments on commit ec7615d

Please sign in to comment.