Skip to content

Commit fb7a8bf

Browse files
committed
Merge remote-tracking branch 'origin/master' into feature/record_option
2 parents c72e0e6 + e3c909b commit fb7a8bf

File tree

75 files changed

+1257
-477
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1257
-477
lines changed

.github/workflows/InterfaceUpdateNotification.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ jobs:
1919
env:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2121
- name: Add comment
22-
run: |
23-
gh pr comment "$PR_NUMBER" --edit-last --body "This PR may breaks the interface to external services! Please see https://tier4.atlassian.net/wiki/spaces/S/pages/1984987364" \
24-
|| gh pr comment "$PR_NUMBER" --body "This PR may breaks the interface to external services! Please see https://tier4.atlassian.net/wiki/spaces/S/pages/1984987364"
25-
env:
26-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27-
PR_NUMBER: ${{ github.event.pull_request.number }}
22+
uses: mshick/add-pr-comment@v2
23+
with:
24+
message: "This PR may breaks the interface to external services! Please see https://tier4.atlassian.net/wiki/spaces/S/pages/1984987364"
25+
message-id: "interface-breaking-notification"

.github/workflows/PostCheckList.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
security-events: write
2121
statuses: write
2222
steps:
23-
- uses: alawiii521/current-pr-comment@v1.0
23+
- uses: mshick/add-pr-comment@v2
2424
with:
25-
comment: |
25+
message: |
2626
# Checklist for reviewers ☑️
2727
All references to "You" in the following text refer to the code reviewer.
2828
- [ ] Is this pull request written in a way that is easy to read from a third-party perspective?
@@ -31,4 +31,4 @@ jobs:
3131
- [ ] Labels of this pull request are valid?
3232
- [ ] All unit tests/integration tests are included in this pull request? If you think adding test cases is unnecessary, please describe why and cross out this line.
3333
- [ ] The documentation for this pull request is enough? If you think adding documents for this pull request is unnecessary, please describe why and cross out this line.
34-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
message-id: 'post-check-list'

.github/workflows/SimModelUpdateNotification.yaml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,8 @@ jobs:
99
notify:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Checkout
13-
uses: actions/checkout@v4
14-
with:
15-
fetch-depth: 0
16-
1712
- name: Add comment
18-
run: |
19-
gh pr comment "$PR_NUMBER" --edit-last --body "This PR edits vehicle model that is copied from [simple_planning_simulator](https://github.com/autowarefoundation/autoware.universe/tree/main/simulator/simple_planning_simulator). Please consider making changes to the original code to avoid confusion or consult developers (@hakuturu583, @yamacir-kit and @HansRobo )." \
20-
|| gh pr comment "$PR_NUMBER" --body "This PR edits vehicle model that is copied from [simple_planning_simulator](https://github.com/autowarefoundation/autoware.universe/tree/main/simulator/simple_planning_simulator). Please consider making changes to the original code to avoid confusion or consult developers (@hakuturu583, @yamacir-kit and @HansRobo )."
21-
env:
22-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
PR_NUMBER: ${{ github.event.pull_request.number }}
13+
uses: mshick/add-pr-comment@v2
14+
with:
15+
message: "This PR edits vehicle model that is copied from [simple_planning_simulator](https://github.com/autowarefoundation/autoware.universe/tree/main/simulator/simple_planning_simulator). Please consider making changes to the original code to avoid confusion or consult developers (@hakuturu583, @yamacir-kit and @HansRobo )."
16+
message-id: "vehicle-model-update-notification"

common/agnocast_wrapper/CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ Changelog for package agnocast_wrapper
55
16.4.2 (2025-05-23)
66
-------------------
77

8+
16.5.11 (2025-06-26)
9+
--------------------
10+
* Merge branch 'master' into fix/lanelet_pose_in_do_nothing
11+
* Contributors: Masaya Kataoka
12+
13+
16.5.10 (2025-06-23)
14+
--------------------
15+
* Merge branch 'master' into devin/1750224079-update-communication-docs
16+
* Contributors: Kotaro Yoshimoto
17+
18+
16.5.9 (2025-06-23)
19+
-------------------
20+
* Merge branch 'master' into feature/use-add-pr-comment
21+
* Contributors: Kotaro Yoshimoto
22+
23+
16.5.8 (2025-06-23)
24+
-------------------
25+
26+
16.5.7 (2025-06-18)
27+
-------------------
28+
* Merge branch 'master' into dependabot/pip/requests-2.32.4
29+
* Contributors: Masaya Kataoka
30+
831
16.5.6 (2025-06-12)
932
-------------------
1033
* Merge branch 'master' into add-start-trigger-context

