Skip to content

Commit

Permalink
13.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nuclearsandwich committed Mar 9, 2024
1 parent c4fb315 commit f2fa3e7
Show file tree
Hide file tree
Showing 16 changed files with 81 additions and 8 deletions.
3 changes: 3 additions & 0 deletions rviz2/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package rviz2
^^^^^^^^^^^^^^^^^^^^^^^^^^^

13.4.0 (2024-03-09)
-------------------

13.3.1 (2024-01-24)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion rviz2/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rviz2</name>
<version>13.3.1</version>
<version>13.4.0</version>
<description>
3D visualization tool for ROS.
</description>
Expand Down
3 changes: 3 additions & 0 deletions rviz_assimp_vendor/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package rviz_assimp_vendor
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

13.4.0 (2024-03-09)
-------------------

13.3.1 (2024-01-24)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion rviz_assimp_vendor/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rviz_assimp_vendor</name>
<version>13.3.1</version>
<version>13.4.0</version>
<description>
Wrapper around assimp, providing nothing but a dependency on assimp, on some systems.
On others, it provides a fixed CMake module or even an ExternalProject build of assimp.
Expand Down
11 changes: 11 additions & 0 deletions rviz_common/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
Changelog for package rviz_common
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

13.4.0 (2024-03-09)
-------------------
* Fix camera display overlay (`#1151 <https://github.com/ros2/rviz/issues/1151>`_)
* Fixes for uncrustify 0.78. (`#1155 <https://github.com/ros2/rviz/issues/1155>`_)
Mostly what we do here is to disable the indentation on
certain constructs that are different between 0.72 and
0.78. It isn't my preferred solution, but since it only
affects a small amount of code (and most of that in macros),
this seems acceptable to me.
* Contributors: Alejandro Hernández Cordero, Chris Lalancette

13.3.1 (2024-01-24)
-------------------
* Append measured subscription frequency to topic status (`#1113 <https://github.com/ros2/rviz/issues/1113>`_)
Expand Down
2 changes: 1 addition & 1 deletion rviz_common/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rviz_common</name>
<version>13.3.1</version>
<version>13.4.0</version>
<description>
Common rviz API, used by rviz plugins and applications.
</description>
Expand Down
17 changes: 17 additions & 0 deletions rviz_default_plugins/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
Changelog for package rviz_default_plugins
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

13.4.0 (2024-03-09)
-------------------
* Select QoS reliability policy in DepthCloud Plugin (`#1159 <https://github.com/ros2/rviz/issues/1159>`_)
* Fixed crash on DepthCloud plugin (`#1161 <https://github.com/ros2/rviz/issues/1161>`_)
* Fixes for uncrustify 0.78. (`#1155 <https://github.com/ros2/rviz/issues/1155>`_)
Mostly what we do here is to disable the indentation on
certain constructs that are different between 0.72 and
0.78. It isn't my preferred solution, but since it only
affects a small amount of code (and most of that in macros),
this seems acceptable to me.
* Fixed crash on DepthCloudPlugin (`#1133 <https://github.com/ros2/rviz/issues/1133>`_)
* Wrench accepth nan values fix (`#1141 <https://github.com/ros2/rviz/issues/1141>`_)
* DepthCloud plugin: Append measured subscription frequency to topic status (`#1137 <https://github.com/ros2/rviz/issues/1137>`_)
* Added Cache to camera display for TimeExact (`#1138 <https://github.com/ros2/rviz/issues/1138>`_)
* Fixed transport name in DepthCloud plugin (`#1134 <https://github.com/ros2/rviz/issues/1134>`_)
* Contributors: Alejandro Hernández Cordero, Chris Lalancette

13.3.1 (2024-01-24)
-------------------
* Fix time-syncing message (`#1121 <https://github.com/ros2/rviz/issues/1121>`_)
Expand Down
2 changes: 1 addition & 1 deletion rviz_default_plugins/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rviz_default_plugins</name>
<version>13.3.1</version>
<version>13.4.0</version>
<description>
Several default plugins for rviz to cover the basic functionality.
</description>
Expand Down
22 changes: 22 additions & 0 deletions rviz_ogre_vendor/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
Changelog for package rviz_ogre_vendor
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

