Skip to content

Commit

Permalink
Update submodules
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Baczmanski <[email protected]>
  • Loading branch information
maciejbaczmanski committed Jul 11, 2023
1 parent 1791277 commit c196ae8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ FEATURES

CHANGELOG
==========
* 07/11/2023
* Updated submodules
* openthread commitid: 8bc2504
* ot-br-posix commitid: 790dc77
* ot-nrf528xx commitid: 982244f
* ot-commisioner commitid: acb3371

* 05/26/2023
* Updated submodules
* openthread commitid: 6865b83d7
Expand Down
2 changes: 1 addition & 1 deletion openthread
Submodule openthread updated 876 files
2 changes: 1 addition & 1 deletion ot-br-posix
Submodule ot-br-posix updated 95 files
+2 −2 .github/workflows/border_router.yml
+4 −4 .github/workflows/docker.yml
+4 −2 .github/workflows/documentation.yml
+1 −1 .github/workflows/macOS.yml
+1 −0 CMakeLists.txt
+19 −0 etc/cmake/options.cmake
+4 −1 script/_nat64
+2 −2 script/_otbr
+1 −1 script/bootstrap
+2 −2 script/cmake-build
+4 −3 script/test
+1 −1 src/CMakeLists.txt
+2 −0 src/agent/CMakeLists.txt
+4 −2 src/agent/application.cpp
+6 −1 src/agent/application.hpp
+13 −1 src/agent/main.cpp
+2 −2 src/agent/openthread-otbr-posix-config.h.in
+2 −0 src/agent/vendor.hpp
+2 −0 src/backbone_router/backbone_agent.hpp
+2 −0 src/backbone_router/constants.hpp
+2 −0 src/backbone_router/dua_routing_manager.hpp
+2 −0 src/backbone_router/nd_proxy.hpp
+19 −0 src/border_agent/border_agent.cpp
+2 −0 src/border_agent/border_agent.hpp
+1 −0 src/common/CMakeLists.txt
+55 −0 src/common/api_strings.cpp
+52 −0 src/common/api_strings.hpp
+2 −0 src/common/byteswap.hpp
+20 −6 src/common/callback.hpp
+18 −15 src/common/code_utils.hpp
+2 −0 src/common/dns_utils.hpp
+2 −0 src/dbus/client/client_error.hpp
+11 −0 src/dbus/client/thread_api_dbus.cpp
+28 −0 src/dbus/client/thread_api_dbus.hpp
+3 −6 src/dbus/common/constants.hpp
+2 −0 src/dbus/common/dbus_message_dump.hpp
+4 −2 src/dbus/common/dbus_message_helper.hpp
+13 −2 src/dbus/common/dbus_message_helper_openthread.cpp
+2 −0 src/dbus/common/dbus_resources.hpp
+2 −0 src/dbus/common/error.hpp
+2 −0 src/dbus/common/types.hpp
+2 −2 src/dbus/server/CMakeLists.txt
+2 −0 src/dbus/server/dbus_agent.hpp
+2 −0 src/dbus/server/dbus_object.hpp
+7 −0 src/dbus/server/dbus_request.hpp
+207 −27 src/dbus/server/dbus_thread_object.cpp
+6 −0 src/dbus/server/dbus_thread_object.hpp
+2 −0 src/dbus/server/error_helper.hpp
+31 −3 src/dbus/server/introspect.xml
+5 −5 src/mdns/mdns.cpp
+8 −5 src/mdns/mdns.hpp
+140 −63 src/mdns/mdns_avahi.cpp
+115 −70 src/mdns/mdns_avahi.hpp
+2 −0 src/mdns/mdns_mdnssd.hpp
+7 −0 src/ncp/ncp_openthread.cpp
+2 −0 src/ncp/ncp_openthread.hpp
+1 −1 src/openwrt/view/admin_thread/thread_view.htm
+8 −0 src/proto/CMakeLists.txt
+14 −0 src/proto/capabilities.proto
+2 −0 src/proto/feature_flag.proto
+76 −0 src/proto/thread_telemetry.proto
+2 −0 src/rest/connection.hpp
+445 −1 src/rest/json.cpp
+59 −0 src/rest/json.hpp
+455 −0 src/rest/openapi.yaml
+26 −2 src/rest/parser.cpp
+2 −0 src/rest/parser.hpp
+18 −0 src/rest/request.cpp
+36 −6 src/rest/request.hpp
+250 −48 src/rest/resource.cpp
+24 −3 src/rest/resource.hpp
+7 −3 src/rest/response.cpp
+10 −0 src/rest/response.hpp
+2 −4 src/rest/rest_web_server.cpp
+3 −1 src/rest/rest_web_server.hpp
+22 −9 src/rest/types.hpp
+2 −0 src/sdp_proxy/advertising_proxy.hpp
+2 −0 src/sdp_proxy/discovery_proxy.hpp
+2 −0 src/trel_dnssd/trel_dnssd.hpp
+26 −12 src/utils/hex.cpp
+40 −0 src/utils/hex.hpp
+2 −0 src/utils/infra_link_selector.hpp
+2 −0 src/utils/system_utils.hpp
+21 −47 src/utils/thread_helper.cpp
+2 −0 src/utils/thread_helper.hpp
+7 −0 tests/dbus/CMakeLists.txt
+0 −40 tests/dbus/keep_running.sh
+127 −75 tests/dbus/test-client
+54 −0 tests/dbus/test_dbus_client.cpp
+4 −0 tests/rest/test-rest-server
+2 −2 tests/rest/test_rest.py
+1 −0 tests/scripts/check-scan-build
+1 −1 tests/scripts/openwrt
+4 −1 third_party/openthread/CMakeLists.txt
+1 −1 third_party/openthread/repo

0 comments on commit c196ae8

Please sign in to comment.