common/agnocast_wrapper/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>agnocast_wrapper</name>
5-
<version>16.5.6</version>
5+
<version>16.5.11</version>
66
<description>A wrapper package for agnocast</description>
77
<maintainer email="[email protected]">Mateusz Palczuk</maintainer>
88
<license>Apache License 2.0</license>

common/get_parameter/CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ Changelog for package get_parameter
55
16.4.2 (2025-05-23)
66
-------------------
77

8+
16.5.11 (2025-06-26)
9+
--------------------
10+
* Merge branch 'master' into fix/lanelet_pose_in_do_nothing
11+
* Contributors: Masaya Kataoka
12+
13+
16.5.10 (2025-06-23)
14+
--------------------
15+
* Merge branch 'master' into devin/1750224079-update-communication-docs
16+
* Contributors: Kotaro Yoshimoto
17+
18+
16.5.9 (2025-06-23)
19+
-------------------
20+
* Merge branch 'master' into feature/use-add-pr-comment
21+
* Contributors: Kotaro Yoshimoto
22+
23+
16.5.8 (2025-06-23)
24+
-------------------
25+
26+
16.5.7 (2025-06-18)
27+
-------------------
28+
* Merge branch 'master' into dependabot/pip/requests-2.32.4
29+
* Contributors: Masaya Kataoka
30+
831
16.5.6 (2025-06-12)
932
-------------------
1033
* Merge branch 'master' into add-start-trigger-context

common/get_parameter/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>get_parameter</name>
5-
<version>16.5.6</version>
5+
<version>16.5.11</version>
66
<description>Thin wrapper for rclcpp::Node::get_parameter</description>
77
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
88
<license>Apache License 2.0</license>

common/math/arithmetic/CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,29 @@ Changelog for package arithmetic
2424
16.4.2 (2025-05-23)
2525
-------------------
2626

27+
16.5.11 (2025-06-26)
28+
--------------------
29+
* Merge branch 'master' into fix/lanelet_pose_in_do_nothing
30+
* Contributors: Masaya Kataoka
31+
32+
16.5.10 (2025-06-23)
33+
--------------------
34+
* Merge branch 'master' into devin/1750224079-update-communication-docs
35+
* Contributors: Kotaro Yoshimoto
36+
37+
16.5.9 (2025-06-23)
38+
-------------------
39+
* Merge branch 'master' into feature/use-add-pr-comment
40+
* Contributors: Kotaro Yoshimoto
41+
42+
16.5.8 (2025-06-23)
43+
-------------------
44+
45+
16.5.7 (2025-06-18)
46+
-------------------
47+
* Merge branch 'master' into dependabot/pip/requests-2.32.4
48+
* Contributors: Masaya Kataoka
49+
2750
16.5.6 (2025-06-12)
2851
-------------------
2952
* Merge branch 'master' into add-start-trigger-context

common/math/arithmetic/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>arithmetic</name>
5-
<version>16.5.6</version>
5+
<version>16.5.11</version>
66
<description>arithmetic library for scenario_simulator_v2</description>
77
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
88
<license>Apache License 2.0</license>

common/math/geometry/CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,29 @@ Changelog for package geometry
2424
16.4.2 (2025-05-23)
2525
-------------------
2626

27+
16.5.11 (2025-06-26)
28+
--------------------
29+
* Merge branch 'master' into fix/lanelet_pose_in_do_nothing
30+
* Contributors: Masaya Kataoka
31+
32+
16.5.10 (2025-06-23)
33+
--------------------
34+
* Merge branch 'master' into devin/1750224079-update-communication-docs
35+
* Contributors: Kotaro Yoshimoto
36+
37+
16.5.9 (2025-06-23)
38+
-------------------
39+
* Merge branch 'master' into feature/use-add-pr-comment
40+
* Contributors: Kotaro Yoshimoto
41+
42+
16.5.8 (2025-06-23)
43+
-------------------
44+
45+
16.5.7 (2025-06-18)
46+
-------------------
47+
* Merge branch 'master' into dependabot/pip/requests-2.32.4
48+
* Contributors: Masaya Kataoka
49+
2750
16.5.6 (2025-06-12)
2851
-------------------
2952
* Merge branch 'master' into add-start-trigger-context

