Commit 3abe65cc authored by peterd-NV's avatar peterd-NV Committed by Kelly Guo

Removes deprecated usage of quat_rotate from articulation data class (#482)

<!--
Thank you for your interest in sending a pull request. Please make sure
to check the contribution guidelines.

Link:
https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html
-->

Removes the deprecated usage of quat_rotate from articulation data and
replaces it with quat_apply.

Fixes # (issue)

Fixes spamming of deprecation warning messages to terminal screen when
running lab scripts.

<!-- As you go through the list, delete the ones that are not
applicable. -->

- Bug fix (non-breaking change which fixes an issue)

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there

<!--
As you go through the checklist above, you can mark something as done by
putting an x character in it

For example,
- [x] I have done this task
- [ ] I have not done this task
-->
parent 3b3fbe71
[package] [package]
# Note: Semantic Versioning is used: https://semver.org/ # Note: Semantic Versioning is used: https://semver.org/
version = "0.42.21" version = "0.42.22"
# Description # Description
title = "Isaac Lab framework for Robot Learning" title = "Isaac Lab framework for Robot Learning"
......
Changelog Changelog
--------- ---------
0.42.21 (2025-06-25) 0.42.22 (2025-06-25)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Added Added
...@@ -12,7 +12,7 @@ Added ...@@ -12,7 +12,7 @@ Added
env instance env instance
0.42.20 (2025-07-11) 0.42.21 (2025-07-11)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Fixed Fixed
...@@ -22,7 +22,7 @@ Fixed ...@@ -22,7 +22,7 @@ Fixed
restricting the resetting joint indices be that user defined joint indices. restricting the resetting joint indices be that user defined joint indices.
0.42.19 (2025-07-11) 0.42.20 (2025-07-11)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Fixed Fixed
...@@ -32,7 +32,7 @@ Fixed ...@@ -32,7 +32,7 @@ Fixed
env_ids are passed. env_ids are passed.
0.42.18 (2025-07-09) 0.42.19 (2025-07-09)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Added Added
...@@ -49,7 +49,7 @@ Fixed ...@@ -49,7 +49,7 @@ Fixed
buffer on recording. buffer on recording.
0.42.17 (2025-07-10) 0.42.18 (2025-07-10)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Added Added
...@@ -80,7 +80,7 @@ Changed ...@@ -80,7 +80,7 @@ Changed
* Changed the implementation of :func:`~isaaclab.utils.math.copysign` to better reflect the documented functionality. * Changed the implementation of :func:`~isaaclab.utils.math.copysign` to better reflect the documented functionality.
0.42.16 (2025-07-08) 0.42.17 (2025-07-08)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Fixed Fixed
...@@ -90,7 +90,7 @@ Fixed ...@@ -90,7 +90,7 @@ Fixed
:class:`~isaaclab.assets.articulation.RigidObjectCollectionData` :class:`~isaaclab.assets.articulation.RigidObjectCollectionData`
0.42.15 (2025-07-08) 0.42.16 (2025-07-08)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Added Added
...@@ -99,7 +99,7 @@ Added ...@@ -99,7 +99,7 @@ Added
* Added ability to set platform height independent of object height for trimesh terrains. * Added ability to set platform height independent of object height for trimesh terrains.
0.42.14 (2025-07-01) 0.42.15 (2025-07-01)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Added Added
...@@ -110,7 +110,7 @@ Added ...@@ -110,7 +110,7 @@ Added
* Added deprecation warnings to the existing :attr:`max_height_noise` but still functions. * Added deprecation warnings to the existing :attr:`max_height_noise` but still functions.
0.42.13 (2025-07-03) 0.42.14 (2025-07-03)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Fixed Fixed
...@@ -119,7 +119,7 @@ Fixed ...@@ -119,7 +119,7 @@ Fixed
* Fixed unittest tests that are floating inside pytests for articulation and rendering * Fixed unittest tests that are floating inside pytests for articulation and rendering
0.42.12 (2025-07-03) 0.42.13 (2025-07-03)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Changed Changed
...@@ -129,7 +129,7 @@ Changed ...@@ -129,7 +129,7 @@ Changed
videos with the ``--video`` flag. videos with the ``--video`` flag.
0.42.11 (2025-06-27) 0.42.12 (2025-06-27)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Added Added
...@@ -144,7 +144,7 @@ Fixed ...@@ -144,7 +144,7 @@ Fixed
* Fixed the implementation mistake in :func:`~isaaclab.utils.math.quat_inv`. * Fixed the implementation mistake in :func:`~isaaclab.utils.math.quat_inv`.
0.42.10 (2025-06-25) 0.42.11 (2025-06-25)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Fixed Fixed
...@@ -153,8 +153,8 @@ Fixed ...@@ -153,8 +153,8 @@ Fixed
* Fixed :func:`~isaaclab.utils.dict.update_class_from_dict` preventing setting flat Iterables with different lengths. * Fixed :func:`~isaaclab.utils.dict.update_class_from_dict` preventing setting flat Iterables with different lengths.
0.42.9 (2025-06-25) 0.42.10 (2025-06-25)
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
Added Added
^^^^^ ^^^^^
...@@ -163,7 +163,7 @@ Added ...@@ -163,7 +163,7 @@ Added
sampling, which is now the default behavior. If set to False, the previous behavior of sharing the same bias value across all components is retained. sampling, which is now the default behavior. If set to False, the previous behavior of sharing the same bias value across all components is retained.
0.42.8 (2025-06-18) 0.42.9 (2025-06-18)
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
Fixed Fixed
...@@ -175,7 +175,7 @@ Fixed ...@@ -175,7 +175,7 @@ Fixed
* added pytest that check against these data consistencies * added pytest that check against these data consistencies
0.42.7 (2025-06-24) 0.42.8 (2025-06-24)
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
Added Added
...@@ -189,16 +189,7 @@ Changed ...@@ -189,16 +189,7 @@ Changed
* Renamed :func:`~isaaclab.utils.noise.NoiseModel.apply` method to :func:`~isaaclab.utils.noise.NoiseModel.__call__`. * Renamed :func:`~isaaclab.utils.noise.NoiseModel.apply` method to :func:`~isaaclab.utils.noise.NoiseModel.__call__`.
<<<<<<< HEAD 0.42.7 (2025-06-12)
<<<<<<< HEAD
0.40.6 (2025-06-12)
=======
0.41.6 (2025-06-12)
>>>>>>> cf094c211f (Updates to Isaac Sim 5.0 (#379))
=======
0.42.6 (2025-06-12)
>>>>>>> b048c33739 (Adds support for Stage in Memory (#375))
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
Fixed Fixed
...@@ -207,6 +198,15 @@ Fixed ...@@ -207,6 +198,15 @@ Fixed
* Fixed potential issues in :func:`~isaaclab.envs.mdp.events.randomize_visual_texture_material` related to handling visual prims during texture randomization. * Fixed potential issues in :func:`~isaaclab.envs.mdp.events.randomize_visual_texture_material` related to handling visual prims during texture randomization.
0.42.6 (2025-06-11)
~~~~~~~~~~~~~~~~~~~
Changed
^^^^^^^
* Remove deprecated usage of quat_rotate from articulation data class and replace with quat_apply.
0.42.5 (2025-05-22) 0.42.5 (2025-05-22)
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment