-
Notifications
You must be signed in to change notification settings - Fork 95
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
Merge sdf 1.7 changes forward to 1.8 #570
Conversation
* add double sided material param * added to sdf 1.7 in gazebosim#410 Signed-off-by: Ian Chen <ichen@osrfoundation.org> Signed-off-by: Steve Peters <scpeters@openrobotics.org>
* added to sdf 1.7 in gazebosim#435 Signed-off-by: Nate Koenig <nate@openrobotics.org> Signed-off-by: Steve Peters <scpeters@openrobotics.org>
* originally added to 1.7 in gazebosim#429 Signed-off-by: Ian Chen <ichen@osrfoundation.org> Signed-off-by: Steve Peters <scpeters@openrobotics.org>
* added to 1.7 spec in gazebosim#446 Signed-off-by: ahcorde <ahcorde@gmail.com> Signed-off-by: Steve Peters <scpeters@openrobotics.org>
* added to sdf 1.7 in gazebosim#487 Signed-off-by: Ian Chen <ichen@osrfoundation.org> Signed-off-by: Steve Peters <scpeters@openrobotics.org>
* added to sdf 1.7 in gazebosim#514 Signed-off-by: Martin Pecka <peckama2@fel.cvut.cz> Signed-off-by: Steve Peters <scpeters@openrobotics.org>
* added to sdf 1.7 in gazebosim#521 Signed-off-by: Martin Pecka <peckama2@fel.cvut.cz> Signed-off-by: Steve Peters <scpeters@openrobotics.org>
I created #571 to track the meta-problem of remembering to copy these changes to the next folder when merging forward. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for noticing @scpeters. I believe there's a small change in frame.sdf
that was added in #316, otherwise, LGTM!
Here's a git incantation that lists the changes to sdf/1.7
since sdf/1.8
was created
git diff 11bcc70d00fb55f0b53d5a8daceab340c78cc117..HEAD sdf/1.7 > 1_7_changes.patch
That can be applied to sdf/1.8
with
patch -d sdf/1.8 -N --merge -p3 < 1_7_changes.patch
This may not always work, but at least it narrows down the number of files to look at.
* added to sdf 1.7 in gazebosim#316 Signed-off-by: Steve Peters <scpeters@openrobotics.org>
Thanks! |
Signed-off-by: Aaron Chong <aaronchongth@gmail.com>
* Copy spec 1.8 to 1.9 Signed-off-by: Aaron Chong <aaronchongth@gmail.com> * Merging in changes from #570 Signed-off-by: Aaron Chong <aaronchongth@gmail.com> * Fixing version in root Signed-off-by: Aaron Chong <aaronchongth@gmail.com>
🦟 Bug fix
I noticed that several changes to the
sdf/1.7
folder on thesdf10
branch were merged forward tosdf11
'ssdf/1.7
folder but not also copied to thesdf/1.8
folder. This manually ports SDFormat 1.7 changes in already insdf11
forward to SDFormat 1.8Summary
Changes to the
sdf/1.7
folder were introduced to thesdf9
andsdf10
branches in the following pull requests:They haven't yet been propagated forward to the
sdf/1.8
folder, so that's what I've done here. I usedmeld sdf/1.7 sdf/1.8
to manually identify the changes that should be propagated forward.Checklist
sh tools/code_check.sh
)test coverage)
another open pull request
to support the maintainers
Note to maintainers: Remember to use Squash-Merge