Release Notes
For versions through v0.0.30, see Older Release History.
v0.1.5 - ModelNode Base Class & Bvh Support
New Features
ModelNode Base Class
All 3D model loaders now inherit from a shared ModelNode base class, documenting the common props across all formats:
Bvh Component
New Bvh component for loading BVH (Biovision Hierarchy) motion capture data:
Bvh Parameters:
src/text— URL or inline BVH contentplayAnimation— Auto-play animation (default: True)animationSpeed— Playback speed multiplierboneRadius— Bone cylinder radiusjointColor— Joint sphere colorlabel— Show joint name labels
Improvements
- Standardized Obj initialization —
Objnow uses the consistent kwargs pattern like all other model classes - Improved docstrings —
Fbx,Stl,Dae,Glb,CoordsMarker, andArrowhave proper param/type notation and example usage blocks
Documentation
- New Bvh component reference with usage examples
v0.0.80rc4 - Dynamic Links & Scene Refactor
Dynamic Link/Unlink
Links can now be added and removed at runtime via vuer.workspace:
Scene Refactor
-
Sceneis now minimal with emptybgChildrenby default -
DefaultSceneincludes rich defaults:- Grid, HemisphereLightStage, Gamepad, Hands, MotionControllers
- SceneCamera (position
[0, 5, 10]), SceneCameraControl - CameraPreviewThumbs, CameraPreviewOverlay
-
Removed deprecated parameters:
defaultLights,defaultOrbitControls,show_helper
Other Changes
- Updated
params-prototo 3.2.4
v0.0.80rc2 - Workspace Link API & Image Encoders
This release candidate adds convenience methods for serving dynamic content and in-memory images.
New Features
Workspace.link() Method
Link callables to URL paths for serving dynamic content:
Features:
- Follows
os.link(src, dst)convention: source first, destination second - Auto-detects content-type from
MIME_TYPES(.jpg→image/jpeg) - Optional request parameter via signature inspection
- Supports bytes, dict/list (JSON), Blob, and string return types
Image Encoders
New encoder utilities for serving in-memory images:
Images should be numpy arrays or torch tensors with values in [0, 1] range.
Custom MIME Types
MIME_TYPES is now a MimeTypes class with a guess() method:
New Exports
v0.0.80rc1 - Workspace Multi-Path & Provider Pattern
This release candidate introduces a powerful new Workspace system for multi-path file serving, new Provider patterns for high-performance instanced rendering, and new visualization components.
New Features
Multi-Path Workspace System
The workspace parameter now accepts multiple paths and supports programmatic file serving:
Key Changes:
static_rootis deprecated → useworkspace/staticendpoint renamed →/workspacevuer.static_prefix→vuer.workspace_prefixvuer.localhost_prefixnow points to/workspace
New Blob Class for In-Memory Data
DepthPointCloud Component
Generate point clouds directly from depth images with colormap support:
DepthPointCloudProvider for High Performance
Render thousands of depth point clouds at 120fps with frustum culling and LoD:
BoundingBox Component
Render 3D bounding boxes with customizable edges and walls:
BoundingBoxProvider for Instanced Rendering
Render tens of thousands of bounding boxes efficiently:
API Changes Summary
| Old API | New API | Notes |
|---|---|---|
static_root="./data" | workspace="./data" | Deprecated with warning |
vuer.static_prefix | vuer.workspace_prefix | Network-accessible URL |
/static/file.png | /workspace/file.png | Endpoint renamed |
| Single path only | Multiple paths supported | workspace=["./a", "./b"] |
New Exports
Documentation
- New Depth Point Cloud example
- New Bounding Box component reference
- New Workspace API reference
Upcoming Release
Breaking Changes
- Renamed
killparameter tofree_port: Thekillparameter inVuer.start()andVuer.run()has been renamed tofree_portfor better clarity.
Bug Fixes
SSL/TLS Client Certificate Handling
Fixed an issue where the HTTPS server would request client certificates even when mutual TLS (mTLS) was not configured.
Before: Setting cert and key alone would still prompt browsers for client certificates.
After: Client certificates are only requested when ca_cert is explicitly provided:
This fix allows WebXR applications to work seamlessly with self-signed certificates without browser prompts for client authentication.
New Features
Improved Decorator Pattern
The spawn decorator now returns a BoundFn instance with a .start() method, enabling a cleaner pattern:
Benefits:
- Works identically in regular Python and IPython/Jupyter
- More explicit control over when the server starts
- Clearer separation between definition and execution
IPython/Jupyter Support
Vuer now seamlessly detects and works with IPython/Jupyter environments:
The server automatically detects the existing event loop and schedules itself accordingly.
New session.forever() Method
Added VuerSession.forever() to keep sessions alive indefinitely:
This replaces manual event waiting patterns.
Comprehensive Component Definitions
Added 18 new component definitions from schema specification:
Scene Components (16 new):
- Transform & Render:
VuerSplat,VuerGroup,RenderRoot - Camera:
SceneCamera,SceneControl - Lighting:
AmbientLightStage - Preview:
CameraPreviewThumbs,CameraPreviewOverlay - Animation:
AnimationClip,VectorTrack,QuaternionTrack,ThreeAnimate,PlaybackAnimate - Model Loaders:
Fbx,Stl,Dae
Three.js Components (2 new):
- Cameras:
OrthographicCamera,FisheyeCamera
Total component count now: 101 classes across all schema modules. Complete schema definitions available in schema.dial.
Improvements
Better free_port Error Handling
The free_port parameter now gracefully handles common errors:
- Race conditions with process lookup (silently ignored)
- Missing
psutildependency (informative message) - Other killport failures (warning but continues)
No more crashes when freeing ports!
Class-Based Decorator Implementation
The internal implementation has been refactored from nested functions to a cleaner BoundFn class:
- Better code organization
- Easier to understand and maintain
- Provides the
.start()method
Deprecations
Vuer.run()is deprecated: UseVuer.start()instead. Therun()method now issues aDeprecationWarningand will be removed in a future version.
Documentation
- Added
docs/tutorials/basics/ipython_jupyter.md- Complete guide for IPython/Jupyter usage - Added
QUICKSTART.md- Quick start guide with installation and basic examples - Updated all tutorials to use the new
@app.spawn()+main.start()pattern - Simplified "Setting Up Your First Scene" tutorial
- Improved async programming tutorial with clearer examples
Bug Fixes
- Fixed
RuntimeError: There is no current event loopin IPython/Jupyter - Fixed crashes when using
free_port=Truewith race conditions - Fixed event loop handling for Python 3.10+
Internal Changes
- Refactored
spawn()andbind()decorators to useBoundFnclass - Added
Server.start()method in base class with IPython/Jupyter detection - Improved error handling for port freeing operations
- Added
omit()function with glob pattern support for cleaner code