This is an automated email from the ASF dual-hosted git repository.
pnoltes pushed a change to branch feature/cxx_rsa_update
in repository https://gitbox.apache.org/repos/asf/celix.git.
from 20ad07b Refactors cxx rsa, improves configured discovery tests and
add C++ LogHelper class
add 6e909a1 Updates based on PR review comments
add 7ac9466 Trying update to ubuntu 20.04 (from 18.04), because of
dependency install issues.
add 0ba362c Merge pull request #335 from
apache/feature/update_dep_man_handling_in_bundle_activator
add f49b4c6 Fixes an issue in the bundle activator where components where
destroyed to soon.
add ee890cb Merge pull request #337 from
apache/hotfix/bundle_activator_issue
add 3df528d Feature/pubsub websocket serialization (#338)
add 9513675 Fix binary backward compatibility to celix 2.1 (#339)
add 39a3d2e Merge pull request #340 from tira-misu/bugfix/compatible2.1
add ee23f57 Merge remote-tracking branch 'origin/master' into
feature/async_update
new 123096b Merge branch 'feature/async_update' into
feature/cxx_rsa_update
new a1719c2 Updates for merge with master and adds rapidjson install to
macos ci configuration
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/celix_etcdlib.yml | 2 +-
.github/workflows/celix_promise.yml | 2 +-
.github/workflows/coverage.yml | 2 +-
.github/workflows/coverity-scan.yml | 2 +-
.github/workflows/macos-nightly.yml | 2 +-
.github/workflows/macos.yml | 2 +-
.github/workflows/ubuntu-nightly.yml | 6 +-
.github/workflows/ubuntu.yml | 6 +-
.../admin/src/RemoteServiceAdmin.cc | 9 +-
.../gtest/src/RsaConfiguredDiscoveryTestSuite.cc | 7 +-
bundles/pubsub/CMakeLists.txt | 3 +-
bundles/pubsub/pubsub_admin_tcp/v2/CMakeLists.txt | 2 +-
.../v2/src/pubsub_tcp_topic_receiver.c | 1 -
.../pubsub_admin_websocket/{ => v1}/CMakeLists.txt | 0
.../{ => v1}/src/psa_activator.c | 0
.../{ => v1}/src/pubsub_psa_websocket_constants.h | 0
.../{ => v1}/src/pubsub_websocket_admin.c | 0
.../{ => v1}/src/pubsub_websocket_admin.h | 0
.../{ => v1}/src/pubsub_websocket_common.c | 0
.../{ => v1}/src/pubsub_websocket_common.h | 0
.../{ => v1}/src/pubsub_websocket_topic_receiver.c | 0
.../{ => v1}/src/pubsub_websocket_topic_receiver.h | 0
.../{ => v1}/src/pubsub_websocket_topic_sender.c | 0
.../{ => v1}/src/pubsub_websocket_topic_sender.h | 0
.../pubsub_admin_websocket/{ => v2}/CMakeLists.txt | 20 +-
.../{ => v2}/src/psa_activator.c | 6 +-
.../{ => v2}/src/pubsub_psa_websocket_constants.h | 0
.../{ => v2}/src/pubsub_websocket_admin.c | 267 +++++++++++++--------
.../{ => v2}/src/pubsub_websocket_admin.h | 12 +
.../{ => v2}/src/pubsub_websocket_common.c | 0
.../{ => v2}/src/pubsub_websocket_common.h | 0
.../{ => v2}/src/pubsub_websocket_topic_receiver.c | 138 +++++------
.../{ => v2}/src/pubsub_websocket_topic_receiver.h | 6 +-
.../{ => v2}/src/pubsub_websocket_topic_sender.c | 121 +++++-----
.../{ => v2}/src/pubsub_websocket_topic_sender.h | 7 +-
bundles/pubsub/test/CMakeLists.txt | 74 +++++-
libs/framework/gtest/CMakeLists.txt | 20 +-
.../framework/gtest/src/CmpTestBundleActivator.cc | 24 +-
.../gtest/src/CxxBundleActivatorTestSuite.cc | 55 +++++
libs/framework/include/celix/BundleActivator.h | 6 +-
libs/framework/src/dm_dependency_manager_impl.c | 3 +-
41 files changed, 494 insertions(+), 311 deletions(-)
copy bundles/pubsub/pubsub_admin_websocket/{ => v1}/CMakeLists.txt (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ => v1}/src/psa_activator.c (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_psa_websocket_constants.h (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_websocket_admin.c (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_websocket_admin.h (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_websocket_common.c (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_websocket_common.h (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_websocket_topic_receiver.c (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_websocket_topic_receiver.h (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_websocket_topic_sender.c (100%)
copy bundles/pubsub/pubsub_admin_websocket/{ =>
v1}/src/pubsub_websocket_topic_sender.h (100%)
rename bundles/pubsub/pubsub_admin_websocket/{ => v2}/CMakeLists.txt (60%)
rename bundles/pubsub/pubsub_admin_websocket/{ => v2}/src/psa_activator.c (96%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_psa_websocket_constants.h (100%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_websocket_admin.c (68%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_websocket_admin.h (83%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_websocket_common.c (100%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_websocket_common.h (100%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_websocket_topic_receiver.c (87%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_websocket_topic_receiver.h (92%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_websocket_topic_sender.c (77%)
rename bundles/pubsub/pubsub_admin_websocket/{ =>
v2}/src/pubsub_websocket_topic_sender.h (90%)
copy
examples/celix-examples/readme_cxx_examples/src/CalcProviderBundleActivator.cc
=> libs/framework/gtest/src/CmpTestBundleActivator.cc (56%)
create mode 100644 libs/framework/gtest/src/CxxBundleActivatorTestSuite.cc