Skip to content

Commit 1b8c3c9

Browse files
committed
Merge remote-tracking branch 'origin/patch-2' into patch-1
2 parents a1481de + 08086dc commit 1b8c3c9

File tree

24 files changed

+43
-20
lines changed

24 files changed

+43
-20
lines changed

compressed_depth_image_transport/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package compressed_depth_image_transport
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
6.1.0 (2025-07-15)
6+
------------------
7+
* Replace rmw_qos_profile_t with rclcpp::QoS (`#193 <https://github.com/ros-perception/image_transport_plugins/issues/193>`_)
8+
* Contributors: Alejandro Hernández Cordero
9+
510
6.0.0 (2025-07-09)
611
------------------
712
* Use non deprecated method (`#182 <https://github.com/ros-perception/image_transport_plugins/issues/182>`_)

compressed_depth_image_transport/include/compressed_depth_image_transport/compressed_depth_publisher.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class CompressedDepthPublisher : public image_transport::SimplePublisherPlugin<C
6565
void advertiseImpl(
6666
rclcpp::Node * node,
6767
const std::string & base_topic,
68-
rmw_qos_profile_t custom_qos,
68+
rclcpp::QoS custom_qos,
6969
rclcpp::PublisherOptions options) final;
7070

7171
void publish(

compressed_depth_image_transport/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package format="2">
22
<name>compressed_depth_image_transport</name>
3-
<version>6.0.0</version>
3+
<version>6.1.0</version>
44
<description>
55
Compressed_depth_image_transport provides a plugin to image_transport for transparently sending
66
depth images (raw, floating-point) using PNG compression.

compressed_depth_image_transport/src/compressed_depth_publisher.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const struct ParameterDefinition kParameters[] =
105105
void CompressedDepthPublisher::advertiseImpl(
106106
rclcpp::Node * node,
107107
const std::string & base_topic,
108-
rmw_qos_profile_t custom_qos,
108+
rclcpp::QoS custom_qos,
109109
rclcpp::PublisherOptions options)
110110
{
111111
node_ = node;

compressed_image_transport/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package compressed_image_transport
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
6.1.0 (2025-07-15)
6+
------------------
7+
* Replace rmw_qos_profile_t with rclcpp::QoS (`#193 <https://github.com/ros-perception/image_transport_plugins/issues/193>`_)
8+
* Contributors: Alejandro Hernández Cordero
9+
510
6.0.0 (2025-07-09)
611
------------------
712
* Use non deprecated method (`#182 <https://github.com/ros-perception/image_transport_plugins/issues/182>`_)

compressed_image_transport/include/compressed_image_transport/compressed_publisher.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class CompressedPublisher : public image_transport::SimplePublisherPlugin<Compre
6767
void advertiseImpl(
6868
rclcpp::Node * node,
6969
const std::string & base_topic,
70-
rmw_qos_profile_t custom_qos,
70+
rclcpp::QoS custom_qos,
7171
rclcpp::PublisherOptions options) override;
7272

7373
void publish(

compressed_image_transport/include/compressed_image_transport/compressed_subscriber.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class CompressedSubscriber final : public image_transport::SimpleSubscriberPlugi
6767
rclcpp::Node *,
6868
const std::string & base_topic,
6969
const Callback & callback,
70-
rmw_qos_profile_t custom_qos,
70+
rclcpp::QoS custom_qos,
7171
rclcpp::SubscriptionOptions options) override;
7272

7373
void internalCallback(

compressed_image_transport/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package format="2">
22
<name>compressed_image_transport</name>
3-
<version>6.0.0</version>
3+
<version>6.1.0</version>
44
<description>
55
Compressed_image_transport provides a plugin to image_transport for transparently sending images
66
encoded as JPEG or PNG.

compressed_image_transport/src/compressed_publisher.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const struct ParameterDefinition kParameters[] =
133133
void CompressedPublisher::advertiseImpl(
134134
rclcpp::Node * node,
135135
const std::string & base_topic,
136-
rmw_qos_profile_t custom_qos,
136+
rclcpp::QoS custom_qos,
137137
rclcpp::PublisherOptions options)
138138
{
139139
node_ = node;

compressed_image_transport/src/compressed_subscriber.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void CompressedSubscriber::subscribeImpl(
7171
rclcpp::Node * node,
7272
const std::string & base_topic,
7373
const Callback & callback,
74-
rmw_qos_profile_t custom_qos,
74+
rclcpp::QoS custom_qos,
7575
rclcpp::SubscriptionOptions options)
7676
{
7777
node_ = node;

0 commit comments

Comments
 (0)