ROS Jazzy Jalisco Release

ROS Jazzy Jalisco

--- What's new for ROS 2 core ---

see more details to https://docs.ros.org/en/jazzy/Releases/Release-Jazzy-Jalisco.html

ROS Jazzy Jalisco Release

Jazzy Documentation

Installation, Tutorials, How-to Guides and Packages are available.

ROS Jazzy Jalisco Release

Supported Platform

  • Tier 1 platforms
    • Ubuntu 24.04 Nobel (amd64 / aarch64)
    • Windows 10 (VS 2019) (amd64)
  • Tier 2 platforms
    • RHEL 9 (amd64)
  • Tier 3 platforms
    • macOS (amd64)
    • Debian Bookworm (amd64)
ROS Jazzy Jalisco Release

New Features

ROS Jazzy Jalisco Release

Preview RMW Zenoh

A new ROS MiddleWare (RMW) that integrates Zenoh with ROS 2 and rmw_zenoh is now available. However, it is still a preview because there are some known bugs in it, and we aren’t quite ready to commit to it for the long term.

rmw_zenoh is one of Non-DDS RMW implementations.

Note that rmw_zenoh requires Zenoh Router daemon running.

To use, we need to compile rmw_zenoh from the source.

ROS Jazzy Jalisco Release
### Start the zenoh router
ros2 run rmw_zenoh_cpp rmw_zenoh

### Talker and  Listener
RMW_IMPLEMENTATION=rmw_zenoh_cpp ros2 run demo_nodes_cpp talker
RMW_IMPLEMENTATION=rmw_zenoh_cpp ros2 run demo_nodes_cpp listener
  • By default, discovery traffic is only in local host system. If network communication is needed, we need to configure zenoh router and restart.
  • uses CDR as the serialization format. (Compatible with DDS based RMWs)
ROS Jazzy Jalisco Release

rosbag2 record and replay service

This feature depends on Service introspection implemented in Iron. rosbag2 takes advantage of it to record all service requests and responses, and also replays service data from the bag file.

This feature allows you to debug/enhance/test/simulate the ROS 2 services more efficiently.

ROS Jazzy Jalisco Release
ROS Jazzy Jalisco Release
  • Recording

    # All services and all topics
    ros2 bag record --all
    # All topics
    ros2 bag record --all-topics
    # All services
    ros2 bag record --all-services
    
  • Playback

    ros2 bag play --publish-service-requests bag_path
    

Please check out Managing Service Data Tutorial and Design Document for more information.

ROS Jazzy Jalisco Release

Core Feature Development

  • message_filters

    • Now we can use TypeAdapter to the subscription, so that user defined message type can be declared and converted by user callback for the filtering process.
  • rcl

ROS Jazzy Jalisco Release
  • rclcpp

    • get_service_typesupport_handle API is added to resolve service type at runtime. this is required by rosbag2 service playback which requires dynamic service type resolving.
  • ros2cli

    • Now you can specify the log file name prefix with --ros-args --log-file-name filename. This is useful when you run with ros2 run because prefix is python by default.
    • Escape sequence support for human readable log format supports with RCUTILS_CONSOLE_OUTPUT_FORMAT.
ROS Jazzy Jalisco Release
ROS Jazzy Jalisco Release
  • ros2action
    • type sub-command is now supported to look up the action type.

      ros2 action type /fibonacci
      action_tutorials_interfaces/action/Fibonacci
      
ROS Jazzy Jalisco Release

Core Updates from Iron Irwini

ROS Jazzy Jalisco Release
ROS Jazzy Jalisco Release
ROS Jazzy Jalisco Release
ROS Jazzy Jalisco Release
ROS Jazzy Jalisco Release

2025 ROS Turtle K Release: Kilted Kaiju

Kaiju is a Japanese term that is commonly associated with media involving giant monsters.

ROS Jazzy Jalisco Release

See you at ROSCon 2024

Odense, Denmark

October 21st - 23rd, 2024

Discourse Release Announcement: https://discourse.ros.org/t/ros-2-jazzy-jalisco-released/37862

Reference: https://docs.ros.org/en/jazzy/Releases/Release-Jazzy-Jalisco.html#supported-platforms

Comment Here

Design: https://github.com/ros2/rmw_zenoh/blob/rolling/docs/design.md

Comment Here

Original Issue: https://github.com/ros2/rosbag2/issues/773

NOTE: add one more dash "->", this is to avoid html comment directive. ```mermaid graph LR A[Service Client A] <-> D((Request/Response)) B[Service Client B] <-> D((Request/Response)) C[Service Client C] <-> D((Request/Response)) D((Request/Response)) <-> E[Service Server] ``` ```mermaid graph LR A[Service Client A] <-> D((Request/Response)) B[Service Client B] <-> D((Request/Response)) C[Service Client C] <-> D((Request/Response)) D((Request/Response)) <-> E[Service Server] D((Request/Response)) -- /service_events -> F{Service Introspection} F{Service Introspection} -- recording -> G[rosbag2 service] G[rosbag2 service] -- replaying -> D((Request/Response)) ```

Comment Here

Comment Here

Comment Here

Comment Here

This section shows the different or what is changed from Iron release.

Comment Here

Comment Here

Comment Here