Skip to content

Commit da7f6ac

Browse files
authored
Merge pull request #261 from stereolabs/release_4.1
Update changelog
2 parents 2992bf0 + 60a6f89 commit da7f6ac

File tree

3 files changed

+12
-37
lines changed

3 files changed

+12
-37
lines changed

CHANGELOG.rst

+9-28
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,9 @@
11
LATEST CHANGES
22
==============
33

4-
2024_09_27
5-
----------
6-
- Fix `~/imu/data_raw` message not containing RAW IMU data
7-
8-
2024-09-23
9-
----------
10-
- Add support for FFMPEG image transport
11-
- Add new `ffmpeg.yaml` configuration file
12-
13-
2024-07-31
14-
----------
15-
- Add support for point cloud transport
16-
17-
2024-07-15
18-
----------
19-
- Fixed a bug while playing a ZED X stream on a "not-Jetson" host device
20-
21-
2024-06-24
22-
----------
23-
- Changed default DDS Middleware to FastDDS in Docker
24-
25-
2024-05-29
26-
----------
27-
- New Docker configuration files allow to easily create "ZED ROS2 Wrapper" images based on specific tag versions. [Read more](./docker/README.md)
28-
29-
2024-04-26 (ZED SDK v4.1)
30-
-------------------------
31-
- Updated the Docker files to the CUDA 12.4 (PC), L4T 35.4 (Jetson), SDK v4.1.0
4+
v4.1.x
5+
------
6+
- Updated the Docker files to the CUDA 12.4 (PC), L4T 35.4 (Jetson), SDK v4.1.4
327
- Added Local Streaming output
338
- Added `enable_streaming` service to start/stop a streaming server
349
- Added Streaming Server diagnostic
@@ -70,6 +45,12 @@ LATEST CHANGES
7045
- Removed QoS parameters to use ROS 2 QoS overwrite -> https://design.ros2.org/articles/qos_configurability.html
7146
- Added support for new `NEURAL_PLUS` depth mode
7247
- Added new `<camera_name>_gnss_link` frame to URDF to set the position of the GNSS antenna with respect to the camera position
48+
- New Docker configuration files allow to easily create "ZED ROS2 Wrapper" images based on specific tag versions. [Read more](./docker/README.md)
49+
- Fixed a bug while playing a ZED X stream on a "not-Jetson" host device
50+
- Add support for point cloud transport [only Humble, no Foxy]
51+
- Add support for FFMPEG image transport
52+
- Add new `ffmpeg.yaml` configuration file
53+
- Fix `~/imu/data_raw` message not containing RAW IMU data
7354

7455
v4.0.8
7556
------

docker/Dockerfile.desktop-humble

+2-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG CUDA_MINOR=4
55
ARG CUDA_PATCH=1
66
ARG ZED_SDK_MAJOR=4
77
ARG ZED_SDK_MINOR=1
8-
ARG ZED_SDK_PATCH=0
8+
ARG ZED_SDK_PATCH=4
99

1010
ARG IMAGE_NAME=nvcr.io/nvidia/cuda:${CUDA_MAJOR}.${CUDA_MINOR}.${CUDA_PATCH}-devel-ubuntu${UBUNTU_MAJOR}.${UBUNTU_MINOR}
1111

@@ -18,7 +18,7 @@ ARG CUDA_MINOR=4
1818
ARG CUDA_PATCH=1
1919
ARG ZED_SDK_MAJOR=4
2020
ARG ZED_SDK_MINOR=1
21-
ARG ZED_SDK_PATCH=0
21+
ARG ZED_SDK_PATCH=4
2222

2323
ARG ROS2_DIST=humble # ROS2 distribution
2424

@@ -129,9 +129,6 @@ RUN /bin/bash -c "source /opt/ros/$ROS_DISTRO/setup.bash && \
129129

130130
WORKDIR /root/ros2_ws
131131

132-
# Set the default DDS middleware to FastRTPS for improved big data transmission
133-
ENV RMW_IMPLEMENTATION=rmw_fastrtps_cpp
134-
135132
# Setup environment variables
136133
COPY ros_entrypoint.sh /sbin/ros_entrypoint.sh
137134
RUN sudo chmod 755 /sbin/ros_entrypoint.sh

docker/Dockerfile.l4t-humble

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM ${IMAGE_NAME}
55

66
ARG ZED_SDK_MAJOR=4
77
ARG ZED_SDK_MINOR=1
8-
ARG ZED_SDK_PATCH=0
8+
ARG ZED_SDK_PATCH=4
99
ARG JETPACK_MAJOR=5
1010
ARG JETPACK_MINOR=0
1111
ARG L4T_MAJOR=35
@@ -96,9 +96,6 @@ RUN /bin/bash -c "source /opt/ros/$ROS_DISTRO/install/setup.bash && \
9696

9797
WORKDIR /root/ros2_ws
9898

99-
# Set the default DDS middleware to FastRTPS for improved big data transmission
100-
ENV RMW_IMPLEMENTATION=rmw_fastrtps_cpp
101-
10299
# Setup environment variables
103100
COPY ros_entrypoint_jetson.sh /sbin/ros_entrypoint.sh
104101
RUN sudo chmod 755 /sbin/ros_entrypoint.sh

0 commit comments

Comments
 (0)