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

Sync with MoveIt #834

Merged
merged 15 commits into from
Nov 30, 2021
Merged

Sync with MoveIt #834

merged 15 commits into from
Nov 30, 2021

Commits on Aug 16, 2021

  1. Configuration menu
    Copy the full SHA
    6e798bf View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2021

  1. Configuration menu
    Copy the full SHA
    4d6f805 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2021

  1. Remove python3-osrf-pycommon from Dockerfile (moveit#2822)

    This was a workaround for catkin/catkin_tools#594,
    which is no longer needed because python3-catkin-tools 0.7 added the required dependency.
    mintar authored Aug 18, 2021
    Configuration menu
    Copy the full SHA
    6ab6d89 View commit details
    Browse the repository at this point in the history
  2. Fix issue #2809 (broken test with clang) (moveit#2820)

    Because std::make_pair uses the decayed type (std::string), the strings were actually copied into a temporary, which was subsequently referenced by the elements of std::pair, leading to a stack-use-after-scope error.
    Explicitly passing const references into std::make_pair via std::cref() resolves the issue mentioned in #2809.
    rhaschke authored Aug 18, 2021
    Configuration menu
    Copy the full SHA
    0e9844d View commit details
    Browse the repository at this point in the history
  3. Fix Pilz planner's collision detection (moveit#2803)

    We need to pass the current PlanningScene down to the actual collision checking methods
    rr-tom-noble authored Aug 18, 2021
    Configuration menu
    Copy the full SHA
    7855e1f View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2021

  1. CI: Update pat-s/always-upload-cache

    Vatan Aksoy Tezer authored Aug 19, 2021
    Configuration menu
    Copy the full SHA
    6012934 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1d75d64 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f8f8281 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2021

  1. Fix Bullet collision returning wrong contact type (moveit#2829)

    * fix getting wrong type ID
    
    * update unit test
    yurirocha15 authored Aug 20, 2021
    Configuration menu
    Copy the full SHA
    1859ec2 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2021

  1. Configuration menu
    Copy the full SHA
    0d38983 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2021

  1. MotionPlanningFrame: Gracefully handle undefined parent widget (movei…

    …t#2833)
    
    If the MP plugin was created in a non-rviz context (e.g. directly via librviz),
    there might be no window manager and thus no parent widget available for panels.
    rhaschke authored Aug 23, 2021
    Configuration menu
    Copy the full SHA
    7cea1f2 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2021

  1. Makes rviz trajectory visualization topic relative (moveit#2835)

    This commit makes the trajectory visualization topic relative. This was
    done to make sure that it respects the namespaces that are set in
    launch files.
    
    Co-authored-by: Felix von Drigalski <FvDrigalski@gmail.com>
    Co-authored-by: Michael Görner <me@v4hn.de>
    3 people authored Aug 24, 2021
    Configuration menu
    Copy the full SHA
    bef8f7c View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2021

  1. Consider attached bodies in Pilz planner moveit#2773 (moveit#2824)

    - Remove convertToRobotTrajectory() and integrate its line of code into setSuccessResponse()
    - Pass the final start_state into setSuccessResponse()
    
    Co-authored-by: Cristian Beltran <cristianbehe@gmail.com>
    Co-authored-by: Robert Haschke <rhaschke@techfak.uni-bielefeld.de>
    3 people authored Aug 26, 2021
    Configuration menu