Skip to content

Commit

Permalink
Updates MIGRATION.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TSNoble committed Nov 17, 2024
1 parent 4ae41ea commit 5a2843c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
API changes in MoveIt releases

## ROS Rolling
- [11/2024] All MoveIt 2 headers have been updated to use the `.hpp` extension. Please update all imports from `.h` to `.hpp`.
- [11/2024] All MoveIt 2 headers have been updated to use the `.hpp` extension.
`.h` headers are now autogenerated with a deprecation warning, and may be removed in future releases.
Please update your imports to use the `.hpp` headers.
- [12/2023] `trajectory_processing::Path` and `trajectory_processing::Trajectory` APIs have been updated to prevent misuse.
The constructors have been replaced by builder methods so that errors can be communicated. Paths and trajectories now need to be created with `Path::Create()` and `Trajectory::Create()`. These methods now return an `std::optional` that needs to be checked for a valid value. `Trajectory` no longer has the `isValid()` method. If it's invalid, `Trajectory::Create()` will return `std::nullopt`. Finally, `Path` now takes the list of input waypoints as `std::vector`, instead of `std::list`.
- [12/2023] LMA kinematics plugin is removed to remove the maintenance work because better alternatives exist like KDL or TracIK
Expand Down

0 comments on commit 5a2843c

Please sign in to comment.