common/math/geometry/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>geometry</name>
5-
<version>16.5.6</version>
5+
<version>16.5.11</version>
66
<description>geometry math library for scenario_simulator_v2 application</description>
77
<maintainer email="[email protected]">Masaya Kataoka</maintainer>
88
<license>Apache License 2.0</license>

common/scenario_simulator_exception/CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,29 @@ Changelog for package scenario_simulator_exception
2424
16.4.2 (2025-05-23)
2525
-------------------
2626

27+
16.5.11 (2025-06-26)
28+
--------------------
29+
* Merge branch 'master' into fix/lanelet_pose_in_do_nothing
30+
* Contributors: Masaya Kataoka
31+
32+
16.5.10 (2025-06-23)
33+
--------------------
34+
* Merge branch 'master' into devin/1750224079-update-communication-docs
35+
* Contributors: Kotaro Yoshimoto
36+
37+
16.5.9 (2025-06-23)
38+
-------------------
39+
* Merge branch 'master' into feature/use-add-pr-comment
40+
* Contributors: Kotaro Yoshimoto
41+
42+
16.5.8 (2025-06-23)
43+
-------------------
44+
45+
16.5.7 (2025-06-18)
46+
-------------------
47+
* Merge branch 'master' into dependabot/pip/requests-2.32.4
48+
* Contributors: Masaya Kataoka
49+
2750
16.5.6 (2025-06-12)
2851
-------------------
2952
* Merge branch 'master' into add-start-trigger-context

common/scenario_simulator_exception/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>scenario_simulator_exception</name>
5-
<version>16.5.6</version>
5+
<version>16.5.11</version>
66
<description>Exception types for scenario simulator</description>
77
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
88
<license>Apache License 2.0</license>

common/simple_junit/CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,29 @@ Changelog for package junit_exporter
2424
16.4.2 (2025-05-23)
2525
-------------------
2626

27+
16.5.11 (2025-06-26)
28+
--------------------
29+
* Merge branch 'master' into fix/lanelet_pose_in_do_nothing
30+
* Contributors: Masaya Kataoka
31+
32+
16.5.10 (2025-06-23)
33+
--------------------
34+
* Merge branch 'master' into devin/1750224079-update-communication-docs
35+
* Contributors: Kotaro Yoshimoto
36+
37+
16.5.9 (2025-06-23)
38+
-------------------
39+
* Merge branch 'master' into feature/use-add-pr-comment
40+
* Contributors: Kotaro Yoshimoto
41+
42+
16.5.8 (2025-06-23)
43+
-------------------
44+
45+
16.5.7 (2025-06-18)
46+
-------------------
47+
* Merge branch 'master' into dependabot/pip/requests-2.32.4
48+
* Contributors: Masaya Kataoka
49+
2750
16.5.6 (2025-06-12)
2851
-------------------
2952
* Merge branch 'master' into add-start-trigger-context

common/simple_junit/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>simple_junit</name>
5-
<version>16.5.6</version>
5+
<version>16.5.11</version>
66
<description>Lightweight JUnit library for ROS 2</description>
77
<maintainer email="[email protected]">Masaya Kataoka</maintainer>
88
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>

common/status_monitor/CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,29 @@ Changelog for package status_monitor
2424
16.4.2 (2025-05-23)
2525
-------------------
2626

27+
16.5.11 (2025-06-26)
28+
--------------------
29+
* Merge branch 'master' into fix/lanelet_pose_in_do_nothing
30+
* Contributors: Masaya Kataoka
31+
32+
16.5.10 (2025-06-23)
33+
--------------------
34+
* Merge branch 'master' into devin/1750224079-update-communication-docs
35+
* Contributors: Kotaro Yoshimoto
36+
37+
16.5.9 (2025-06-23)
38+
-------------------
39+
* Merge branch 'master' into feature/use-add-pr-comment
40+
* Contributors: Kotaro Yoshimoto
41+
42+
16.5.8 (2025-06-23)
43+
-------------------
44+
45+
16.5.7 (2025-06-18)
46+
-------------------
47+
* Merge branch 'master' into dependabot/pip/requests-2.32.4
48+
* Contributors: Masaya Kataoka
49+
2750
16.5.6 (2025-06-12)
2851
-------------------
2952
* Merge branch 'master' into add-start-trigger-context

common/status_monitor/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>status_monitor</name>
5-
<version>16.5.6</version>
5+
<version>16.5.11</version>
66
<description>none</description>
77
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
88
<license>Apache License 2.0</license>

