Skip to content

Commit

Permalink
Merge branch 'master' into nobleci
Browse files Browse the repository at this point in the history
  • Loading branch information
rjoomen authored Jul 22, 2024
2 parents 4d9c4bc + bf6a52a commit 84b8cb9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dependencies.repos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repositories:
ros_industrial_cmake_boilerplate:
type: git
url: https://github.com/ros-industrial/ros_industrial_cmake_boilerplate.git
version: 0.6.0
version: 0.6.2
tesseract:
type: git
url: https://github.com/tesseract-robotics/tesseract.git
Expand Down
6 changes: 3 additions & 3 deletions dependencies_unstable.repos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repositories:
ros_industrial_cmake_boilerplate:
type: git
url: https://github.com/ros-industrial/ros_industrial_cmake_boilerplate.git
version: master
version: 0.6.2
tesseract:
type: git
url: https://github.com/tesseract-robotics/tesseract.git
Expand All @@ -22,11 +22,11 @@ repositories:
descartes_light:
type: git
url: https://github.com/swri-robotics/descartes_light.git
version: master
version: 0.4.3
opw_kinematics:
type: git
url: https://github.com/Jmeyer1292/opw_kinematics.git
version: master
version: 0.5.0
ifopt:
type: git
url: https://github.com/ethz-adrl/ifopt.git
Expand Down
2 changes: 1 addition & 1 deletion dependencies_with_ext.repos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repositories:
ros_industrial_cmake_boilerplate:
type: git
url: https://github.com/ros-industrial/ros_industrial_cmake_boilerplate.git
version: 0.6.0
version: 0.6.2
tesseract_ext:
type: git
url: https://github.com/tesseract-robotics/tesseract_ext.git
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ void TesseractPlanningServer::onMotionPlanningCallback(
// Create solve data storage
auto data = std::make_unique<TaskComposerDataStorage>();
data->setData("planning_input", std::move(planning_input));
data->setData("environment", std::move(env));
data->setData("environment", std::shared_ptr<const tesseract_environment::Environment>(std::move(env)));
data->setData("profiles", profiles_);
auto move_profile_remapping = tesseract_rosutils::fromMsg(goal->request.move_profile_remapping);
if (!move_profile_remapping.empty())
Expand Down

0 comments on commit 84b8cb9

Please sign in to comment.