From 6712d5544085e53eed12c8806eced4b2870447da Mon Sep 17 00:00:00 2001 From: "Addisu Z. Taddese" Date: Tue, 1 Aug 2023 16:25:55 -0500 Subject: [PATCH 1/3] Fix Github project automation for new project board (#878) Signed-off-by: Addisu Z. Taddese --- .github/workflows/triage.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 736670e0e..152404bee 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -1,7 +1,7 @@ on: issues: types: [opened] - pull_request_target: + pull_request: types: [opened] name: Ticket opened jobs: @@ -10,10 +10,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Add ticket to inbox - uses: technote-space/create-project-card-action@v1 + uses: actions/add-to-project@v0.5.0 with: - PROJECT: Core development - COLUMN: Inbox - GITHUB_TOKEN: ${{ secrets.TRIAGE_TOKEN }} - CHECK_ORG_PROJECT: true + project-url: https://github.com/orgs/gazebosim/projects/7 + github-token: ${{ secrets.TRIAGE_TOKEN }} From 71765a01d644db9eda5fb4fd7870da96a3381aaf Mon Sep 17 00:00:00 2001 From: "Addisu Z. Taddese" Date: Wed, 2 Aug 2023 14:30:31 -0500 Subject: [PATCH 2/3] Use `pull_request_target` for triage workflow (#879) Signed-off-by: Addisu Z. Taddese --- .github/workflows/triage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 152404bee..2c94852da 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -1,7 +1,7 @@ on: issues: types: [opened] - pull_request: + pull_request_target: types: [opened] name: Ticket opened jobs: From a50cd70aceab284aa360419b1076a0016e6b78ee Mon Sep 17 00:00:00 2001 From: Ian Chen Date: Thu, 17 Aug 2023 15:01:07 -0700 Subject: [PATCH 3/3] Prepare for 7.4.1 release (#883) Signed-off-by: Ian Chen --- CMakeLists.txt | 2 +- Changelog.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 67e5fe315..99bbb7820 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) #============================================================================ # Initialize the project #============================================================================ -project(gz-rendering7 VERSION 7.4.0) +project(gz-rendering7 VERSION 7.4.1) #============================================================================ # Find gz-cmake diff --git a/Changelog.md b/Changelog.md index 27b2ba766..aa029ad7f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,48 @@ ### Gazebo Rendering 7.X +### Gazebo Rendering 7.4.1 (2023-08-17) + +1. Infrastructure + * [Pull request #879](https://github.com/gazebosim/gz-rendering/pull/879) + * [Pull request #878](https://github.com/gazebosim/gz-rendering/pull/878) + +1. Restore missing Ogre2Heightmap::DestroyImpl implementation + * [Pull request #870](https://github.com/gazebosim/gz-rendering/pull/870) + +1. Destroy sensor node on exit + * [Pull request #869](https://github.com/gazebosim/gz-rendering/pull/869) + +1. Parse `OGRE2_RESOURCE_PATH` as a list of strings + * [Pull request #867](https://github.com/gazebosim/gz-rendering/pull/867) + +1. Fix a leak in ogre2 ray query + * [Pull request #866](https://github.com/gazebosim/gz-rendering/pull/866) + +1. Fixed light visual in OGRE + * [Pull request #862](https://github.com/gazebosim/gz-rendering/pull/862) + +1. Removed unused parameter warning + * [Pull request #861](https://github.com/gazebosim/gz-rendering/pull/861) + +1. Replace ignerr with gzerr + * [Pull request #857](https://github.com/gazebosim/gz-rendering/pull/857) + +1. Minor cleanup of ogre/ogre2: fix namespace, unused variable, missing header + * [Pull request #858](https://github.com/gazebosim/gz-rendering/pull/858) + +1. Fix missing header in CameraLens + * [Pull request #855](https://github.com/gazebosim/gz-rendering/pull/855) + +1. Fix missing cstdint header in latest gcc build + * [Pull request #853](https://github.com/gazebosim/gz-rendering/pull/853) + +1. OgreNext: Fix shaders compilation on d3d12 mesa driver (WSLg) + * [Pull request #851](https://github.com/gazebosim/gz-rendering/pull/851) + +1. Fix visibility decorator of Ogre2Projector + * [Pull request #850](https://github.com/gazebosim/gz-rendering/pull/850) + ### Gazebo Rendering 7.4.0 (2023-05-18) 1. Add optional binary relocatability