Skip to content

Commit 88d3dda

Browse files
[CI][Auto Version Bump] Compile changelog fragments (schedule)
Bumped packages: - isaaclab: 5.2.0 → 5.2.1 - isaaclab_newton: 0.9.0 → 0.9.1 - isaaclab_physx: 0.7.0 → 0.7.1
1 parent e0a217d commit 88d3dda

10 files changed

Lines changed: 48 additions & 33 deletions

File tree

source/isaaclab/changelog.d/jichuanh-fix-docs-changelog-indentation.skip

Whitespace-only changes.

source/isaaclab/changelog.d/jmart-singular-rotation.rst

Lines changed: 0 additions & 16 deletions
This file was deleted.

source/isaaclab/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
# Note: Semantic Versioning is used: https://semver.org/
4-
version = "5.2.0"
4+
version = "5.2.1"
55

66
# Description
77
title = "Isaac Lab framework for Robot Learning"

source/isaaclab/docs/CHANGELOG.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
Changelog
22
---------
33

4+
5.2.1 (2026-05-15)
5+
~~~~~~~~~~~~~~~~~~
6+
7+
Fixed
8+
^^^^^
9+
10+
* Fixed :func:`~isaaclab.utils.math.create_rotation_matrix_from_view` returning a singular
11+
matrix when the look-at direction was parallel to the up axis. The function now produces
12+
a valid orthonormal frame via an alternate reference vector, and fills NaN for rows with
13+
truly undefined forward direction (``eyes == targets`` or non-finite input). Callers
14+
detect per-row failure with ``torch.isnan(R).any(dim=(-2, -1))``.
15+
* Fixed :func:`~isaaclab.utils.math.quat_from_matrix` silently returning a non-unit
16+
quaternion for non-rotation input (singular, reflection, or scale-error matrices).
17+
Such inputs now return NaN, detectable via :func:`torch.isnan`.
18+
* Fixed :meth:`~isaaclab.sensors.camera.Camera.set_world_poses_from_view` and
19+
:meth:`~isaaclab.sensors.ray_caster.RayCasterCamera.set_world_poses_from_view` silently
20+
applying garbage poses when an eye position equaled its target. Degenerate rows are now
21+
skipped (with a logged warning), and ``ValueError`` is raised if every row in the batch
22+
is degenerate.
23+
24+
425
5.2.0 (2026-05-14)
526
~~~~~~~~~~~~~~~~~~
627

source/isaaclab_newton/changelog.d/jmart-singular-rotation.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

source/isaaclab_newton/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
# Note: Semantic Versioning is used: https://semver.org/
4-
version = "0.9.0"
4+
version = "0.9.1"
55

66
# Description
77
title = "Newton simulation interfaces for IsaacLab core package"

source/isaaclab_newton/docs/CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
---------
33

4+
0.9.1 (2026-05-15)
5+
~~~~~~~~~~~~~~~~~~
6+
7+
Fixed
8+
^^^^^
9+
10+
* Fixed the acceleration-arrow debug visualizer in
11+
:class:`~isaaclab_newton.sensors.pva.Pva` drawing arrows in undefined directions for
12+
bodies with effectively zero acceleration. Such bodies are now skipped from the
13+
visualization.
14+
15+
416
0.9.0 (2026-05-14)
517
~~~~~~~~~~~~~~~~~~
618

source/isaaclab_physx/changelog.d/jmart-singular-rotation.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

source/isaaclab_physx/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
# Note: Semantic Versioning is used: https://semver.org/
4-
version = "0.7.0"
4+
version = "0.7.1"
55

66
# Description
77
title = "PhysX simulation interfaces for IsaacLab core package"

source/isaaclab_physx/docs/CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
---------
33

4+
0.7.1 (2026-05-15)
5+
~~~~~~~~~~~~~~~~~~
6+
7+
Fixed
8+
^^^^^
9+
10+
* Fixed the acceleration-arrow debug visualizer in
11+
:class:`~isaaclab_physx.sensors.pva.Pva` drawing arrows in undefined directions for
12+
bodies with effectively zero acceleration. Such bodies are now skipped from the
13+
visualization.
14+
15+
416
0.7.0 (2026-05-14)
517
~~~~~~~~~~~~~~~~~~
618

0 commit comments

Comments
 (0)