Skip to content

Commit 00096f0

Browse files
committed
chore: New release 2.10.2
1 parent 73e452b commit 00096f0

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

exts/wandelbots.omni/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ reloadable = true
33
order = 1000 # Make sure all .dlls are loaded before this extension
44

55
[package]
6-
version = "2.10.1"
6+
version = "2.10.2"
77
category = "Simulation"
88
title = "Wandelbots NOVA"
99
description = "Simulate your robotics cell running on Wandelbots NOVA."

exts/wandelbots.omni/docs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog - Wandelbots NOVA x Nvidia Isaac Sim
22

3+
## 2.10.2 (2025-10-23)
4+
5+
### Bug Fixes
6+
7+
* **CSI-2142:** Fixed clear and get motion group endpoints
8+
39
## 2.10.1 (2025-10-22)
410

511
### Bug Fixes

exts/wandelbots.omni/wandelbots/omni/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "Wandelbots Omniservice",
55
"description": "A microservice-based framework for managing Omniverse functionalities",
6-
"version": "2.10.1"
6+
"version": "2.10.2"
77
},
88
"paths": {
99
"/stage/scene": {

exts/wandelbots.omni/wandelbots/omni/router/v2/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
omniservice_app = FastAPI(
2828
title="Wandelbots Omniservice",
2929
description="A microservice-based framework for managing Omniverse functionalities",
30-
version="2.10.1",
30+
version="2.10.2",
3131
docs_url=None,
3232
redoc_url=None,
3333
)

exts/wandelbots.omni/wandelbots/omni/router/v2/manipulators/motion_groups.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async def create_motion_group(
100100

101101

102102
@motion_groups_router.put(
103-
path="/{prim_path}",
103+
path="/{prim_path:path}",
104104
status_code=status.HTTP_204_NO_CONTENT,
105105
operation_id="update_motion_group_stream",
106106
response_model=None,
@@ -152,7 +152,7 @@ async def list_motion_groups(
152152

153153

154154
@motion_groups_router.get(
155-
path="/{prim_path}",
155+
path="/{prim_path:path}",
156156
operation_id="get_motion_group",
157157
response_model=MotionGroupConfiguration,
158158
responses={status.HTTP_404_NOT_FOUND: {"description": "Motion-Group not found"}},
@@ -167,7 +167,7 @@ async def get_motion_group(
167167

168168

169169
@motion_groups_router.delete(
170-
path="/{prim_path}",
170+
path="/{prim_path:path}",
171171
status_code=status.HTTP_204_NO_CONTENT,
172172
operation_id="remove_motion_group",
173173
response_model=None,
@@ -197,5 +197,5 @@ async def clear_motion_groups(motion_group_service: MotionGroupServiceDep) -> No
197197
Removes all motion_groups
198198
"""
199199

200-
for prim_path in list(motion_group_service.get_all_prim_paths()):
200+
for prim_path in list(motion_group_service.get_all_motion_group_prim_paths()):
201201
await motion_group_service.remove_motion_group(prim_path)

0 commit comments

Comments
 (0)