13.4.0 (2024-03-09)
-------------------
* Change an rviz_ogre_vendor dependency to libfreetype-dev. (`#1167 <https://github.com/ros2/rviz/issues/1167>`_)
The situation is complicated, but in versions of Ubuntu
prior to Focal and versions of Debian prior to Bookworm,
the name of the library was 'libfreetype6-dev'. Since
Focal and Bookworm, the name of the library is 'libfreetype-dev'.
While 'libfreetype-dev' provides a "virtual package"
for 'libfreetype6-dev', we should really use the new canonical
name.
Further, there is currently a bug on ros_buildfarm where
it doesn't properly deal with "virtual packages" like this.
This is currently preventing this package from building on
Ubuntu Noble. That bug is being worked on separately.
Finally, I'll note that we already have a libfreetype-dev
key in rosdep, so we just switch to using that here which
should work around the bug on the buildfarm, and also use
the correct canonical name going forward.
* fix: modify typo in cmake args for mac (`#1160 <https://github.com/ros2/rviz/issues/1160>`_)
* feat: support macos (`#1156 <https://github.com/ros2/rviz/issues/1156>`_)
* Contributors: Chris Lalancette, Daisuke Nishimatsu

13.3.1 (2024-01-24)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion rviz_ogre_vendor/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rviz_ogre_vendor</name>
<version>13.3.1</version>
<version>13.4.0</version>
<description>
Wrapper around ogre3d, it provides a fixed CMake module and an ExternalProject build of ogre.
</description>
Expand Down
11 changes: 11 additions & 0 deletions rviz_rendering/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
Changelog for package rviz_rendering
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

13.4.0 (2024-03-09)
-------------------
* Fix camera display overlay (`#1151 <https://github.com/ros2/rviz/issues/1151>`_)
* Fixes for uncrustify 0.78. (`#1155 <https://github.com/ros2/rviz/issues/1155>`_)
Mostly what we do here is to disable the indentation on
certain constructs that are different between 0.72 and
0.78. It isn't my preferred solution, but since it only
affects a small amount of code (and most of that in macros),
this seems acceptable to me.
* Contributors: Alejandro Hernández Cordero, Chris Lalancette

13.3.1 (2024-01-24)
-------------------
* fixed MovableText::getWorldTransforms transform (`#1118 <https://github.com/ros2/rviz/issues/1118>`_)
Expand Down
2 changes: 1 addition & 1 deletion rviz_rendering/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rviz_rendering</name>
<version>13.3.1</version>
<version>13.4.0</version>
<description>
Library which provides the 3D rendering functionality in rviz.
</description>
Expand Down
3 changes: 3 additions & 0 deletions rviz_rendering_tests/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package rviz_rendering_tests
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

13.4.0 (2024-03-09)
-------------------

13.3.1 (2024-01-24)
-------------------
* Remove the loading_ascii_stl_files_fail (`#1125 <https://github.com/ros2/rviz/issues/1125>`_)
Expand Down
2 changes: 1 addition & 1 deletion rviz_rendering_tests/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rviz_rendering_tests</name>
<version>13.3.1</version>
<version>13.4.0</version>
<description>
Example plugin for RViz - documents and tests RViz plugin development
</description>
Expand Down
3 changes: 3 additions & 0 deletions rviz_visual_testing_framework/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package rviz_visual_testing_framework
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

13.4.0 (2024-03-09)
-------------------

13.3.1 (2024-01-24)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion rviz_visual_testing_framework/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>rviz_visual_testing_framework</name>
<version>13.3.1</version>
<version>13.4.0</version>
<description>
3D testing framework for RViz.
</description>
Expand Down

0 comments on commit f2fa3e7

Please sign in to comment.