Skip to content

Commit

Permalink
Merge pull request #123 from atsign-foundation/2024-12-21
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth authored Dec 21, 2024
2 parents 8436818 + fecd70f commit a8173de
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/c/at_c
Submodule at_c updated 58 files
+1 −1 .github/workflows/c_release.yml
+1 −1 .github/workflows/scorecards.yml
+2 −2 examples/desktop/at_talk/src/main.c
+1 −1 examples/desktop/crud/delete.c
+1 −1 examples/desktop/crud/get_publickey.c
+1 −1 examples/desktop/crud/get_selfkey.c
+1 −1 examples/desktop/crud/get_sharedkey.c
+1 −1 examples/desktop/crud/put_publickey.c
+1 −1 examples/desktop/crud/put_selfkey.c
+1 −1 examples/desktop/crud/put_sharedkey.c
+1 −1 examples/desktop/events/monitor.c
+1 −1 examples/desktop/events/notify.c
+1 −1 examples/desktop/events/resilient_monitor.c
+2 −1 examples/desktop/pkam_authenticate/src/main.c
+2 −2 examples/desktop/reconnection/main.c
+5 −7 examples/desktop/repl/src/main.c
+1 −0 generators/arduino/atsdk/generate.sh
+4 −1 packages/atauth/CMakeLists.txt
+10 −7 packages/atauth/include/atauth/atactivate_arg_parser.h
+12 −0 packages/atauth/include/atauth/atauth_constants.h
+41 −32 packages/atauth/src/atactivate.c
+86 −38 packages/atauth/src/atactivate_arg_parser.c
+560 −0 packages/atauth/src/auth_cli.c
+36 −6 packages/atauth/src/send_enroll_request.c
+0 −2 packages/atchops/include/atchops/platform.h
+2 −0 packages/atclient/CMakeLists.txt
+3 −1 packages/atclient/include/atclient/atclient.h
+11 −0 packages/atclient/include/atclient/atclient_utils.h
+21 −16 packages/atclient/include/atclient/connection.h
+0 −4 packages/atclient/include/atclient/constants.h
+1 −4 packages/atclient/include/atclient/mbedtls.h
+1 −0 packages/atclient/include/atclient/monitor.h
+4 −1 packages/atclient/include/atclient/request_options.h
+135 −0 packages/atclient/include/atclient/socket.h
+34 −0 packages/atclient/include/atclient/socket_mbedtls.h
+64 −0 packages/atclient/include/atclient/socket_shared.h
+32 −14 packages/atclient/src/atclient.c
+1 −1 packages/atclient/src/atclient_get_atkeys.c
+19 −22 packages/atclient/src/atclient_get_public_key.c
+31 −0 packages/atclient/src/atclient_utils.c
+108 −278 packages/atclient/src/connection.c
+27 −72 packages/atclient/src/monitor.c
+16 −0 packages/atclient/src/socket.c
+360 −0 packages/atclient/src/socket_mbedtls.c
+19 −0 packages/atclient/src/socket_raw_mbedtls.c
+1 −1 packages/atclient/tests/test_atkeys_write.c
+206 −0 packages/atclient/tests/test_parse_at_prompt.c
+18 −0 packages/atcommons/include/atcommons/enroll_namespace.h
+67 −8 packages/atcommons/src/enroll_namespace.c
+2 −1 packages/atcommons/tests/at_expect.c
+1 −1 packages/atcommons/tests/test_enroll_command_builder.c
+71 −1 packages/atcommons/tests/test_enroll_namespace_utils.c
+5 −4 tests/functional_tests/lib/src/config.c
+1 −1 tests/functional_tests/lib/src/helpers.c
+4 −3 tests/functional_tests/tests/test_atclient_connection.c
+8 −8 tests/functional_tests/tests/test_atclient_monitor.c
+2 −2 tests/functional_tests/tests/test_atclient_pkam_authenticate.c
+6 −4 tests/functional_tests/tests/test_atclient_sharedkey.c
2 changes: 1 addition & 1 deletion modules/dart/at_server
Submodule at_server updated 44 files
+11 −11 .github/workflows/at_server.yaml
+1 −1 .github/workflows/at_server_dev_deploy.yaml
+1 −1 .github/workflows/at_server_prod_deploy.yaml
+2 −2 .github/workflows/promote_canary.yaml
+1 −1 .github/workflows/scorecards.yml
+1 −1 .github/workflows/ve_base.yaml
+2 −2 .github/workflows/vip_rebuild.yaml
+5 −0 packages/at_secondary_server/CHANGELOG.md
+4 −2 packages/at_secondary_server/lib/src/connection/connection_factory.dart
+187 −0 packages/at_secondary_server/lib/src/connection/inbound/connection_util.dart
+19 −157 packages/at_secondary_server/lib/src/connection/inbound/inbound_connection_impl.dart
+25 −2 packages/at_secondary_server/lib/src/connection/inbound/inbound_connection_manager.dart
+13 −1 packages/at_secondary_server/lib/src/connection/inbound/inbound_message_listener.dart
+141 −0 packages/at_secondary_server/lib/src/connection/inbound/inbound_web_socket_connection.dart
+11 −12 packages/at_secondary_server/lib/src/exception/global_exception_handler.dart
+90 −17 packages/at_secondary_server/lib/src/server/at_secondary_impl.dart
+221 −0 packages/at_secondary_server/lib/src/server/pseudo_server_socket.dart
+1 −1 packages/at_secondary_server/lib/src/utils/logging_util.dart
+12 −4 packages/at_secondary_server/lib/src/verb/handler/monitor_verb_handler.dart
+20 −9 packages/at_secondary_server/lib/src/verb/handler/sync_progressive_verb_handler.dart
+2 −2 packages/at_secondary_server/pubspec.yaml
+6 −3 packages/at_secondary_server/test/local_lookup_verb_test.dart
+64 −0 packages/at_secondary_server/test/monitor_verb_test.dart
+145 −14 packages/at_secondary_server/test/sync_verb_test.dart
+2 −0 packages/at_server_spec/lib/at_server_spec.dart
+1 −1 tests/at_end2end_test/config/config-e2e_test_runtime.yaml
+8 −4 tests/at_end2end_test/config/config12.yaml
+1 −1 tests/at_end2end_test/pubspec.yaml
+2 −2 tests/at_end2end_test/test/cached_key_test.dart
+0 −119 tests/at_end2end_test/test/commons.dart
+251 −109 tests/at_end2end_test/test/e2e_test_utils.dart
+2 −2 tests/at_end2end_test/test/lookup_verb_test.dart
+7 −7 tests/at_end2end_test/test/notify_verb_test.dart
+2 −2 tests/at_end2end_test/test/plookup_verb_test.dart
+3 −3 tests/at_end2end_test/test/stats_verb_test.dart
+4 −3 tests/at_end2end_test/test/update_verb_test.dart
+2 −1 tests/at_functional_test/pubspec.yaml
+21 −21 tools/build_virtual_environment/ve_base/contents/atsign/root/certs/cert.pem
+21 −21 tools/build_virtual_environment/ve_base/contents/atsign/root/certs/fullchain.pem
+26 −26 tools/build_virtual_environment/ve_base/contents/atsign/root/certs/privkey.pem
+21 −21 tools/build_virtual_environment/ve_base/contents/atsign/secondary/base/certs/cert.pem
+21 −21 tools/build_virtual_environment/ve_base/contents/atsign/secondary/base/certs/fullchain.pem
+26 −26 tools/build_virtual_environment/ve_base/contents/atsign/secondary/base/certs/privkey.pem
+1 −1 tools/run_locally/scripts/macos/at_server
2 changes: 1 addition & 1 deletion modules/dart/at_widgets

0 comments on commit a8173de

Please sign in to comment.