Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 8.7.0 Release #2671

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(gz-sim8 VERSION 8.6.0)
project(gz-sim8 VERSION 8.7.0)
set (GZ_DISTRIBUTION "Harmonic")

#============================================================================
Expand Down
77 changes: 77 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,82 @@
## Gazebo Sim 8.x

### Gazebo Sim 8.7.0 (2024-11-08)

1. Fix crash when multicopter motor system is attached to an empty model
* [Pull request #2653](https://github.com/gazebosim/gz-sim/pull/2653)

1. Backport SystemConfigurePriority to harmonic
* [Pull request #2661](https://github.com/gazebosim/gz-sim/pull/2661)

1. Break out server constructor
* [Pull request #2638](https://github.com/gazebosim/gz-sim/pull/2638)

1. Add check for valid world pose cmd values
* [Pull request #2640](https://github.com/gazebosim/gz-sim/pull/2640)

1. Enabling Global Illumination (GI VCT) for sensors in SDF
* [Pull request #2550](https://github.com/gazebosim/gz-sim/pull/2550)

1. Fixed typos in three places
* [Pull request #2599](https://github.com/gazebosim/gz-sim/pull/2599)

1. Add point cloud data size sanity check to fix crash
* [Pull request #2549](https://github.com/gazebosim/gz-sim/pull/2549)

1. Corrected command to move the kth_freeflyer spacecraft testbed
* [Pull request #2565](https://github.com/gazebosim/gz-sim/pull/2565)

1. Backport nonbreaking changes from ionic
* [Pull request #2552](https://github.com/gazebosim/gz-sim/pull/2552)

1. clang-tidy fixes: use empty(), fix includes
* [Pull request #2548](https://github.com/gazebosim/gz-sim/pull/2548)

1. Check ranges before access
* [Pull request #2540](https://github.com/gazebosim/gz-sim/pull/2540)

1. Fixed Odometry Publisher Angular Velocity Singularity in 3D
* [Pull request #2348](https://github.com/gazebosim/gz-sim/pull/2348)

1. Revert behavior change introduced in #2452
* [Pull request #2527](https://github.com/gazebosim/gz-sim/pull/2527)

1. Specify System::PreUpdate, Update execution order
* [Pull request #2487](https://github.com/gazebosim/gz-sim/pull/2487)

1. Force Qt to use xcb plugin on Wayland
* [Pull request #2526](https://github.com/gazebosim/gz-sim/pull/2526)

1. Remove unused variable in thruster system
* [Pull request #2524](https://github.com/gazebosim/gz-sim/pull/2524)

1. Make sure steering joints exist before updating velocity / odometry in AckermannSteering plugin
* [Pull request #2521](https://github.com/gazebosim/gz-sim/pull/2521)

1. Fix ResourceSpawner
* [Pull request #2490](https://github.com/gazebosim/gz-sim/pull/2490)

1. gui_system_plugin: clarify description in README
* [Pull request #2253](https://github.com/gazebosim/gz-sim/pull/2253)

1. Fix adding system to non-existent entity
* [Pull request #2516](https://github.com/gazebosim/gz-sim/pull/2516)

1. Checking linkEnity is empty
* [Pull request #2509](https://github.com/gazebosim/gz-sim/pull/2509)

1. Initialize threadsNeedCleanUp
* [Pull request #2503](https://github.com/gazebosim/gz-sim/pull/2503)

1. Added support for spacecraft thrusters
* [Pull request #2431](https://github.com/gazebosim/gz-sim/pull/2431)

1. Disable rendering tests that are failing on github actions
* [Pull request #2480](https://github.com/gazebosim/gz-sim/pull/2480)

1. Consolidate entity creation
* [Pull request #2452](https://github.com/gazebosim/gz-sim/pull/2452)

### Gazebo Sim 8.6.0 (2024-07-25)

1. Fix error resolving gazebo classic material when loading world
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2">
<name>gz-sim8</name>
<version>8.6.0</version>
<version>8.7.0</version>
<description>Gazebo Sim : A Robotic Simulator</description>
<maintainer email="[email protected]">Michael Carroll</maintainer>
<license>Apache License 2.0</license>
Expand Down
Loading