Skip to content

Commit

Permalink
Update Submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jan 27, 2025
1 parent a14b035 commit a3d1b33
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion core/stellio
Submodule stellio updated 32 files
+2 −2 build.gradle.kts
+0 −202 search-service/src/main/kotlin/com/egm/stellio/search/entity/listener/ObservationEventListener.kt
+8 −14 search-service/src/main/kotlin/com/egm/stellio/search/entity/service/EntityEventService.kt
+2 −4 search-service/src/main/kotlin/com/egm/stellio/search/entity/web/EntityHandler.kt
+0 −221 search-service/src/test/kotlin/com/egm/stellio/search/entity/listener/ObservationEventListenerTests.kt
+10 −20 search-service/src/test/kotlin/com/egm/stellio/search/entity/service/EntityEventServiceTests.kt
+3 −3 search-service/src/test/kotlin/com/egm/stellio/search/entity/service/EntityQueryServiceTests.kt
+2 −2 search-service/src/test/kotlin/com/egm/stellio/search/entity/service/EntityServiceTests.kt
+1 −1 shared/build.gradle.kts
+15 −23 shared/src/main/kotlin/com/egm/stellio/shared/model/EntityEvent.kt
+4 −7 shared/src/main/kotlin/com/egm/stellio/shared/model/ExpandedEntity.kt
+41 −30 shared/src/main/kotlin/com/egm/stellio/shared/util/JsonLdUtils.kt
+7 −7 shared/src/test/kotlin/com/egm/stellio/shared/model/ExpandedEntityTests.kt
+38 −2 shared/src/test/kotlin/com/egm/stellio/shared/util/JsonLdUtilsTests.kt
+2 −4 shared/src/test/kotlin/com/egm/stellio/shared/util/JsonUtilsTests.kt
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeAppendNumericPropDatasetIdEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeAppendNumericPropEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeAppendRelEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeAppendTextPropEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeAppendTypeEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeDeleteEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeReplaceNumericPropEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeReplaceRelEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeReplaceTextPropEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeUpdateNumericPropDatasetIdEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeUpdateNumericPropEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeUpdateRelEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/attributeUpdateTextPropEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/entityCreateEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/entityDeleteEvent.json
+0 −1 shared/src/testFixtures/resources/ngsild/events/entity/entityReplaceEvent.json
+1 −1 subscription-service/src/main/kotlin/com/egm/stellio/subscription/service/NotificationService.kt
2 changes: 1 addition & 1 deletion processing/perseo/front-end
2 changes: 1 addition & 1 deletion robotics/Fast-DDS
Submodule Fast-DDS updated 75 files
+2 −2 .github/workflows/reusable-ubuntu-ci.yml
+1 −1 CMakeLists.txt
+7 −3 include/fastdds/rtps/attributes/BuiltinTransports.hpp
+29 −1 include/fastdds/rtps/common/PortParameters.hpp
+ resources/images/fastdds_github_banner.png
+4 −1 resources/xsd/fastdds_profiles.xsd
+5 −5 src/cpp/fastdds/domain/DomainParticipantFactory.cpp
+119 −49 src/cpp/rtps/RTPSDomain.cpp
+42 −3 src/cpp/rtps/attributes/RTPSParticipantAttributes.cpp
+16 −0 src/cpp/rtps/attributes/ServerAttributes.cpp
+23 −7 src/cpp/rtps/attributes/ServerAttributes.hpp
+0 −1 src/cpp/rtps/builtin/discovery/participant/PDPServer.cpp
+49 −19 src/cpp/rtps/participant/RTPSParticipantImpl.cpp
+1 −0 src/cpp/rtps/participant/RTPSParticipantImpl.hpp
+15 −3 src/cpp/rtps/transport/TCPTransportInterface.cpp
+87 −0 src/cpp/utils/SystemCommandBuilder.hpp
+12 −1 src/cpp/xmlparser/XMLElementParser.cpp
+2 −0 src/cpp/xmlparser/XMLParserCommon.cpp
+2 −0 src/cpp/xmlparser/XMLParserCommon.h
+3 −0 test/CMakeLists.txt
+22 −2 test/blackbox/api/dds-pim/PubSubReader.hpp
+35 −4 test/blackbox/api/dds-pim/PubSubWriter.hpp
+8 −0 test/blackbox/builtin_transports_profile.xml
+2 −2 test/blackbox/common/BlackboxTestsDiscovery.cpp
+101 −0 test/blackbox/common/BlackboxTestsNetworkConf.cpp
+1 −1 test/blackbox/common/BlackboxTestsSecurity.cpp
+30 −0 test/blackbox/common/BlackboxTestsTransportCustom.cpp
+40 −0 test/blackbox/common/DDSBlackboxTestsBasic.cpp
+364 −0 test/blackbox/common/DDSBlackboxTestsDSEasyMode.cpp
+1 −1 test/blackbox/common/DDSBlackboxTestsTransportSHMUDP.cpp
+2 −1 test/dds/communication/security/multiple_secure_ds_pubsub_secure_crypto_communication.py
+2 −1 test/dds/communication/security/secure_ds_pubsub_secure_crypto_communication.py
+42 −0 test/system/tools/fastdds/CMakeLists.txt
+572 −0 test/system/tools/fastdds/test_discovery_parser.py
+180 −6 test/system/tools/fastdds/tests.py
+30 −0 test/system/tools/fds/CMakeLists.txt
+825 −0 test/system/tools/fds/CliDiscoveryManagerTests.cpp
+93 −0 test/system/tools/fds/MockCliDiscoveryManager.hpp
+111 −90 test/system/tools/fds/tests.py
+1 −0 test/system/tools/xmlvalidation/XMLTesterExample_profile.xml
+1 −0 test/system/tools/xmlvalidation/all_profile.xml
+1 −0 test/system/tools/xmlvalidation/domainParticipant_profile.xml
+2 −0 test/unittest/dds/profiles/test_xml_for_string_profile.xml
+2 −0 test/unittest/dds/profiles/test_xml_profile.xml
+19 −0 test/unittest/rtps/attributes/ServerAttributesTests.cpp
+23 −0 test/unittest/rtps/common/PortParametersTests.cpp
+3 −1 test/unittest/xmlparser/XMLElementParserTests.cpp
+4 −0 test/unittest/xmlparser/XMLParserTests.cpp
+7 −2 test/unittest/xmlparser/XMLProfileParserTests.cpp
+1 −0 test/unittest/xmlparser/test_xml_deprecated.xml
+1 −0 test/unittest/xmlparser/test_xml_profile.xml
+1 −0 test/unittest/xmlparser/test_xml_profile_env_var.xml
+1 −0 test/unittest/xmlparser/test_xml_rooted_deprecated.xml
+1 −0 test/unittest/xmlparser/test_xml_rooted_profile.xml
+158 −0 tools/fastdds/discovery/fastdds_daemon/daemon/__init__.py
+179 −0 tools/fastdds/discovery/fastdds_daemon/daemon/daemonize.py
+96 −0 tools/fastdds/discovery/fastdds_daemon/helpers.py
+0 −0 tools/fastdds/discovery/fastdds_daemon/node/__init__.py
+188 −0 tools/fastdds/discovery/fastdds_daemon/node/daemon_node.py
+0 −0 tools/fastdds/discovery/fastdds_daemon/process_handler/__init__.py
+134 −0 tools/fastdds/discovery/fastdds_daemon/process_handler/process_handler.py
+0 −0 tools/fastdds/discovery/fastdds_daemon/xmlrpc_local/__init__.py
+36 −0 tools/fastdds/discovery/fastdds_daemon/xmlrpc_local/local_client.py
+60 −0 tools/fastdds/discovery/fastdds_daemon/xmlrpc_local/local_server.py
+276 −29 tools/fastdds/discovery/parser.py
+1 −1 tools/fastdds/fastdds.py
+8 −6 tools/fds/CMakeLists.txt
+92 −0 tools/fds/CliDiscoveryEntrypoint.cpp
+1,137 −0 tools/fds/CliDiscoveryManager.cpp
+353 −0 tools/fds/CliDiscoveryManager.hpp
+328 −0 tools/fds/CliDiscoveryParser.hpp
+47 −33 tools/fds/README.txt
+0 −764 tools/fds/server.cpp
+0 −149 tools/fds/server.h
+4 −0 versions.md
2 changes: 1 addition & 1 deletion robotics/iotagent-opcua
2 changes: 1 addition & 1 deletion security/pep-steelskin
2 changes: 1 addition & 1 deletion security/vc-verifier
Submodule vc-verifier updated 1 files
+6 −4 tir/tirClient.go

0 comments on commit a3d1b33

Please sign in to comment.