Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions rclcpp/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
Changelog for package rclcpp
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

28.1.20 (2026-06-09)
--------------------
* Add Callback Group Events Executor (Jazzy Backport) (`#3163 <https://github.com/ros2/rclcpp/issues/3163>`_)
* initial backport commit
* remove C++20 features (designated initializers)
* update executor tests
* add component_container_events_cbg
* change to use shared_ptr by value
* explicit type
* remove fix non-applicable to jazzy
* lint
---------
Co-authored-by: Skyler Medeiros <skye@polymathrobotics.com>
* Contributors: Skyler Medeiros

28.1.19 (2026-06-02)
--------------------
* chore: fix typo in test_time_source.cpp (`#3145 <https://github.com/ros2/rclcpp/issues/3145>`_) (`#3149 <https://github.com/ros2/rclcpp/issues/3149>`_)
(cherry picked from commit a3cfbd7332243dca8672b765051173a251f4e2bf)
Co-authored-by: Pietro Gelmini <86184562+Gelminaio@users.noreply.github.com>
* Contributors: mergify[bot]

28.1.18 (2026-03-25)
--------------------
* Remove duplicate test cases in TestAnySubscriptionCallback::is_serialized_message_callback (backport `#3104 <https://github.com/ros2/rclcpp/issues/3104>`_) (`#3107 <https://github.com/ros2/rclcpp/issues/3107>`_)
Expand Down
3 changes: 3 additions & 0 deletions rclcpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ set(${PROJECT_NAME}_SRCS
src/rclcpp/executor.cpp
src/rclcpp/executor_options.cpp
src/rclcpp/executors.cpp
src/rclcpp/executors/events_cbg_executor/events_cbg_executor.cpp
src/rclcpp/executors/events_cbg_executor/first_in_first_out_scheduler.cpp
src/rclcpp/executors/events_cbg_executor/global_event_id_provider.cpp
src/rclcpp/executors/executor_entities_collection.cpp
src/rclcpp/executors/executor_entities_collector.cpp
src/rclcpp/executors/executor_notify_waitable.cpp
Expand Down
2 changes: 2 additions & 0 deletions rclcpp/include/rclcpp/executors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include "rclcpp/executors/single_threaded_executor.hpp"
#include "rclcpp/executors/static_single_threaded_executor.hpp"
#include "rclcpp/experimental/executors/events_executor/events_executor.hpp"
#include "rclcpp/executors/events_cbg_executor/events_cbg_executor.hpp"
#include "rclcpp/node.hpp"
#include "rclcpp/utilities.hpp"
#include "rclcpp/visibility_control.hpp"
Expand Down Expand Up @@ -66,6 +67,7 @@ namespace executors

using rclcpp::executors::MultiThreadedExecutor;
using rclcpp::executors::SingleThreadedExecutor;
using rclcpp::executors::EventsCBGExecutor;

/// Spin (blocking) until the future is complete, it times out waiting, or rclcpp is interrupted.
/**
Expand Down
Loading