Skip to content

Commit

Permalink
Merge branch 'main' into replace-path-with-lane-id
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsudome-r authored Feb 6, 2025
2 parents ae6aa83 + 45eafd9 commit 201dc38
Show file tree
Hide file tree
Showing 68 changed files with 6,859 additions and 354 deletions.
31 changes: 8 additions & 23 deletions .github/workflows/github-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ name: github-release

on:
push:
branches:
- beta/v*
tags:
- v*
- "[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
beta-branch-or-tag-name:
description: The name of the beta branch or tag to release
tag-name:
description: The name of the tag to release
type: string
required: true

Expand All @@ -25,36 +23,24 @@ jobs:
id: set-tag-name
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
REF_NAME="${{ github.event.inputs.beta-branch-or-tag-name }}"
REF_NAME="${{ github.event.inputs.tag-name }}"
else
REF_NAME="${{ github.ref_name }}"
fi
echo "ref-name=$REF_NAME" >> $GITHUB_OUTPUT
echo "tag-name=${REF_NAME#beta/}" >> $GITHUB_OUTPUT
echo "tag-name=$REF_NAME" >> $GITHUB_OUTPUT
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ steps.set-tag-name.outputs.ref-name }}

- name: Set target name for beta branches
id: set-target-name
run: |
if [[ "${{ steps.set-tag-name.outputs.ref-name }}" =~ "beta/" ]]; then
echo "target-name=${{ steps.set-tag-name.outputs.ref-name }}" >> $GITHUB_OUTPUT
fi
- name: Create a local tag for beta branches
run: |
if [ "${{ steps.set-target-name.outputs.target-name }}" != "" ]; then
git tag "${{ steps.set-tag-name.outputs.tag-name }}"
fi
ref: ${{ steps.set-tag-name.outputs.tag-name }}

- name: Run generate-changelog
id: generate-changelog
uses: autowarefoundation/autoware-github-actions/generate-changelog@v1
with:
git-cliff-args: --tag-pattern "^(\d+)\.(\d+)\.(\d+)$" --latest

- name: Select verb
id: select-verb
Expand All @@ -74,7 +60,6 @@ jobs:
run: |
gh release ${{ steps.select-verb.outputs.verb }} "${{ steps.set-tag-name.outputs.tag-name }}" \
--draft \
--target "${{ steps.set-target-name.outputs.target-name }}" \
--title "Release ${{ steps.set-tag-name.outputs.tag-name }}" \
--notes "$NOTES"
env:
Expand Down
9 changes: 8 additions & 1 deletion .pre-commit-config-optional.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@
# https://github.com/autowarefoundation/sync-file-templates
# To make changes, update the source repository and follow the guidelines in its README.

# https://pre-commit.ci/#configuration
ci:
autofix_commit_msg: "style(pre-commit-optional): autofix"
# we already have our own daily update mechanism, we set this to quarterly
autoupdate_schedule: quarterly
autoupdate_commit_msg: "ci(pre-commit-optional): quarterly autoupdate"

