You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Bump version from \`${BASE_VERSION}\` to \`${NEW_VERSION}\`."
172
+
echo
173
+
if [ -s "${DELETED_CHANGELOG_PACKAGES_FILE}" ]; then
174
+
printf "%s\n\n%s\n" \
175
+
"## Packages whose \`CHANGELOG.rst\` was reset" \
176
+
"The following packages had their \`CHANGELOG.rst\` deleted before regenerating changelogs (e.g. their version had diverged from \`${BASE_VERSION}\`). Please double-check the regenerated changelog entries for these packages:"
177
+
while IFS= read -r pkg; do
178
+
[ -z "${pkg}" ] && continue
179
+
echo "- \`${pkg}\`"
180
+
done < "${DELETED_CHANGELOG_PACKAGES_FILE}"
181
+
fi
182
+
} > "${body_file}"
183
+
echo "body_file=${body_file}" >> $GITHUB_OUTPUT
184
+
shell: bash
185
+
69
186
- name: Create PR
70
-
id: create-pr
71
-
run: >
72
-
gh
73
-
pr
74
-
create
75
-
--base=main
76
-
--body="Bump version to ${{ steps.bump-version-from-humble-branch.outputs.version }}"
77
-
--title="chore: bump version to ${{ steps.bump-version-from-humble-branch.outputs.version }}"
Copy file name to clipboardExpand all lines: api/autoware_adapi_adaptors/CHANGELOG.rst
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,46 @@
2
2
Changelog for package autoware_adapi_adaptors
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+
1.9.0 (2026-06-24)
6
+
------------------
7
+
* Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
8
+
* refactor(autoware_adapi_adaptors): extract pure helpers and add unit tests (`#1147 <https://github.com/autowarefoundation/autoware_core/issues/1147>`_)
9
+
* refactor(autoware_adapi_adaptors): extract pure helpers and add unit tests
10
+
Extract the previously inlined, node-coupled logic of the two RViz-to-AD-API
11
+
adaptor nodes into small internal-only free/templated helpers so it can be
12
+
unit-tested without spinning up a ROS node, and add the package's first test/
13
+
directory:
14
+
- vector_to_array<T,N>() in parameter_helper.hpp: the pure size-validating
15
+
vector-to-array covariance parsing (throw branch is now testable).
16
+
- decide_routing_action() in routing_state_machine.hpp: the on_timer
17
+
merge-window/state-machine, returning the next action and updated counter.
18
+
- set_goal() / append_waypoint() in route_builder.hpp: the route-request
19
+
building rules, including the on_waypoint frame-mismatch guard.
20
+
The public node API/ABI is unchanged; the callbacks now delegate to these
21
+
helpers. Behavior is preserved: the covariance size-error message is identical
22
+
for N=36, and the timer/route-building branches map one-to-one to the previous
0 commit comments