docs/developer_guide/Communication.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@
3636
| `/planning/mission_planning/checkpoint` | [`geometry_msgs/msg/PoseStamped`](https://github.com/ros2/common_interfaces/blob/master/geometry_msgs/msg/PoseStamped.msg) | |
3737
| `/planning/mission_planning/goal` | [`geometry_msgs/msg/PoseStamped`](https://github.com/ros2/common_interfaces/blob/master/geometry_msgs/msg/PoseStamped.msg) | |
3838
| `/sensing/imu/imu_data` | [`sensor_msgs/msg/Imu`](https://github.com/ros2/common_interfaces/blob/master/sensor_msgs/msg/Imu.msg) | |
39-
| `/v2x/traffic_signals` | [`autoware_perception_msgs/msg/TrafficLightGroupArray`](https://github.com/autowarefoundation/autoware_msgs/blob/main/autoware_perception_msgs/msg/TrafficLightGroupArray.msg) | Additional V2I traffic light interface for `architecture_type` equal to `awf/universe/20240605` |
39+
| `/v2x/traffic_signals` | [`autoware_perception_msgs/msg/TrafficLightGroupArray`](https://github.com/autowarefoundation/autoware_msgs/blob/main/autoware_perception_msgs/msg/TrafficLightGroupArray.msg) | Additional V2I traffic light interface for `architecture_type` equal to `awf/universe/20240605` or `awf/universe/20250130` |
4040
| `/v2x/traffic_signals` | [`autoware_perception_msgs/msg/TrafficSignalArray`](https://github.com/autowarefoundation/autoware_msgs/blob/main/autoware_perception_msgs/msg/TrafficSignalArray.msg) | Additional V2I traffic light interface for `architecture_type` equal to `awf/universe/20230906` |
41-
| `/v2x/traffic_signals` | [`autoware_perception_msgs/msg/TrafficLightGroupArray`](https://github.com/autowarefoundation/autoware_msgs/blob/main/autoware_perception_msgs/msg/TrafficLightGroupArray.msg) | Additional V2I traffic light interface for `architecture_type` equal to `awf/universe/20240605` or `awf/universe/20250130` |
4241
| `/vehicle/status/control_mode` | [`autoware_vehicle_msgs/msg/ControlModeReport`](https://github.com/autowarefoundation/autoware_msgs/tree/main/autoware_vehicle_msgs/msg/ControlModeReport.msg) | |
4342
| `/vehicle/status/gear_status` | [`autoware_vehicle_msgs/msg/GearReport`](https://github.com/autowarefoundation/autoware_msgs/tree/main/autoware_vehicle_msgs/msg/GearReport.msg) | |
4443
| `/vehicle/status/steering_status` | [`autoware_vehicle_msgs/msg/SteeringReport`](https://github.com/autowarefoundation/autoware_msgs/tree/main/autoware_vehicle_msgs/msg/SteeringReport.msg) | |

external/concealer/CHANGELOG.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,29 @@ Changelog for package concealer
2424
16.4.2 (2025-05-23)
2525
-------------------
2626

27+
16.5.11 (2025-06-26)
28+
--------------------
29+
* Merge branch 'master' into fix/lanelet_pose_in_do_nothing
30+
* Contributors: Masaya Kataoka
31+
32+
16.5.10 (2025-06-23)
33+
--------------------
34+
* Merge branch 'master' into devin/1750224079-update-communication-docs
35+
* Contributors: Kotaro Yoshimoto
36+
37+
16.5.9 (2025-06-23)
38+
-------------------
39+
* Merge branch 'master' into feature/use-add-pr-comment
40+
* Contributors: Kotaro Yoshimoto
41+
42+
16.5.8 (2025-06-23)
43+
-------------------
44+
45+
16.5.7 (2025-06-18)
46+
-------------------
47+
* Merge branch 'master' into dependabot/pip/requests-2.32.4
48+
* Contributors: Masaya Kataoka
49+
2750
16.5.6 (2025-06-12)
2851
-------------------
2952
* Merge branch 'master' into add-start-trigger-context

external/concealer/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>concealer</name>
5-
<version>16.5.6</version>
5+
<version>16.5.11</version>
66
<description>Provides a class 'Autoware' to conceal miscellaneous things to simplify Autoware management of the simulator.</description>
77
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
88
<license>Apache License 2.0</license>

0 commit comments

Comments
 (0)