diff --git a/MODULE.bazel b/MODULE.bazel index 390cd54..d434f05 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -27,12 +27,12 @@ bazel_dep(name = "platforms", version = "1.0.0") # S-CORE process rules bazel_dep(name = "score_bazel_platforms", version = "0.0.4") -bazel_dep(name = "score_docs_as_code", version = "2.2.0") +bazel_dep(name = "score_docs_as_code", version = "3.0.1") bazel_dep(name = "score_tooling", version = "1.1.1") bazel_dep(name = "score_rust_policies", version = "0.0.3") -bazel_dep(name = "score_process", version = "1.4.0", dev_dependency = True) -bazel_dep(name = "score_platform", version = "0.5.1", dev_dependency = True) +bazel_dep(name = "score_process", version = "1.4.3", dev_dependency = True) +bazel_dep(name = "score_platform", version = "0.5.3", dev_dependency = True) # Toolchains and extensions bazel_dep(name = "score_bazel_cpp_toolchains", version = "0.2.2", dev_dependency = True) @@ -96,17 +96,12 @@ bazel_dep(name = "rapidjson", version = "1.1.0") bazel_dep(name = "score_communication", version = "0.1.2") git_override( module_name = "score_communication", - commit = "3203fd41ea3509defc498e846e1674085d8469aa", + commit = "56448a5589a5f7d3921b873e8127b824a8c1ca95", remote = "https://github.com/eclipse-score/communication.git", ) -bazel_dep(name = "score_baselibs", version = "0.2.0") -git_override( - module_name = "score_baselibs", - commit = "99d49637a2199f33a71edc479d39970e3bdcb271", - remote = "https://github.com/eclipse-score/baselibs.git", -) +bazel_dep(name = "score_baselibs", version = "0.2.4") # Rust dependencies -bazel_dep(name = "score_baselibs_rust", version = "0.0.5") +bazel_dep(name = "score_baselibs_rust", version = "0.1.0") diff --git a/score/datarouter/src/logparser/logparser.cpp b/score/datarouter/src/logparser/logparser.cpp index f18542a..b036645 100644 --- a/score/datarouter/src/logparser/logparser.cpp +++ b/score/datarouter/src/logparser/logparser.cpp @@ -102,7 +102,7 @@ void LogParser::add_incoming_type(const bufsize_t map_index, const std::string& logger_unpack_string(params.substr(12U), typeName); typename_to_index.emplace(typeName, map_index); - IndexParser indexParser{TypeInfo{nv_config_.getDltMsgDesc(typeName), map_index, params, typeName, ecuId, appId}}; + IndexParser indexParser{TypeInfo{nv_config_.GetDltMsgDesc(typeName), map_index, params, typeName, ecuId, appId}}; const auto ith_range = handle_request_map.equal_range(typeName); for (auto ith = ith_range.first; ith != ith_range.second; ++ith) { diff --git a/score/datarouter/test/ut/ut_logging/test_socketserver.cpp b/score/datarouter/test/ut/ut_logging/test_socketserver.cpp index 43f123a..52cad95 100644 --- a/score/datarouter/test/ut/ut_logging/test_socketserver.cpp +++ b/score/datarouter/test/ut/ut_logging/test_socketserver.cpp @@ -317,7 +317,7 @@ TEST_F(SocketServerRemainingFunctionsTest, LoadNvConfigSuccessPath) // Verify that we got a valid config by checking for a known type from test-class-id.json // The test data contains "score::logging::PersistentLogFileEvent" - const auto* descriptor = nv_config.getDltMsgDesc("score::logging::PersistentLogFileEvent"); + const auto* descriptor = nv_config.GetDltMsgDesc("score::logging::PersistentLogFileEvent"); EXPECT_NE(nullptr, descriptor); // Should find the entry } @@ -336,7 +336,7 @@ TEST_F(SocketServerRemainingFunctionsTest, LoadNvConfigErrorPath) auto nv_config = SocketServer::LoadNvConfig(logger, "/nonexistent/path/class-id.json"); // Verify that we got an empty config by checking for any type - const auto* descriptor = nv_config.getDltMsgDesc("score::logging::PersistentLogFileEvent"); + const auto* descriptor = nv_config.GetDltMsgDesc("score::logging::PersistentLogFileEvent"); EXPECT_EQ(nullptr, descriptor); // Empty config returns nullptr for all queries } diff --git a/score/mw/log/legacy_non_verbose_api/tracing.cpp b/score/mw/log/legacy_non_verbose_api/tracing.cpp index a0b4178..e090736 100644 --- a/score/mw/log/legacy_non_verbose_api/tracing.cpp +++ b/score/mw/log/legacy_non_verbose_api/tracing.cpp @@ -71,7 +71,7 @@ logger::logger(const score::cpp::optional logger::GetLevelForContext(const std::string& name) const noexcept { - const score::mw::log::config::NvMsgDescriptor* const msg_desc = nvconfig_.getDltMsgDesc(name); + const score::mw::log::config::NvMsgDescriptor* const msg_desc = nvconfig_.GetDltMsgDesc(name); if (msg_desc != nullptr) { const auto ctxId = msg_desc->GetCtxId(); diff --git a/score/mw/log/legacy_non_verbose_api/tracing.h b/score/mw/log/legacy_non_verbose_api/tracing.h index bef29bd..3e60d84 100644 --- a/score/mw/log/legacy_non_verbose_api/tracing.h +++ b/score/mw/log/legacy_non_verbose_api/tracing.h @@ -123,7 +123,7 @@ class logger { auto log_level = LogLevel::kInfo; const score::mw::log::config::NvMsgDescriptor* const msg_desc = - nvconfig_.getDltMsgDesc(::score::common::visitor::struct_visitable::name()); + nvconfig_.GetDltMsgDesc(::score::common::visitor::struct_visitable::name()); if (msg_desc != nullptr) { auto message_descriptor_log_level = msg_desc->GetLogLevel();