You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improvements of MDP terms in nav_tasks and bugfix in trajectory sampler (#5)
# Description
### ✨ Additions & Enhancements
* `NavigationSE2Action` momentum support.
* **Height-scan observations**: occlusion-aware utilities incl. door
recognition.
* **Curriculum**: new helper `change_reward_param`.
* **Terrain generation**: `StairsRampTerrainCfg` now accepts
`random_state_file` for deterministic builds.
### 🐛 Fixes
* **nav_suite 0.2.4**
* `TrajectorySampling`: removed unnecessary `torch.int64` cast that
caused dtype mismatch.
* **nav_tasks 0.3.10**
* Height-scan clipping now respects min/max bounds.
* Correct usage of `quat_rotate` after Isaac Lab API change.
* `TrajectorySampling` index dtype cast to `torch.int64`.
* Third-party list in `pyproject.toml` updated to new package names.
* Corrected `GoalCommand.command` docstring (returns `(num_envs, 4)`).
* `FixGoalCommand.command` once again returns **position + heading**
(shape `(num_envs, 4)`) instead of position-only.
## Type of change
- Bug fix (non-breaking change which fixes an issue)
- New feature (non-breaking change which adds functionality)
## Checklist
- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./formatter.sh`
- [x] I have made corresponding changes to the documentation (will come
shortly)
- [x] My changes generate no new warnings
- [x] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [x] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there
Copy file name to clipboardExpand all lines: exts/nav_tasks/docs/CHANGELOG.rst
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,33 @@
1
1
Changelog
2
2
---------
3
3
4
+
0.3.10 (2025-08-08)
5
+
~~~~~~~~~~~~~~~~~~
6
+
7
+
Changed
8
+
^^^^^^^
9
+
10
+
- Updated configuration option ``attach_yaw_only`` to ``ray_alignment`` across sensor and environment configurations according to IsaacLab API changes in 2.1.1
11
+
- Updated math calls with :func:`isaaclab.utils.math.quat_rotate` according to IsaacLab API changes in 2.1.1.
12
+
- Updated :meth:`nav_tasks.mdp.commands.FixGoalCommand.command` to return only position plus heading instead of just position.
13
+
14
+
Added
15
+
^^^^^
16
+
17
+
- Added ``momentum`` feature and corresponding configuration options to :class:`nav_tasks.mdp.actions.NavigationSE2Action` and :class:`nav_tasks.mdp.actions.NavigationSE2ActionCfg`.
18
+
- Added occlusion-aware height scan utilities that better handle door recognition and terrain occlusions.
0 commit comments