This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a change to branch feature/async_update
in repository https://gitbox.apache.org/repos/asf/celix.git.


    from 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

No new revisions were added by this update.

Summary of changes:
 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     |   4 +-
 libs/framework/src/dm_dependency_manager_impl.c    |   3 +-
 31 files changed, 474 insertions(+), 289 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

Reply via email to