Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/isaaclab.python.kit
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ keywords = ["experience", "app", "usd"]

# Isaac Sim Extra
"isaacsim.asset.importer.mjcf" = {}
"isaacsim.asset.importer.urdf" = {}
"isaacsim.asset.importer.urdf" = {version = "2.4.24", exact = true}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does enable_extension take a version? or do you add it to the string?
enable_extension("isaacsim.asset.importer.urdf-2.4.24")

"omni.physx.bundle" = {}
"omni.physx.tensors" = {}
"omni.replicator.core" = {}
Expand Down
2 changes: 1 addition & 1 deletion source/isaaclab/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

# Note: Semantic Versioning is used: https://semver.org/
version = "0.48.0"
version = "0.49.0"

# Description
title = "Isaac Lab framework for Robot Learning"
Expand Down
9 changes: 9 additions & 0 deletions source/isaaclab/docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
---------

0.49.0 (2025-11-10)
~~~~~~~~~~~~~~~~~~~

Fixed
^^^^^

* Reverted the URDF Importer version to 2.4.24 to avoid issues with merging joints on the latest URDF importer in Isaac Sim 5.1


0.48.0 (2025-11-03)
~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions source/isaaclab/isaaclab/sim/converters/urdf_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ def __init__(self, cfg: UrdfConverterCfg):
cfg: The configuration instance for URDF to USD conversion.
"""
manager = omni.kit.app.get_app().get_extension_manager()
if not manager.is_extension_enabled("isaacsim.asset.importer.urdf"):
enable_extension("isaacsim.asset.importer.urdf")
if not manager.is_extension_enabled("isaacsim.asset.importer.urdf-2.4.24"):
enable_extension("isaacsim.asset.importer.urdf-2.4.24")
from isaacsim.asset.importer.urdf._urdf import acquire_urdf_interface

self._urdf_interface = acquire_urdf_interface()
Expand Down
4 changes: 2 additions & 2 deletions source/isaaclab/test/sim/test_spawn_from_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def test_spawn_usd_fails(sim):
def test_spawn_urdf(sim):
"""Test loading prim from URDF file."""
# retrieve path to urdf importer extension
enable_extension("isaacsim.asset.importer.urdf")
extension_path = get_extension_path_from_name("isaacsim.asset.importer.urdf")
enable_extension("isaacsim.asset.importer.urdf-2.4.24")
extension_path = get_extension_path_from_name("isaacsim.asset.importer.urdf-2.4.24")
# Spawn franka from URDF
cfg = sim_utils.UrdfFileCfg(
asset_path=f"{extension_path}/data/urdf/robots/franka_description/robots/panda_arm_hand.urdf",
Expand Down
4 changes: 2 additions & 2 deletions source/isaaclab/test/sim/test_urdf_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def sim_config():
# Create a new stage
stage_utils.create_new_stage()
# retrieve path to urdf importer extension
enable_extension("isaacsim.asset.importer.urdf")
extension_path = get_extension_path_from_name("isaacsim.asset.importer.urdf")
enable_extension("isaacsim.asset.importer.urdf-2.4.24")
extension_path = get_extension_path_from_name("isaacsim.asset.importer.urdf-2.4.24")
# default configuration
config = UrdfConverterCfg(
asset_path=f"{extension_path}/data/urdf/robots/franka_description/robots/panda_arm_hand.urdf",
Expand Down