Skip to content

Commit

Permalink
Generate changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
j-rivero committed Apr 21, 2021
1 parent 072fb4e commit 8b5694d
Show file tree
Hide file tree
Showing 6 changed files with 97 additions and 0 deletions.
11 changes: 11 additions & 0 deletions gazebo_dev/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
Changelog for package gazebo_dev
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------
* colcon.pkg: build gazebo first in colcon workspace (`#1135 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1135>`_)
Add a colcon.pkg file to gazebo_dev with gazebo's cmake project
name "Gazebo" listed as a dependency to support building
gazebo from source in a colcon workspace.
* Add colcon.pkg files for other packages
Copy colcon.pkg to gazebo_ros, gazebo_plugins, and
gazebo_ros_control so that --merge-install won't be required.
* Contributors: Steve Peters

2.9.1 (2020-05-20)
------------------

Expand Down
6 changes: 6 additions & 0 deletions gazebo_msgs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog for package gazebo_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------
* [Noetic] Bridge to republish PerformanceMetrics in ROS (`#1145 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1145>`_)
Co-authored-by: Ian Chen <[email protected]>
* Contributors: Alejandro Hernández Cordero

2.9.1 (2020-05-20)
------------------

Expand Down
32 changes: 32 additions & 0 deletions gazebo_plugins/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@
Changelog for package gazebo_plugins
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------
* gazebo_ros_utils: don't set tf_prefix if empty (`#1173 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1173>`_)
Similar changes were made in `#1143 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1143>`_ to address `#554 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/554>`_,
but this class wasn't included.
* Update test worlds to use the correct element names for xyzOffset and rpyOffset (`#1206 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1206>`_)
The test worlds add an extra 's' character, but the real names are singular.
* [noetic][planar_move_controller] add cmdTimeout param (`#1133 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1133>`_)
Co-authored-by: Alejandro Hernández Cordero <[email protected]>
* [noetic][Windows] Removing extra CameraPlugin header inclusion from gazebo_ros_camera_utils (`#1161 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1161>`_)
* multi roboti example updated for noetic (`#1154 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1154>`_)
* Leave empty tf_prefix values unset (`#1143 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1143>`_)
As reported in `#554 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/554>`_, tf_prefix has been long deprecated,
so if it is unset, leave it empty instead of giving a default value.
Fixes `#554 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/554>`_.
* Added directives if profiler is not installed (`#1144 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1144>`_)
* colcon.pkg: build gazebo first in colcon workspace (`#1135 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1135>`_)
Add a colcon.pkg file to gazebo_dev with gazebo's cmake project name "Gazebo" listed as a dependency to support building
gazebo from source in a colcon workspace. Add colcon.pkg files for other packages
Copy colcon.pkg to gazebo_ros, gazebo_plugins, and gazebo_ros_control so that --merge-install won't be required.
* [Noetic] Added Ignition common profiler to gazebo_plugins (`#1139 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1139>`_)
* Added Ignition common profiler
* Fixed typo
* WheelSlip.cfg: ignore default parameter values (`#1126 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1126>`_)
The WheelSlipPlugin already has default values for the slip
compliance parameters, so ignore the default values set in
WheelSlip.cfg by making them negative and instruct the
callback to ignore negative values.
Also, ignore the `level` variable in callback so that
parameters set in launch file will not be ignored.
* Contributors: Alejandro Hernández Cordero, G.Doisy, Jacob Perron, Markus Bader, Sean Yen, Steve Peters

2.9.1 (2020-05-20)
------------------
* Noetic patch for Opencv libraries (`#1106 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1106>`_)
Expand Down
34 changes: 34 additions & 0 deletions gazebo_ros/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@
Changelog for package gazebo_ros
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------
* Only subscribe to /gazebo/performance_metrics when necessary (`#1202 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1202>`_)
We are currently subscribing to the /gazebo/performance_metrics topic
even if there are no subscribers to the ROS topic forwarding this data.
The link_states and model_states topics currently use an advertise
mechanism with callbacks when a subscriber connects or disconnects,
so I've used that same pattern for the performance_metrics topic.
This also helps workaround the deadlock documented in `#1175 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1175>`_ and
`osrf/gazebo#2902 <https://github.com/osrf/gazebo/issues/2902>`_.
This also adds a GAZEBO_ROS_HAS_PERFORMANCE_METRICS
macro that reduces duplication of the version checking logic for
performance metrics in gazebo and adds fixes some doc-string and
typos in existing code
* [Noetic] Bridge to republish PerformanceMetrics in ROS (`#1145 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1145>`_)
Co-authored-by: Ian Chen <[email protected]>
* delete request msgs (`#1160 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1160>`_)
* gazebo_ros_api_plugin cleanup (`#1137 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1137>`_)
Remove an unused overload of publishSimTime and add doxygen
for the remaining publishSimTime function.
* Remove duplicate code for /clock advertisement
The /clock topic is advertised in both loadGazeboRosApiPlugin
and advertiseServices. This removes the code from advertiseServices
and moves it earlier in loadGazeboRosApiPlugin.
Co-authored-by: Alejandro Hernández Cordero <[email protected]>
* colcon.pkg: build gazebo first in colcon workspace (`#1135 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1135>`_)
Add a colcon.pkg file to gazebo_dev with gazebo's cmake project
name "Gazebo" listed as a dependency to support building
gazebo from source in a colcon workspace.
* Add colcon.pkg files for other packages
Copy colcon.pkg to gazebo_ros, gazebo_plugins, and
gazebo_ros_control so that --merge-install won't be required.
* Contributors: Alejandro Hernández Cordero, Ian Chen, Steve Peters

2.9.1 (2020-05-20)
------------------

Expand Down
11 changes: 11 additions & 0 deletions gazebo_ros_control/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
Changelog for package gazebo_ros_control
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------
* colcon.pkg: build gazebo first in colcon workspace (`#1135 <https://github.com/ros-simulation/gazebo_ros_pkgs/issues/1135>`_)
Add a colcon.pkg file to gazebo_dev with gazebo's cmake project
name "Gazebo" listed as a dependency to support building
gazebo from source in a colcon workspace.
* Add colcon.pkg files for other packages
Copy colcon.pkg to gazebo_ros, gazebo_plugins, and
gazebo_ros_control so that --merge-install won't be required.
* Contributors: Steve Peters

2.9.1 (2020-05-20)
------------------

Expand Down
3 changes: 3 additions & 0 deletions gazebo_ros_pkgs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package gazebo_ros_pkgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Forthcoming
-----------

2.9.1 (2020-05-20)
------------------

Expand Down

0 comments on commit 8b5694d

Please sign in to comment.