repos:
- repo: https://github.com/tcort/markdown-link-check
rev: v3.13.6
rev: v3.12.2
hooks:
- id: markdown-link-check
args: [--quiet, --config=.markdown-link-check.json]
25 changes: 25 additions & 0 deletions autoware_dependency_checker/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package autoware_dependency_checker
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2025-01-28)
------------------
* unify version to 0.0.0
* feat(dependency_checker): add dependency checker script (`#89 <https://github.com/autowarefoundation/autoware_tools/issues/89>`_)
* add dependency_checker
* fix
* style(pre-commit): autofix
* fix bag
* apply markdownlint
* fix typo
Co-authored-by: Yutaka Kondo <[email protected]>
fix typo
Co-authored-by: Yutaka Kondo <[email protected]>
* add dep ament_cmake
* fix based on shellcheck
* fix words
* add cspell ignore
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Yutaka Kondo <[email protected]>
* Contributors: Masaki Baba, Yutaka Kondo
16 changes: 16 additions & 0 deletions bag2lanelet/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package bag2lanelet
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2025-01-28)
------------------
* feat(bag2lanelet): add bag2lanelet package (`#6 <https://github.com/autowarefoundation/autoware_tools/issues/6>`_)
* feat(bag2lanelet): add bag2lanelet package
* apply pre-commit
* add maintainer
* fix typo
* fix packages.xml
* style(pre-commit): autofix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Contributors: Takamasa Horibe
2 changes: 1 addition & 1 deletion bag2lanelet/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_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>bag2lanelet</name>
<version>0.0.0</version>
<version>0.1.0</version>
<description>The bag2lanelet package</description>
<maintainer email="[email protected]">Shinnosuke Hirakawa</maintainer>
<maintainer email="[email protected]">Taiki Tanaka</maintainer>
Expand Down
86 changes: 86 additions & 0 deletions common/autoware_debug_tools/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package autoware_debug_tools
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2025-01-28)
------------------
* feat: use autoware_internal_debug_msgs in processing_time_plotter.py (`#184 <https://github.com/autowarefoundation/autoware_tools/issues/184>`_)
* feat: use autoware_internal_debug_msgs in processing_time_plotter.py
* fix typo: argment -> argument
* fix typo: LINESTYLES -> LINE_STYLES
---------
* chore: sync files (`#11 <https://github.com/autowarefoundation/autoware_tools/issues/11>`_)
Co-authored-by: github-actions <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* feat(autoware_debug_tools): add rosout_log_reconstructor.py (`#160 <https://github.com/autowarefoundation/autoware_tools/issues/160>`_)
* feat(autoware_debug_tools): add rosout_log_reconstructor.py
* update README.md
---------
* fix: to plot "exe_time_ms" of ndt_scan_matcher (`#161 <https://github.com/autowarefoundation/autoware_tools/issues/161>`_)
* Fixed to plot "exe_time_ms" of ndt_scan_matcher
* style(pre-commit): autofix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Added maintainers (`#162 <https://github.com/autowarefoundation/autoware_tools/issues/162>`_)
* feat(autoware_debug_tools): add topic connection checker (`#132 <https://github.com/autowarefoundation/autoware_tools/issues/132>`_)
* feat: add topic connection checker, first commit as a proposal
* style(pre-commit): autofix
* implement diagnostic based topic settings; implement the topic localization
* temp
* refactor the codes
* add readme for topic connection checker
* test with debug
* style(pre-commit): autofix
* fix flake8
* ignore rviz2 node, ignore hyper-linked files
* style(pre-commit): autofix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* fix(system_usage_monitor): change the node search method (`#137 <https://github.com/autowarefoundation/autoware_tools/issues/137>`_)
* Fixed the node search method
* Added a comment
---------
* feat: add "skip_plt_show" arg to plotter (`#136 <https://github.com/autowarefoundation/autoware_tools/issues/136>`_)
* Added "skip_plt_show" arg to plotter
* style(pre-commit): autofix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* feat: enable to choose topic with argument (`#95 <https://github.com/autowarefoundation/autoware_tools/issues/95>`_)
* feat(autoware_debug_tools): processing time total processing tree (`#92 <https://github.com/autowarefoundation/autoware_tools/issues/92>`_)
* feat: add total processing time tree to processing time visualizer
* feat: add percentage of processing time
* feat: add rest of the measured timekeepers
* style(pre-commit): autofix
* feat: print average first and the worst case next
* style(pre-commit): autofix
* feat: refactor processing time tree sum method to summarize_tree
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* feat(autoware_debug_tools): add system performance plotter (`#91 <https://github.com/autowarefoundation/autoware_tools/issues/91>`_)
* feat(autoware_debug_tools): add system performance plotter
* update README
* fix README.md
---------
* feat(processing_time_visualizer): add summarize option (`#90 <https://github.com/autowarefoundation/autoware_tools/issues/90>`_)
* add summarize feature
* add summarize
* style(pre-commit): autofix
* fix typo
* make summarize option dynamic
* apply suggestion
* style(pre-commit): autofix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Y.Hisaki <[email protected]>
* fix(autoware_debug_tools): the image of system_usage_monitor was wrong (`#87 <https://github.com/autowarefoundation/autoware_tools/issues/87>`_)
* feat(autoware_dubug_tools): add function to report worst time when r is pressed at the end (`#86 <https://github.com/autowarefoundation/autoware_tools/issues/86>`_)
* feat(autoware_debug_tools): add system_usage_monitor.py (`#85 <https://github.com/autowarefoundation/autoware_tools/issues/85>`_)
* feat(autoware_debug_tools): add system_usage_monitor.py
* publish system usage
---------
* feat(autoware_debug_tools): add processing time visualizer (`#75 <https://github.com/autowarefoundation/autoware_tools/issues/75>`_)
* feat(autoware_debug_tools): add processing time visualizer
* ignore spell check
* update everythings
---------
* Contributors: Masaki Baba, SakodaShintaro, Taekjin LEE, Takayuki Murooka, Yoshi Ri, Yukinari Hisaki, Yuxuan Liu, awf-autoware-bot[bot]
2 changes: 1 addition & 1 deletion common/autoware_debug_tools/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_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>autoware_debug_tools</name>
<version>0.0.0</version>
<version>0.1.0</version>
<description>The autoware_debug_tools package</description>
<maintainer email="[email protected]">Yukinari Hisaki</maintainer>
<maintainer email="[email protected]">Satoshi Ota</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion common/autoware_debug_tools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name=package_name,
version="0.0.0",
version="0.1.0",
packages=find_packages(exclude=["test"]),
data_files=[
("share/ament_index/resource_index/packages", ["resource/" + package_name]),
Expand Down
13 changes: 13 additions & 0 deletions common/autoware_sample_vehicle_description/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package autoware_sample_vehicle_description
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2025-01-28)
------------------
* unify version to 0.0.0
* test(static_centerline_generator): add launch test with autoware_sample_vehicle_launch package (`#190 <https://github.com/autowarefoundation/autoware_tools/issues/190>`_)
* test(static_centerline_generator): add launch test with autoware_sample_vehicle_launch package
* fix
* fix dependency to autoware_launch
---------
* Contributors: Takayuki Murooka, Yutaka Kondo
Loading

0 comments on commit 201dc38

Please sign in to comment.