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

rationalize boost::optional dereference in behavior_velocity_planner #1248

Closed
3 of 8 tasks
VRichardJP opened this issue Jul 6, 2022 · 6 comments
Closed
3 of 8 tasks
Labels
status:help-wanted Assistance or contributors needed. status:stale Inactive or outdated issues. (auto-assigned) type:new-feature New functionalities or additions, feature requests.

Comments

@VRichardJP
Copy link
Contributor

VRichardJP commented Jul 6, 2022

Checklist

  • I've read the contribution guidelines.
  • I've searched other issues and no duplicate issues were found.
  • I've agreed with the maintainers that I can plan this task.

Description

boost::optional is used quite often across the code base. In most of the code, it is dereferenced carefully, like so:

if (optional_value) {
  const auto val = optional_value.get();
}

// or
if (!optional_value) 
  return err_value;
const auto val = optional_value.get();

However in the behavior_velocity_planner, boost::optional<double> current_accel is dereferenced at many places without any prior check. Or sometimes even with a check after the dereference:

const auto current_acceleration = planner_data_->current_accel.get();
const double max_acc = planner_data_->max_stop_acceleration_threshold;
const double max_jerk = planner_data_->max_stop_jerk_threshold;
const double delay_response_time = planner_data_->delay_response_time;
if (!planner_data_->current_accel) {
RCLCPP_WARN_THROTTLE(
logger_, *clock_, 1000,
"[no stopping area] empty current acc! check current vel has been received.");
return false;
}

In the code above, the if clause is unreachable since an exception will be thrown at planner_data_->current_accel.get() if planner_data_->current_accel is not set. current_accel is only set after 2 messages have been received from ~/input/vehicle_odometry

Here is a list of all unchecked dereference in behavior_velocity_planner:

src/universe/autoware.universe/planning/behavior_velocity_planner/include/utilization/trajectory_utils.hpp
136:  const double a0 = planner_data->current_accel.get(); // smoothPath()

src/universe/autoware.universe/planning/behavior_velocity_planner/src/scene_module/intersection/util.cpp
172:  const double current_acc = planner_data->current_accel.get(); // generateStopLine()

src/universe/autoware.universe/planning/behavior_velocity_planner/src/scene_module/run_out/scene.cpp
55:  const auto current_acc = planner_data_->current_accel.get(); // modifyPathVelocity()
144:  const float initial_acc = planner_data_->current_accel.get(); // visualizeDetectionArea()

src/universe/autoware.universe/planning/behavior_velocity_planner/src/scene_module/no_stopping_area/scene_no_stopping_area.cpp
374:  const auto current_acceleration = planner_data_->current_accel.get(); // isStoppable()

src/universe/autoware.universe/planning/behavior_velocity_planner/src/scene_module/occlusion_spot/scene_occlusion_spot.cpp
94:    param_.v.a_ego = planner_data_->current_accel.get(); // modifyPathVelocity()

Purpose

Since planner_data_->current_accel may be unset, it would make sense to consistently check its state before dereferencing it (otherwise there is no point using boost::optional)

Possible approaches

add early return in related functions when planner_data_->current_accel is not set

Definition of done

no more unchecked dereference in:

  • src/universe/autoware.universe/planning/behavior_velocity_planner/include/utilization/trajectory_utils.hpp
  • src/universe/autoware.universe/planning/behavior_velocity_planner/src/scene_module/intersection/util.cpp
  • src/universe/autoware.universe/planning/behavior_velocity_planner/src/scene_module/run_out/scene.cpp
  • src/universe/autoware.universe/planning/behavior_velocity_planner/src/scene_module/no_stopping_area/scene_no_stopping_area.cpp
  • src/universe/autoware.universe/planning/behavior_velocity_planner/src/scene_module/occlusion_spot/scene_occlusion_spot.cpp
@taikitanaka3
Copy link
Contributor

@VRichardJP
thank you for isssue
I think these values are not used until current accel is not set commonly


, and will be repalced by /localization/accleration
#1213

@VRichardJP
Copy link
Contributor Author

I get it will be solved once #1213 will be merged then.

@taikitanaka3
Copy link
Contributor

@VRichardJP
Do you have any problem with current implementation?
I think as long as isDataReady() returns false
scene modules above you mentioned will not run

miursh pushed a commit to miursh/autoware.universe that referenced this issue Jul 12, 2022
* release v0.4.0

* Fixed uninitialized variable. (autowarefoundation#763)

* Fixed various bugs. (autowarefoundation#768)

* Fixed various bugs.

* Fixed wrong status report of NIC.

* Added the mode of CPU Usage to check statistics calculated as averages among all processors by default. (autowarefoundation#788)

* fix uninitialized variables (autowarefoundation#816)

* remove ROS1 packages temporarily

Signed-off-by: mitsudome-r <[email protected]>

* Revert "remove ROS1 packages temporarily"

This reverts commit a9436882d50dc09fa5b8d6c0a151a10def76b242.

Signed-off-by: mitsudome-r <[email protected]>

* add COLCON_IGNORE to ros1 packages

Signed-off-by: mitsudome-r <[email protected]>

* Rename launch files to launch.xml (autowarefoundation#28)

* Port system monitor to ros2 (autowarefoundation#71)

* Implement a utility function that spins and updates a monitor node.

* Port cpu monitor

* Port hdd monitor.

* Port mem_monitor to ROS2

* Port  net_monitor to ROS2

* Port  ntp_monitor to ROS2

* Port  process_monitor to ROS2

* Port GPU_monitor to ROS2

* Port msr_reader and hdd_reader to ROS2

* Clean up the build and launch files:

* Clean up and comment on CMake and package files.
* Port the launch file to ROS2

* Rename h files to hpp (autowarefoundation#142)

* Change includes

* Rename files

* Adjustments to make things compile

* Other packages

* Adjust copyright notice on 532 out of 699 source files (autowarefoundation#143)

* Use quotes for includes where appropriate (autowarefoundation#144)

* Use quotes for includes where appropriate

* Fix lint tests

* Make tests pass hopefully

* Run uncrustify on the entire Pilot.Auto codebase (autowarefoundation#151)

* Run uncrustify on the entire Pilot.Auto codebase

* Exclude open PRs

* ROS2 Linting: system_monitor (autowarefoundation#207)

* Add linters

* Fix clang-tidy error in util.hpp

* Ros2 v0.8.0 system monitor (autowarefoundation#276)

* fix dependency of system_monitor

Signed-off-by: Takagi, Isamu <[email protected]>

* Rename ROS-related .yaml to .param.yaml (autowarefoundation#352)

* Rename ROS-related .yaml to .param.yaml

Signed-off-by: Kenji Miyake <[email protected]>

* Remove prefix 'default_' of yaml files

Signed-off-by: Kenji Miyake <[email protected]>

* Rename vehicle_info.yaml to vehicle_info.param.yaml

Signed-off-by: Kenji Miyake <[email protected]>

* Rename diagnostic_aggregator's param files

Signed-off-by: Kenji Miyake <[email protected]>

* Fix overlooked parameters

Signed-off-by: Kenji Miyake <[email protected]>

* Exclude SwPowerCap as an error. (autowarefoundation#1146) (autowarefoundation#364)

Co-authored-by: ito-san <[email protected]>

* [Update v0.9.0] system monitor (autowarefoundation#365)

* Disable CPU Load Average warning. (autowarefoundation#1147)

Signed-off-by: mitsudome-r <[email protected]>

* Fix cpu_monitor respawning forever. (autowarefoundation#1150)

* Disable cpu_temperature in planning simulation (autowarefoundation#1151)

Signed-off-by: mitsudome-r <[email protected]>

* Net Monitor: Handle as an error if specified device not exist. (autowarefoundation#1152)

* Handled as an error if specified device not exist.

* Disable network diags in simulation

Signed-off-by: Kenji Miyake <[email protected]>

Co-authored-by: Kenji Miyake <[email protected]>

* apply ament_uncrustify

Signed-off-by: mitsudome-r <[email protected]>

* Disable resource monitoring in planning_simulator (autowarefoundation#1172)

Signed-off-by: Kenji Miyake <[email protected]>

* Treat logging errors as safe faults (autowarefoundation#1164)

Signed-off-by: Kenji Miyake <[email protected]>

* Fix test code of system_monitor (autowarefoundation#1178)

Signed-off-by: Kenji Miyake <[email protected]>

Co-authored-by: ito-san <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>

* Use thread for ntpdate. (autowarefoundation#1160) (autowarefoundation#375)

* Use thread for ntpdate. (autowarefoundation#1160)

Signed-off-by: mitsudome-r <[email protected]>

* removed unused variable

Signed-off-by: mitsudome-r <[email protected]>

* Import v0.9.1 (autowarefoundation#431)

* add local optimal solution ocillation check to ndt_scan_matcher (autowarefoundation#1182)

* Add obstacle_crush diagnostic (autowarefoundation#1186)

Signed-off-by: Kenji Miyake <[email protected]>

* Fix diagnostics api (autowarefoundation#1185)

* Fix diagnostics api

Signed-off-by: Kenji Miyake <[email protected]>

* Don't overwrite level

Signed-off-by: Kenji Miyake <[email protected]>

* Overwrite level of No Fault diagnostics

Signed-off-by: Kenji Miyake <[email protected]>

* Add missing diag in autoware_error_monitor.yaml (autowarefoundation#1187)

Signed-off-by: Kenji Miyake <[email protected]>

* Filter hazard_status (autowarefoundation#1191)

* Filter hazard_status

Signed-off-by: Kenji Miyake <[email protected]>

* Filter leaf diagnostics

Signed-off-by: Kenji Miyake <[email protected]>

* Fix wrong calculation of available memory. (autowarefoundation#1168)

* Fixed wrong calculation of available memory.

* Added comments about output example of free -tb command.

* Change monitoring method to get HDD temperature and usage per specified device. (autowarefoundation#1195)

* Changed monitoring method to get temperature and usage per specified device.

* Fixed test codes.

* Removed unnecessary (void) parameter.

* return input pointcloud when ground plane not found (autowarefoundation#1190)

* fix yaw-smoothing bug (autowarefoundation#1198)

* Fix lint

Signed-off-by: Kenji Miyake <[email protected]>

Co-authored-by: Taichi Higashide <[email protected]>
Co-authored-by: ito-san <[email protected]>
Co-authored-by: tkimura4 <[email protected]>

* Fix typo in system module (autowarefoundation#434)

* Fix typo in system module

* Change variable name

* Move comments

* Apply uncrustify

* Split system_monitor config (autowarefoundation#452)

Signed-off-by: Kenji Miyake <[email protected]>

* Remove unnecessary diagnostic update. (autowarefoundation#455)

* add use_sim-time option (autowarefoundation#454)

* Sync public repo (autowarefoundation#1228)

* [simple_planning_simulator] add readme (autowarefoundation#424)

* add readme of simple_planning_simulator

Signed-off-by: Takamasa Horibe <[email protected]>

* Update simulator/simple_planning_simulator/README.md

* set transit_margin_time to intersect. planner (autowarefoundation#460)

* Fix pose2twist (autowarefoundation#462)

Signed-off-by: Takagi, Isamu <[email protected]>

* Ros2 vehicle info param server (autowarefoundation#447)

* add vehicle_info_param_server

* update vehicle info

* apply format

* fix bug

* skip unnecessary search

* delete vehicle param file

* fix bug

* Ros2 fix topic name part2 (autowarefoundation#425)

* Fix topic name of traffic_light_classifier

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix topic name of traffic_light_visualization

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix topic name of traffic_light_ssd_fine_detector

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix topic name of traffic_light_map_based_detector

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix lint traffic_light_recognition

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix lint traffic_light_ssd_fine_detector

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix lint traffic_light_classifier

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix lint traffic_light_classifier

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix lint traffic_light_ssd_fine_detector

Signed-off-by: Takagi, Isamu <[email protected]>

* Fix issues in hdd_reader (autowarefoundation#466)

* Fix some issues detected by Coverity Scan and Clang-Tidy

* Update launch command

* Add more `close(new_sock)`

* Simplify the definitions of struct

* fix: re-construct laneletMapLayer for reindex RTree (autowarefoundation#463)

* Rviz overlay render fix (autowarefoundation#461)

* Moved painiting in SteeringAngle plugin to update()

Signed-off-by: Adam Dabrowski <[email protected]>

* super class now back to MFD

Signed-off-by: Adam Dabrowski <[email protected]>

* uncrustified

Signed-off-by: Adam Dabrowski <[email protected]>

* acquire data in mutex

Signed-off-by: Adam Dabrowski <[email protected]>

* back to RTD as superclass

Signed-off-by: Adam Dabrowski <[email protected]>

* Rviz overlay render in update (autowarefoundation#465)

* Moved painiting in SteeringAngle plugin to update()

Signed-off-by: Adam Dabrowski <[email protected]>

* super class now back to MFD

Signed-off-by: Adam Dabrowski <[email protected]>

* uncrustified

Signed-off-by: Adam Dabrowski <[email protected]>

* acquire data in mutex

Signed-off-by: Adam Dabrowski <[email protected]>

* removed unnecessary includes and some dead code

Signed-off-by: Adam Dabrowski <[email protected]>

* Adepted remaining vehicle plugin classes to render-in-update concept. Returned to MFD superclass

Signed-off-by: Adam Dabrowski <[email protected]>

* restored RTD superclass

Signed-off-by: Adam Dabrowski <[email protected]>

Co-authored-by: Takamasa Horibe <[email protected]>
Co-authored-by: tkimura4 <[email protected]>
Co-authored-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kazuki Miyahara <[email protected]>
Co-authored-by: Makoto Tokunaga <[email protected]>
Co-authored-by: Adam Dąbrowski <[email protected]>

* Fix issues in gpu_monitor (autowarefoundation#1248)

* Fix issues in gpu_monitor
* Fix uninitialized variables
* Use range-based for loop
* Fix compile errors of tegra_gpu_monitor
* Replace C-style to C++-style

* Make iterators const

* Fix fmt::format() usage error

* Unify Apache-2.0 license name (autowarefoundation#1242)

* Remove use_sim_time for set_parameter (autowarefoundation#1260)

Signed-off-by: wep21 <[email protected]>

* [system_monitor] change some nodes into components (autowarefoundation#1234)

Signed-off-by: mitsudome-r <[email protected]>
Signed-off-by: wep21 <[email protected]>

Co-authored-by: Takeshi Miura <[email protected]>
Co-authored-by: Takeshi Miura <[email protected]>
Co-authored-by: wep21 <[email protected]>

* add system_monitor.launch.py (autowarefoundation#1238)

* add system_monitor.launch.py

* refactor system_monitor.launch.py

* fix launch bug

* fix typo

* fix launch py

* fix param loading

* format code

* fix system monitor executor to publish diagnostics asynclonously (autowarefoundation#1283)

* Fix lint errors (autowarefoundation#1378)

* Fix lint errors

Signed-off-by: Kenji Miyake <[email protected]>

* Fix variable names

Signed-off-by: Kenji Miyake <[email protected]>

* Add kernel CPU usage. (autowarefoundation#1465)

* Add kernel CPU usage.

* Change CPU x: usage to CPU x: total.

* Changed variable name.

* Add markdownlint and prettier (autowarefoundation#1661)

* Add markdownlint and prettier

Signed-off-by: Kenji Miyake <[email protected]>

* Ignore .param.yaml

Signed-off-by: Kenji Miyake <[email protected]>

* Apply format

Signed-off-by: Kenji Miyake <[email protected]>

* suppress warnings for system monitor (autowarefoundation#1723)

* fix for hdd_monitor

* fix no initialization and warning

* change command for ntp_monitor (autowarefoundation#1705)

* [EVT4-403] change command for ntp_monitor

* [EVT4-403] fixed CI build error

* [EVT4-403] fixed cpplint error

* delete executeChronyc thread, fix error topic and log output code

* fix cpplint error and code style divergence

* fix cpplint error(missing correction)

* Fix MD029 (autowarefoundation#1813)

Signed-off-by: Kenji Miyake <[email protected]>

* Fix -Wunused-parameter (autowarefoundation#1836)

* Fix -Wunused-parameter

Signed-off-by: Kenji Miyake <[email protected]>

* Fix mistake

Signed-off-by: Kenji Miyake <[email protected]>

* fix spell

* Fix lint issues

Signed-off-by: Kenji Miyake <[email protected]>

* Ignore flake8 warnings

Signed-off-by: Kenji Miyake <[email protected]>

Co-authored-by: Hiroki OTA <[email protected]>

* add gpu usage per process (autowarefoundation#1798)

* add gpu usage per process

* change illegal usage(4294967295%) to 0%, and fix CI running errors

* Replace gettimeofday with rclcpp::Node::now().

* Fix uncrustify error.

* Replace rclcpp::Node::now() with rclcpp::Clock(RCL_SYSTEM_TIME).

Co-authored-by: ito-san <[email protected]>

* fix some typos (autowarefoundation#1941)

* fix some typos

* fix typo

* Fix typo

Signed-off-by: Kenji Miyake <[email protected]>

Co-authored-by: Kenji Miyake <[email protected]>

* suppress warnings for system directory autowarefoundation#2046

* add sort-package-xml hook in pre-commit (autowarefoundation#1881)

* add sort xml hook in pre-commit

* change retval to exit_status

* rename

* add prettier plugin-xml

* use early return

* add license note

* add tier4 license

* restore prettier

* change license order

* move local hooks to public repo

* move prettier-xml to pre-commit-hooks-ros

* update version for bug-fix

* apply pre-commit

* Add execution time logging. (autowarefoundation#2066)

* Add markdown-link-check pre-commit (autowarefoundation#2215)

* add markdown-lint-check pre-commit

* delete files argument

* add optional hook

* modify comment

* add comment

* delete hook

* add retry option

* add option

* add files arg

* Fix links in hdd_reader.md

Signed-off-by: Kenji Miyake <[email protected]>

* Ignore 403

Signed-off-by: Kenji Miyake <[email protected]>

* Ignore tier4 github url

Signed-off-by: Kenji Miyake <[email protected]>

* Update link

Signed-off-by: Kenji Miyake <[email protected]>

Co-authored-by: Kenji Miyake <[email protected]>

* Change formatter to clang-format and black (autowarefoundation#2332)

* Revert "Temporarily comment out pre-commit hooks"

This reverts commit 748e9cdb145ce12f8b520bcbd97f5ff899fc28a3.

* Replace ament_lint_common with autoware_lint_common

Signed-off-by: Kenji Miyake <[email protected]>

* Remove ament_cmake_uncrustify and ament_clang_format

Signed-off-by: Kenji Miyake <[email protected]>

* Apply Black

Signed-off-by: Kenji Miyake <[email protected]>

* Apply clang-format

Signed-off-by: Kenji Miyake <[email protected]>

* Fix build errors

Signed-off-by: Kenji Miyake <[email protected]>

* Fix for cpplint

* Fix include double quotes to angle brackets

Signed-off-by: Kenji Miyake <[email protected]>

* Apply clang-format

Signed-off-by: Kenji Miyake <[email protected]>

* Fix build errors

Signed-off-by: Kenji Miyake <[email protected]>

* Add COLCON_IGNORE (autowarefoundation#500)

Signed-off-by: Kenji Miyake <[email protected]>

* remove COLCON_IGNORE in system_packages and map_tf_generator (autowarefoundation#532)

Co-authored-by: mitsudome-r <[email protected]>
Co-authored-by: ito-san <[email protected]>
Co-authored-by: Kazuki Miyahara <[email protected]>
Co-authored-by: Nikolai Morin <[email protected]>
Co-authored-by: Yunus Emre Çalışkan <[email protected]>
Co-authored-by: Jilada Eccleston <[email protected]>
Co-authored-by: Daisuke Nishimatsu <[email protected]>
Co-authored-by: Takagi, Isamu <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: Kenji Miyake <[email protected]>
Co-authored-by: Taichi Higashide <[email protected]>
Co-authored-by: Takamasa Horibe <[email protected]>
Co-authored-by: Takagi, Isamu <[email protected]>
Co-authored-by: Makoto Tokunaga <[email protected]>
Co-authored-by: Adam Dąbrowski <[email protected]>
Co-authored-by: Takeshi Miura <[email protected]>
Co-authored-by: Takeshi Miura <[email protected]>
Co-authored-by: wep21 <[email protected]>
Co-authored-by: Hiroki OTA <[email protected]>
Co-authored-by: v-kitahara8153 <[email protected]>
Co-authored-by: ito-san <[email protected]>
Co-authored-by: Keisuke Shima <[email protected]>
Co-authored-by: taikitanaka3 <[email protected]>
@BonoloAWF BonoloAWF added type:new-feature New functionalities or additions, feature requests. status:help-wanted Assistance or contributors needed. labels Jul 12, 2022
@VRichardJP
Copy link
Contributor Author

@taikitanaka3 I did not have any runtime issue with these. But since there was a recent case of crash from unchecked boost::optional dereference (#1245) I looked for similar pattern ;)

@stale
Copy link

stale bot commented Sep 11, 2022

This pull request has been automatically marked as stale because it has not had recent activity.

@stale stale bot added the status:stale Inactive or outdated issues. (auto-assigned) label Sep 11, 2022
@takayuki5168
Copy link
Contributor

takayuki5168 commented Oct 25, 2022

I agree with @VRichardJP 's idea.

When creating planner_data, the optional should be removed. If the optional cannot be removed since it is null, isDataready should return false.

badai-nguyen pushed a commit to badai-nguyen/autoware.universe that referenced this issue May 2, 2024
iwatake2222 pushed a commit to iwatake2222/autoware.universe that referenced this issue Jan 17, 2025
iwatake2222 added a commit to iwatake2222/autoware.universe that referenced this issue Jan 17, 2025
* chore(package.xml): bump version to 0.38.0 (autowarefoundation#1226)

* add changelog

Signed-off-by: Yutaka Kondo <[email protected]>

* unify package.xml version to 0.37.0

Signed-off-by: Yutaka Kondo <[email protected]>

* 0.38.0

* fix organization

Signed-off-by: Yutaka Kondo <[email protected]>

---------

Signed-off-by: Yutaka Kondo <[email protected]>

* youtalk username

Signed-off-by: Yutaka Kondo <[email protected]>

* update changelog

Signed-off-by: Yutaka Kondo <[email protected]>

* 0.39.0

* Update autoware_launch/CHANGELOG.rst

Co-authored-by: Ryohsuke Mitsudome <[email protected]>

* change username

Signed-off-by: Yutaka Kondo <[email protected]>

* chore(package.xml): bump version to 0.39.0 (autowarefoundation#1248)


Signed-off-by: Go Sakayori <[email protected]>
Signed-off-by: Go Sakayori <[email protected]>
Signed-off-by: kosuke55 <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Shintaro Sakoda <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: takeshi.iwanari <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Takayuki Murooka <[email protected]>
Signed-off-by: Daniel Sanchez <[email protected]>
Signed-off-by: Maxime CLEMENT <[email protected]>
Signed-off-by: xtk8532704 <[email protected]>
Signed-off-by: Yutaka Kondo <[email protected]>
Co-authored-by: Yuki TAKAGI <[email protected]>
Co-authored-by: Go Sakayori <[email protected]>
Co-authored-by: Kosuke Takeuchi <[email protected]>
Co-authored-by: Taekjin LEE <[email protected]>
Co-authored-by: SakodaShintaro <[email protected]>
Co-authored-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: Satoshi OTA <[email protected]>
Co-authored-by: iwatake <[email protected]>
Co-authored-by: ito-san <[email protected]>
Co-authored-by: Takayuki Murooka <[email protected]>
Co-authored-by: danielsanchezaran <[email protected]>
Co-authored-by: Maxime CLEMENT <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: xtk8532704 <[email protected]>

* update CHANGELOG.rst

Signed-off-by: Fumiya Watanabe <[email protected]>

* 0.40.0

---------

Signed-off-by: Yutaka Kondo <[email protected]>
Signed-off-by: Go Sakayori <[email protected]>
Signed-off-by: Go Sakayori <[email protected]>
Signed-off-by: kosuke55 <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Shintaro Sakoda <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: takeshi.iwanari <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Takayuki Murooka <[email protected]>
Signed-off-by: Daniel Sanchez <[email protected]>
Signed-off-by: Maxime CLEMENT <[email protected]>
Signed-off-by: xtk8532704 <[email protected]>
Signed-off-by: Junya Sasaki <[email protected]>
Signed-off-by: Fumiya Watanabe <[email protected]>
Co-authored-by: Yutaka Kondo <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: Yuki TAKAGI <[email protected]>
Co-authored-by: Go Sakayori <[email protected]>
Co-authored-by: Kosuke Takeuchi <[email protected]>
Co-authored-by: Taekjin LEE <[email protected]>
Co-authored-by: SakodaShintaro <[email protected]>
Co-authored-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: Satoshi OTA <[email protected]>
Co-authored-by: iwatake <[email protected]>
Co-authored-by: ito-san <[email protected]>
Co-authored-by: Takayuki Murooka <[email protected]>
Co-authored-by: danielsanchezaran <[email protected]>
Co-authored-by: Maxime CLEMENT <[email protected]>
Co-authored-by: xtk8532704 <[email protected]>
Co-authored-by: Junya Sasaki <[email protected]>
Kazunori-Nakajima pushed a commit to Kazunori-Nakajima/autoware.universe that referenced this issue Feb 6, 2025
…et filtering (autowarefoundation#1307)

* chore(package.xml): bump version to 0.38.0 (autowarefoundation#1226)

* add changelog

Signed-off-by: Yutaka Kondo <[email protected]>

* unify package.xml version to 0.37.0

Signed-off-by: Yutaka Kondo <[email protected]>

* 0.38.0

* fix organization

Signed-off-by: Yutaka Kondo <[email protected]>

---------

Signed-off-by: Yutaka Kondo <[email protected]>

* youtalk username

Signed-off-by: Yutaka Kondo <[email protected]>

* update changelog

Signed-off-by: Yutaka Kondo <[email protected]>

* 0.39.0

* Update autoware_launch/CHANGELOG.rst

Co-authored-by: Ryohsuke Mitsudome <[email protected]>

* change username

Signed-off-by: Yutaka Kondo <[email protected]>

* chore(package.xml): bump version to 0.39.0 (autowarefoundation#1248)


Signed-off-by: Go Sakayori <[email protected]>
Signed-off-by: Go Sakayori <[email protected]>
Signed-off-by: kosuke55 <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Shintaro Sakoda <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: takeshi.iwanari <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Takayuki Murooka <[email protected]>
Signed-off-by: Daniel Sanchez <[email protected]>
Signed-off-by: Maxime CLEMENT <[email protected]>
Signed-off-by: xtk8532704 <[email protected]>
Signed-off-by: Yutaka Kondo <[email protected]>
Co-authored-by: Yuki TAKAGI <[email protected]>
Co-authored-by: Go Sakayori <[email protected]>
Co-authored-by: Kosuke Takeuchi <[email protected]>
Co-authored-by: Taekjin LEE <[email protected]>
Co-authored-by: SakodaShintaro <[email protected]>
Co-authored-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: Satoshi OTA <[email protected]>
Co-authored-by: iwatake <[email protected]>
Co-authored-by: ito-san <[email protected]>
Co-authored-by: Takayuki Murooka <[email protected]>
Co-authored-by: danielsanchezaran <[email protected]>
Co-authored-by: Maxime CLEMENT <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: xtk8532704 <[email protected]>

* feat: add height filter option for lanelet filter

Signed-off-by: yoshiri <[email protected]>

* chore: add description in parameter

Signed-off-by: yoshiri <[email protected]>

---------

Signed-off-by: Yutaka Kondo <[email protected]>
Signed-off-by: Go Sakayori <[email protected]>
Signed-off-by: Go Sakayori <[email protected]>
Signed-off-by: kosuke55 <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Shintaro Sakoda <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: takeshi.iwanari <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Takayuki Murooka <[email protected]>
Signed-off-by: Daniel Sanchez <[email protected]>
Signed-off-by: Maxime CLEMENT <[email protected]>
Signed-off-by: xtk8532704 <[email protected]>
Signed-off-by: Junya Sasaki <[email protected]>
Signed-off-by: mitsudome-r <[email protected]>
Signed-off-by: yoshiri <[email protected]>
Co-authored-by: Yutaka Kondo <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Co-authored-by: Yuki TAKAGI <[email protected]>
Co-authored-by: Go Sakayori <[email protected]>
Co-authored-by: Kosuke Takeuchi <[email protected]>
Co-authored-by: Taekjin LEE <[email protected]>
Co-authored-by: SakodaShintaro <[email protected]>
Co-authored-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: Satoshi OTA <[email protected]>
Co-authored-by: iwatake <[email protected]>
Co-authored-by: ito-san <[email protected]>
Co-authored-by: Takayuki Murooka <[email protected]>
Co-authored-by: danielsanchezaran <[email protected]>
Co-authored-by: Maxime CLEMENT <[email protected]>
Co-authored-by: xtk8532704 <[email protected]>
Co-authored-by: Junya Sasaki <[email protected]>
Co-authored-by: Ryohsuke Mitsudome <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status:help-wanted Assistance or contributors needed. status:stale Inactive or outdated issues. (auto-assigned) type:new-feature New functionalities or additions, feature requests.
Projects
None yet
Development

No branches or pull requests

4 participants