# Rerun changelog ## [0.34.1](https://github.com/rerun-io/rerun/compare/0.34.0...0.34.1) - 2026-07-07 ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Fix: auto-refresh collections when opening a recording [9d40120](https://github.com/rerun-io/rerun/commit/9d40120bc4a83e7403c9487674f860339cdc83d3) - Better error for unsupported mp4 codec [949b6a8](https://github.com/rerun-io/rerun/commit/949b6a89cc53fc22726a15797d69070609281129) - Fix stack overflow for live-streamed data [1f3f5af](https://github.com/rerun-io/rerun/commit/1f3f5af16af5d82fc9987364cb5df77eaf399464) #### ๐Ÿ“ฆ Dependencies - Patch `tonic-web-wasm-client` with cherry-picked trailer changes [7436cda](https://github.com/rerun-io/rerun/commit/7436cda05cb74b8ff092b4b64dfdf65092074be6) ## [0.34.0](https://github.com/rerun-io/rerun/compare/0.33.1...0.34.0) - 2026-07-06 ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-34 ### โœจ Overview & highlights #### Viewer MCP We've added a MCP that allows an llm agent to see and interact with the Viewer! You could ask your agent to - verify its work looks as expected in the Viewer. - debug a bug when something doesn't show up right. - explore a recording or dataset to search for specific patterns. The agent has full control over the Viewer, meaning it can see and click any widget. Here's an example where Claude Sonnet was asked to create a fancy particle animation of the Rerun logo and verify its work using the mcp in the open Viewer (sped up by a lot, except when showing the end result): https://github.com/user-attachments/assets/14ffe7ed-6000-4193-900c-627784682125 Once it wrote the script, it logged the recording to the Viewer, and then iterated until the result looked as requested. It adjusted the camera position, improved the particle rendering by looking at different frames in the animation, and then debugged why the fade out animation was still showing particles on the last frame.
Full prompt > /goal Create a new rerun python example in this folder that uses reruns 2D shapes to recreate the rerun logo (rerun-wordmark-black.svg). > There should be a nice fade-in animation in the beginning, 10 frames duration. Then pause a bit with the full rerun logo visible and then > the shapes should explosively fade away with a 20 frame animation before the recording ends. > > You may only stop once the recreated logo in the viewer looks close to the provided svg (black text, white background). > Use the mcp to verify in the open viewer, don't ever kill it. Once done, launch an opus agent and ask it to judge how > closely it looks to the original image. Keep going until it's convinced that it looks close.
See our [mcp docs](https://rerun.io/docs/reference/viewer/mcp) to get started. #### Learning course https://rerun.io/learn is a great way to learn how the Rerun data model covers the full physical AI experiment loop. It is a short, hands-on course for robotics ML engineers who want the full robot learning data loop in one place: ``` raw data -> RRD -> derived layers -> dataset queries -> training -> evaluation ``` #### Rerun agent skills We added new skills to the Rerun repo to make it easier to investigate existing robotics data with Rerun. You can install the skills in your project via: ```sh npx skills add rerun-io/rerun ``` The new [learning course](https://rerun.io/learn) also shows how these agent skills can be used to collect, refine and train with robotics data. #### `VoxelGridMap` archetype Rerun now supports sparse voxel grids through a new [`VoxelGridMap`](https://rerun.io/docs/reference/types/archetypes/voxel_grid_map) archetype (thanks to [@makeecat](https://github.com/makeecat) for the contribution!). The archetype supports sparse indexing, anisotropic voxel sizes, pose offsets, and optional explicit colors or values & colormap per voxel. Rerun's MCAP importer now also converts the *dense* ROS `nav2_msgs/VoxelGrid` and Foxglove `VoxelGrid` formats to Rerun `VoxelGridMap`. And if you wonder how the smooth 3D navigation through the [voxel scene](https://github.com/ephtracy/voxel-model) in this video was done, see below! https://github.com/user-attachments/assets/87fb80da-66dd-4fcd-8b35-ab553696f536 #### ๐ŸŽฎ Gamepad support in 3D views You can now use a gamepad to navigate 3D views in the native viewer. This makes it easier to do fine-grained, complex maneuvers with varying speed - e.g. for navigating large scenes or for screen videos. Analog sticks control the eye position and look target, shoulder triggers move the eye up and down, and shoulder buttons accelerate/decelerate. **Note:** The gamepad feature is currently experimental and can be activated through the settings menu. Switch the 3D view's eye controls to `FirstPerson` for optimal experience. Under the hood, we use the [`gilrs`](https://crates.io/crates/gilrs) crate that supports a wide range of devices. #### Drag & drop components You can now drag & drop a component right from the streams panel to visualize it in a Time series view or Status timeline. https://github.com/user-attachments/assets/d70587a9-2020-4ae8-9cf3-0fef54dcf896 #### Transform debugging tool We added a new debugging UI for visual introspection of the 3D transform cache. This allows to view the tree structure of the transform hierarchy, including potentially disconnected trees, and inspect the latest stored values of each frame node or transform edge. The UI supports horizontal and vertical tree layout and you can filter by transform type (e.g. static or temporal). **Note:** this UI is currently a tab in the dev panel (accessible via "Toggle dev panel" in the menu or ctrl/cmd+shift+m). But we are open to making this a dedicated view in the future - let us know if you have any feedback! https://github.com/user-attachments/assets/b4b1ea6e-bce9-4e88-9ede-262f545e3b47 ### โš ๏ธ Breaking changes - **SDK**: If you relied on the `log_tick` timeline being automatically created, you'll now have to call `set_log_tick_enabled(true)`. - **Python**: `rr.send_dataframe` is now stricter for more correctness. See the migration guide for more details. - **Python**: The deprecated python module `rerun.recording` has been removed; Use `rerun.experimental.RrdReader` instead. - **SDK**: Several deprecated `DatasetEntry` methods have been removed. - **SDK**: `ParquetReader` column rules have been removed in favor of [lenses](https://rerun.io/docs/concepts/query-and-transform/lenses). ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-34 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Make `log_tick` timeline OPT-IN [f734978](https://github.com/rerun-io/rerun/commit/f734978e091b52ddc04f7781a6d396441f526a7c) - Allow to change shading of `Points3D` [cd7fa3e](https://github.com/rerun-io/rerun/commit/cd7fa3ebde1979239a59c720f5f81ad26e33fcf5) - Extract out re_mp4_reader from importer [6eeeede](https://github.com/rerun-io/rerun/commit/6eeeede8fff1e95706fdb14f2070cbe3815d16d9) - Add stream-mode support and Python `Mp4Reader` LazyChunkStream binding [e87dd89](https://github.com/rerun-io/rerun/commit/e87dd89d96e6942e020f03bb0fa7b5e46ef56340) #### ๐Ÿ Python API - Add headless viewer mode [7e31c42](https://github.com/rerun-io/rerun/commit/7e31c42409b7c3d3f00b7d28c28573c65240597a) - rerun-sdk[datafusion] and rerun-sdk[dataplatform] extras are now rerun-sdk[catalog] [182cbb0](https://github.com/rerun-io/rerun/commit/182cbb03b8218cf69607cf77c78453960368904a) - Remove deprecated `Recording` and related APIs [2156155](https://github.com/rerun-io/rerun/commit/2156155687b619944cebebd7bdc91864524a3641) - Split dataloader queries into windowed and keyframe-anchored [9ccc89e](https://github.com/rerun-io/rerun/commit/9ccc89e4b3f4be2f0c01e673d6f752896f544b90) - Introduce direct `ChunkStore` querying with `.reader()` [d14018e](https://github.com/rerun-io/rerun/commit/d14018eb59f2ad7c7bb8624670e084b2b318c65d) - Fix `ViewerClient.close` not closing subprocesses on Windows [2bc53b6](https://github.com/rerun-io/rerun/commit/2bc53b634414ef0f7ce209e4c7fb1ac55a0adacc) - feature-removal: drop custom indices [4dd9c78](https://github.com/rerun-io/rerun/commit/4dd9c7843f6d5af7b075b84a8eb9ab38f76bfa5c) - Deprecate `DatasetEntry.manifest()` [fd24de9](https://github.com/rerun-io/rerun/commit/fd24de9ddec4cb9096441b53af49bd2b135eae13) - Make `Chunk.from_record_batch` more flexible [d1771d4](https://github.com/rerun-io/rerun/commit/d1771d4042e91b95ee0044f8f0491463557f4876) - Remove `column_rules` from `ParquetReader` API [d18da8e](https://github.com/rerun-io/rerun/commit/d18da8e2b298f3d0cc02d0656dccc514b610a0eb) - Add casting capability to derive lens [f76a7d5](https://github.com/rerun-io/rerun/commit/f76a7d5b2738db5bbda24f089a24147d753b3c91) - Introduce `pack` built-in function to lenses [a5ea965](https://github.com/rerun-io/rerun/commit/a5ea96557b4c1f424ff183ea7d0503c63e5c3ca3) - Introduce `DeriveLens` helpers for common components [a93eb62](https://github.com/rerun-io/rerun/commit/a93eb62232a480f834abf0797d6d8d8706573ae8) - Add support for duration timelines to `FixedRateSampler` [45bddb7](https://github.com/rerun-io/rerun/commit/45bddb7dc2e8eb3ef7cdec743a657f36b756deaf) #### ๐Ÿฆ€ Rust API - Add headless viewer mode [7e31c42](https://github.com/rerun-io/rerun/commit/7e31c42409b7c3d3f00b7d28c28573c65240597a) #### ๐Ÿชณ Bug fixes - Take grpc server into account when purging viewer memory [f83f167](https://github.com/rerun-io/rerun/commit/f83f167346dd13cac9b0386a7b9ea4bc2e9bdf38) - Move relative time view range when moving time cursor [e9b22c5](https://github.com/rerun-io/rerun/commit/e9b22c564dae9966c22dfd24d321ab6ea5e21a99) - Don't show loader for encoded images when playing before their encoding data has been loaded [c2eed0a](https://github.com/rerun-io/rerun/commit/c2eed0afa179e2f3dd4222e1c023d4f99c9ce646) - GC ever growing fields in `ChunkStore` [f5747cf](https://github.com/rerun-io/rerun/commit/f5747cf69134a43ea51bc3ac7a6fbd68bba75edd) - Fix clicking in-view links to entities outside of view (usually via transform tree) [b82a1d9](https://github.com/rerun-io/rerun/commit/b82a1d93e17a7cc860cb47ec9a16c7f5a30b7118) - add missing `App::logic` callbacks to examples [#12810](https://github.com/rerun-io/rerun/pull/12810) (thanks [@adsick](https://github.com/adsick)!) - Do not delete "duplicate" chunks that contain transform data [11b90ed](https://github.com/rerun-io/rerun/commit/11b90ed9fa6d3a82edff8c3879b6fbaca76ce24c) - Fix sort order of `null` values in table UI [8a0f7c5](https://github.com/rerun-io/rerun/commit/8a0f7c5df1ffc328309b8f82efdfc8b7ba66f324) - Navigate back after closing [71ecad0](https://github.com/rerun-io/rerun/commit/71ecad026799879df7e9eaf8b8e9ea371fcc71b8) - Fix custom visualizer example showing a black viewer [e068ce8](https://github.com/rerun-io/rerun/commit/e068ce834d84ede9dfa420bcfcf2553f693c93ed) - Fix `face_rendering` on arkit_scenes example [3d04f6f](https://github.com/rerun-io/rerun/commit/3d04f6f954a7a79a12f4198d14cd1cdc7b682063) - Fix ROS 2 reflection decoding of byte/char, empty specs, and wstring [be0a632](https://github.com/rerun-io/rerun/commit/be0a632076d7775406846ed63341660c33a0ab57) - Handle codec changing for video-likes [f7466ef](https://github.com/rerun-io/rerun/commit/f7466efea1945e1b9a3dd5db7256d142f8e99de7) - Retain entry list in recording panel on refresh [e7357ba](https://github.com/rerun-io/rerun/commit/e7357baa3858a7cc9f174c194e40d443ab908697) - Don't buffer & fetch more of entities based on what's hovered [d9b3008](https://github.com/rerun-io/rerun/commit/d9b3008f8431ec1d8b40a891b6e810fffaa89252) - `rerun rrd optimize`: continue on error [63e0882](https://github.com/rerun-io/rerun/commit/63e08824e5e7781104008a64e8273ebf387122a7) - Look at `source_component` and `selector` when assigning colors to plots [71e2cf7](https://github.com/rerun-io/rerun/commit/71e2cf7cb75507d0df347a52b645d5ccab52efeb) - Fix viewer hang when loading static compressed images [b9acd34](https://github.com/rerun-io/rerun/commit/b9acd34aa2c90631759cbeb426082a68230a2f69) #### ๐ŸŒ Viewer improvements - Temporary time pause on scrubbing [bfea333](https://github.com/rerun-io/rerun/commit/bfea333d6fba8766288becf83b10bf5f0b6fa451) - Experimental gamepad support for 3D spatial views (native only) [da470f7](https://github.com/rerun-io/rerun/commit/da470f7c0330a4bcc68f9da44ac4c5c287545a6a) - Rename memory panel -> dev panel [c54e7b8](https://github.com/rerun-io/rerun/commit/c54e7b808c807016d53b3e1b5d6d628ab6548a02) - Show rejection reason on state component drop [b6a764d](https://github.com/rerun-io/rerun/commit/b6a764d8f732cfdd202a97935a5ed1d42c7d2b41) - Table blueprint registration instead of base64 encoded table blueprints [f2a2805](https://github.com/rerun-io/rerun/commit/f2a2805b3b112c9b0e44a35b802a21d062efc5f3) - Hold command/control to see and drag all preview timelines [91286ba](https://github.com/rerun-io/rerun/commit/91286ba89e849c88c9d50673aeb9edb6d2e55f75) - Improve default & visualizer reporting for `GridMap` colormap [e8386c5](https://github.com/rerun-io/rerun/commit/e8386c5f5434c4c0d3f1c7dac7dbfe1a9b1a7bb4) - Table blueprint registration for segment tables [0c60d04](https://github.com/rerun-io/rerun/commit/0c60d046d4071478bc4f89e8c0c5ba85f60005ef) - Add sparse VoxelGridMap archetype [fa40ec1](https://github.com/rerun-io/rerun/commit/fa40ec12509b73ec9cce3a808c95f2d9db3c335a) (thanks [@makeecat](https://github.com/makeecat)!) - Expose `App::current_query()` for external viewer [#12811](https://github.com/rerun-io/rerun/pull/12811) (thanks [@adsick](https://github.com/adsick)!) - Don't play time forward when video is buffering [c4c6832](https://github.com/rerun-io/rerun/commit/c4c6832bb0b7399f12eebf644b6bbe0027791855) - Local catalog server [3c6b02e](https://github.com/rerun-io/rerun/commit/3c6b02e91d489ea2ab125ac5c40d1cf82af5c81e) - Drag & drop scalars into time series view [ae4a157](https://github.com/rerun-io/rerun/commit/ae4a15776f75b385a2a79598254b041e4e68bafd) - Always buffer time [81384a4](https://github.com/rerun-io/rerun/commit/81384a43489d9273aef52cbc44484426a8e47f6a) - Visualize transform trees in dev panel [a534ac6](https://github.com/rerun-io/rerun/commit/a534ac61ea388f33699940fb93981060e96fbf92) - Query only visible parts of the state timeline [9118c03](https://github.com/rerun-io/rerun/commit/9118c03effe1c6d04cae8257de8e3e7fe2948a85) - Add `rerun viewer-mcp` [aa56c88](https://github.com/rerun-io/rerun/commit/aa56c88190ab5c4337f6acc6708c94a90454a5aa) - Hide screenshot notification on automated screenshots (scripts, mcp) [8924417](https://github.com/rerun-io/rerun/commit/8924417429de45fe52e9c8f073590b82727bb299) - State timeline view is now stable [0a26a8b](https://github.com/rerun-io/rerun/commit/0a26a8bfb9b161edee370d34578f415ec3354068) #### ๐Ÿ—„๏ธ OSS server - Fix slow registration calls from OSS Catalog Server [5b74d8f](https://github.com/rerun-io/rerun/commit/5b74d8f078302e01afa0355162f301611d603122) #### ๐Ÿš€ Performance improvements - Cache string interning calls [a05a4f8](https://github.com/rerun-io/rerun/commit/a05a4f8bb018063e4a63b62036e447df0801fa28) - Skip empty visualizers [7d6aeef](https://github.com/rerun-io/rerun/commit/7d6aeef7e928365ee92171d9e60edfb25ac5ebf4) - Don't load blueprint for previews [e861b9e](https://github.com/rerun-io/rerun/commit/e861b9e6edf07b7312c0c2a35565c90828922c43) - Redap client connection pool [5406d3a](https://github.com/rerun-io/rerun/commit/5406d3a69604bbb18bf89178d8c0ed9a6d095f2b) - Replace `cdr-encoding` with `re_cdr` [d2bc3b8](https://github.com/rerun-io/rerun/commit/d2bc3b8dd2165639fc1cb0665dfc2ad9fbc8441e) - Make the .ply parser ~10x faster using a custom PropertyAccess [6f8fb76](https://github.com/rerun-io/rerun/commit/6f8fb7648a0ec4e663a730ef6247ec8b41f46ab6) #### ๐Ÿง‘โ€๐Ÿซ Examples - Local Vector Search example [0a336d5](https://github.com/rerun-io/rerun/commit/0a336d52015e542b2f075bc704cc6b8e2ae8e591) #### ๐Ÿ–ผ UI improvements - Add button to copy server URL [15aeda9](https://github.com/rerun-io/rerun/commit/15aeda909ef500d951e827c5153a79dc9cdac4ee) - Implement `WatchEvents` in `re_server` [8e07bdb](https://github.com/rerun-io/rerun/commit/8e07bdbe47cdb8cf39bb275e76914edf4545f849) - Show average bitrate for selected video [9e28016](https://github.com/rerun-io/rerun/commit/9e2801688eae710d283f82552806598b4ee67bff) #### ๐Ÿงข MCAP - MCAP: add support for ROS `nav2_msgs/VoxelGrid` [651c140](https://github.com/rerun-io/rerun/commit/651c14069735aa4a3d200ec5578c5f0dca1f7359) - MCAP: add support for `foxglove.VoxelGrid` [c8580c1](https://github.com/rerun-io/rerun/commit/c8580c11928c2354b905819ef33f029b917a83e1) - Move sensor_msgs/msg/MagneticField to lens [fe9b74f](https://github.com/rerun-io/rerun/commit/fe9b74f233f9e017f594636799b354b466d0138e) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Add Rerun agent skills [6732840](https://github.com/rerun-io/rerun/commit/673284042dda3d6ff218c6c2e954315cbcfc9aa7) - Show bound and connect URLs when serving web viewer [#12753](https://github.com/rerun-io/rerun/pull/12753) (thanks [@terror](https://github.com/terror)!) - Skills: mandate the idiomatic reader+lens pipeline (steer away from hand-built chunks) [c436da5](https://github.com/rerun-io/rerun/commit/c436da5a61956bb3645de61993b29997d0695e59) #### ๐Ÿ“š Docs - Document catalog entry renaming and directory delimiter [57da6f3](https://github.com/rerun-io/rerun/commit/57da6f3da88e57a23e6d2d6d46990988df30780d) #### ๐Ÿ“ฆ Dependencies - chore: update lance, datafusion, and arrow [47d29ff](https://github.com/rerun-io/rerun/commit/47d29ffce4c53610471469b56d20d7cab6516b18) #### ๐Ÿคทโ€ Other - Push down selected components to `fuzzy_descriptors` [92f2281](https://github.com/rerun-io/rerun/commit/92f22810ea0789323f72e3d116ed8bba8b99b053) - Add RRD footers section to `rerun rrd stats` [4ab8388](https://github.com/rerun-io/rerun/commit/4ab838881f2fd4a4996be25b02b9510ca43d52fd) - Bound server chunk scans with per-segment index-value pushdown [990166c](https://github.com/rerun-io/rerun/commit/990166c2f284a29bd63a6f03f103b70de7a1ac81) - sdk: retry+backoff on behalf of the customer [2ef0fde](https://github.com/rerun-io/rerun/commit/2ef0fde4e08b54de30a456a6fd435163f3cee2d2) ## [0.33.1](https://github.com/rerun-io/rerun/compare/0.33.0...0.33.1) - 2026-06-22 ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Do not delete "duplicate" chunks that contain transform data [b2ac735](https://github.com/rerun-io/rerun/commit/b2ac735c15cba853d9e38b41412d5671ac16e06c) #### ๐ŸŒ Viewer improvements - Temporary time pause on scrubbing [c7578b9](https://github.com/rerun-io/rerun/commit/c7578b9406b0f5d19237d13085155144f6fd38e6) ## [0.33.0](https://github.com/rerun-io/rerun/compare/0.32.2...0.33.0) - 2026-05-29 ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-33 ### โœจ Overview & highlights After our large [0.32.0](https://github.com/rerun-io/rerun/releases/tag/0.32.0) release, this one is more focused but still has some great new things in store for you! #### Headless viewer This release comes with a new headless mode for the viewer! Together with smaller improvements to the screenshot API, this can be an invaluable tool for automation and LLM usage. ```python import rerun.blueprint as rrb from rerun.experimental import ViewerClient # Spawn a headless viewer; the client owns its lifetime. # โš ๏ธ you need a graphics driver to run this (software rasterizers like lavapipe are fine too!). with ViewerClient(spawn=True, headless=True) as viewer: rec = rr.RecordingStream("rerun_example_screenshot") rec.connect_grpc(url=viewer.url) view = rrb.Spatial3DView(name="my blue 3D", background=[100, 149, 237]) rec.send_blueprint(view) # Screenshot only the view we created earlier. viewer.save_screenshot("my_view.png", view_id=view.id) # Disconnect the RecordingStream before the headless viewer shuts down. rec.disconnect() ``` We're planning more features for `ViewerClient` Python object, including an MCP server allowing agents to fully instrument the Viewer. Stay tuned! #### Push-down filtering on chunk processing This release brings a significant optimization to pipelines in the shape of: ```python from rerun.experimental import RrdReader lazy_store = RrdReader(...).store() stream = lazy_store.stream().filter(...) # more stream operations ``` The filter is now pushed down to `RrdReader`, which will selectively load the matching chunks only. This massively accelerates targeted data extraction from large RRDs (e.g. extract a joint data from a RRD that also contains multiple video streams). #### Improvements on experimental state timeline view We're continue to perfect the state timeline view, and this release brings this lot of improvements: https://github.com/user-attachments/assets/b7549593-363f-4e13-ab9b-184d6434fc19 - Support for numbers and boolean components, not just strings. - Drag a component right from the streams tree into a state timeline. - Highlight the time range of a state by hovering it. - Clear state by logging an empty string or a `Clear` message: the timeline shows a gap until the next state value. #### Improvements on experimental dataset review Amongst other improvements, we made the play behavior much nicer for our experimental dataset review and table blueprint feature: https://github.com/user-attachments/assets/4543af53-52ca-4488-90b0-8c365f9fb89b #### Nicer native Viewer title bars on Windows & some Linux desktops On MacOS we used to have a compact title bar for a very long time. Now the same feature comes finally to Windows and some Linux desktops. Before: bulky title bar before โœจ After โœจ: compact title bar after If you experience any issues with this you can turn it off in the settings menu. ### โš ๏ธ Breaking changes The Python optional-dependency extra for catalog/query API tools has been renamed to `catalog`. | Before | After | |------------------------------|-----------------------| | `pip install rerun-sdk[dataplatform]` | `pip install rerun-sdk[catalog]` | | `pip install rerun-sdk[datafusion]` | `pip install rerun-sdk[catalog]` | ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-33 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Fix problem of intermixing different store messages in one rrd [bee551f](https://github.com/rerun-io/rerun/commit/bee551f0a8f993007563ddde6a97dfe20e4993c6) #### ๐Ÿ Python API - Add `trim_metadata_keys` argument to `Chunk.format` [2d6cd8d](https://github.com/rerun-io/rerun/commit/2d6cd8db8064106d9b0a40036a3161d79018f83a) - Allow `#when` anchors without `#time_selection` [1c242c8](https://github.com/rerun-io/rerun/commit/1c242c86c7e5c2435d44461680efb805de1c07e3) - Optional Hub ingestion of customer SDK traces [5a362a3](https://github.com/rerun-io/rerun/commit/5a362a322131957ce4f874e2f16a053083a08cb7) - Remove segment id validation with `dataset.reader(..., using_index_value=...)` [7846d38](https://github.com/rerun-io/rerun/commit/7846d3826e6dfbd578ac68d88889a427b003a8cf) - Dedup video stream samples in video decoder [d341ba4](https://github.com/rerun-io/rerun/commit/d341ba465d45aecda5a2ddcedd6b8ad791adadf3) - Pushdown `LazyChunkStore.filter()` to `LazyStore` [99a2149](https://github.com/rerun-io/rerun/commit/99a21494776e3ce431e6aa22f397fc989b996b11) - Add headless viewer mode [b050087](https://github.com/rerun-io/rerun/commit/b05008774816aab3b18f2b3dbc434ac2b871a72d) - rerun-sdk[datafusion] and rerun-sdk[dataplatform] extras are now rerun-sdk[catalog] [fcb5b13](https://github.com/rerun-io/rerun/commit/fcb5b13a34d4e0862d4a633838ff6f8344257bc4) #### ๐Ÿฆ€ Rust API - Increase the re_sdk viewer spawn timeout to 4s [230cde6](https://github.com/rerun-io/rerun/commit/230cde680c96cdfb9529b8f8a36370ae786f3f59) - Optional Hub ingestion of customer SDK traces [5a362a3](https://github.com/rerun-io/rerun/commit/5a362a322131957ce4f874e2f16a053083a08cb7) - Add headless viewer mode [b050087](https://github.com/rerun-io/rerun/commit/b05008774816aab3b18f2b3dbc434ac2b871a72d) #### ๐Ÿชณ Bug fixes - Create spatial topology from schema instead of from chunk data (fixing to sometimes never pull data) [3fffd8b](https://github.com/rerun-io/rerun/commit/3fffd8b91de671adace05000075aecc7861703b1) - Respect play state from blueprint with Catalog Server [35613c9](https://github.com/rerun-io/rerun/commit/35613c988d83a2fe646392f96cea043f136e2e69) - Fix orbital zoom clamp panic on tiny scenes [6f1bcde](https://github.com/rerun-io/rerun/commit/6f1bcde8e963c748878c5ad6309f83ec84f3cf43) - Fix notification id collision [a453f9a](https://github.com/rerun-io/rerun/commit/a453f9af9596a5642f344d2d223385053a29f17a) - Fix previews repeatedly opening log sources [4e03a27](https://github.com/rerun-io/rerun/commit/4e03a27433bcd5c62e7b2d6331cd3dfadb24bfb1) - Fix video issues after GC at start of recording [9670f20](https://github.com/rerun-io/rerun/commit/9670f206c05bef8ef3181fbf68fc07ad39fc24cc) - Dataloader: skip predicate keyframes [c8b963f](https://github.com/rerun-io/rerun/commit/c8b963f42d3e5a7405cac5c57c3b2526d73c71e2) - Default Safari to WebGL โ€” Safari 26.4 broke 3D under WebGPU [#12789](https://github.com/rerun-io/rerun/pull/12789) - Fix occasional Viewer hangs on some Wayland systems [1f7680c](https://github.com/rerun-io/rerun/commit/1f7680c46d47c28d606486a297485754537e5852) - Fix handling of png encoded depth images on the web [bcfbd22](https://github.com/rerun-io/rerun/commit/bcfbd22a846b876c9ab18fa8c1e8e3da8e85fa01) - MCAP: resolve field type ambiguities in message schema reflection [0ce185b](https://github.com/rerun-io/rerun/commit/0ce185beff0284fe86c939aa5f237618903718b0) - Implement unclamped `SetTime` and fix `#when` anchors [d33a6ab](https://github.com/rerun-io/rerun/commit/d33a6abbe4229325fb693c11a38d64f21e1622e2) - Fix encoded rvl images [717b40d](https://github.com/rerun-io/rerun/commit/717b40d5ef5e43e65a5692ba052983bbb1906fe7) - MCAP: fix `sensor_msgs/PointCloud2` offsets for extra fields [20fe293](https://github.com/rerun-io/rerun/commit/20fe293ea4d741e6d6a75b872e7f7772bd0379d2) - Fix AV1 OBU walker cursor drift [c61b60b](https://github.com/rerun-io/rerun/commit/c61b60b4bf551f8125e0acab9b596914e90795cd) - `Clear` log support for state timeline [639c5e6](https://github.com/rerun-io/rerun/commit/639c5e60ec59f0fafeb988f5d572731a6b2f6e8c) - Take grpc server into account when purging viewer memory [09b0192](https://github.com/rerun-io/rerun/commit/09b0192ce32c2a5f820133bc865d5afb2341fe97) #### ๐ŸŒ Viewer improvements - Emit `VideoStream::is_keyframe` in `rrd optimize` [ab74f37](https://github.com/rerun-io/rerun/commit/ab74f37dca39cab50143bfd5579c21eaa2c825a6) - Opening a url with a timestamp anchor now always pauses the recording [24827ea](https://github.com/rerun-io/rerun/commit/24827ea8a53f97bb2701e41588a9d032f55e6690) - Add a copy button to image previews [8e5e5ad](https://github.com/rerun-io/rerun/commit/8e5e5adf6defc5ac4bf2db2d69c24651c35e5187) - Components from timeline panel can be dropped to State timeline [e68e001](https://github.com/rerun-io/rerun/commit/e68e001b3c5e7aa302b557cfcb63b6eaca97daef) - Show loading indicator for dataset previews [9e811e5](https://github.com/rerun-io/rerun/commit/9e811e5f266495dac3f14b79e5c365cc5e79f569) - State timeline accepts numbers and booleans [de849aa](https://github.com/rerun-io/rerun/commit/de849aa5759f5bc33412caa41f96cf132274241c) - Compact title bar on Linux & Windows [475fc45](https://github.com/rerun-io/rerun/commit/475fc450bfa226c05c1d6c1d9026a2523e73c95a) - Surface errors when loading a URI [e3aabd7](https://github.com/rerun-io/rerun/commit/e3aabd76e899b6f8e345bfd9ba6f20fe4bc3eb84) - Add "Show/Hide in all views" entity context menu actions [aa49fc4](https://github.com/rerun-io/rerun/commit/aa49fc4a1f2c8a342488add6e378b5b0cbfcbc80) (thanks [@ollema](https://github.com/ollema)!) - Individual controllable time playing for previews [4b17956](https://github.com/rerun-io/rerun/commit/4b179567296d56d6180413d6856fe5fef18770c1) - Vertical scroll support for state timelines [6dc3e49](https://github.com/rerun-io/rerun/commit/6dc3e49215b21e5ba42b693dcafebbfe784d6ede) - Fixes last state in timeline extending to infinity [a13dc44](https://github.com/rerun-io/rerun/commit/a13dc448758bafe355571bfea2b6550c006f4e79) - Hovered state highlights time range in time-based views [5258852](https://github.com/rerun-io/rerun/commit/52588526b1c0e6c1eb0b4c67b4d8e8ffaf03c665) - Make webdecoder more robust against spurious decoding problems [fb2e5d1](https://github.com/rerun-io/rerun/commit/fb2e5d19c18c3305466826b58f945730cfc1e4e1) #### ๐Ÿš€ Performance improvements - Faster queries: do not split or compact chunks [0cb8ffb](https://github.com/rerun-io/rerun/commit/0cb8ffb76146623d425e9d9838ba80573b6850f0) - re_server: refresh schema cache after add_layer [2e736c4](https://github.com/rerun-io/rerun/commit/2e736c44fcac8144933896dd8b29edfd7566ca3f) - Separate is keyframe chunk [85fe857](https://github.com/rerun-io/rerun/commit/85fe8576a3d412a8135f3b98723f6a4e15268ead) - Speed up queries over single columns [5bc08c6](https://github.com/rerun-io/rerun/commit/5bc08c6d1315e7ebaba8bee15bb1c40fb0a41309) - Enable SIMD on wasm [3bcaca0](https://github.com/rerun-io/rerun/commit/3bcaca0205907a747bb521207798a383047b53eb) - Making dataloader keyframe aware [203d7ce](https://github.com/rerun-io/rerun/commit/203d7cede037383a6d7e75d63c6a9ba09f32b90d) - Speedup for points & line rendering on Apple Silicon in some situations [b8b0ced](https://github.com/rerun-io/rerun/commit/b8b0cede37b0243d05d9e33fd40baf517450a07c) - Cache RGB8 image histograms [#12800](https://github.com/rerun-io/rerun/pull/12800) (thanks [@waamm](https://github.com/waamm)!) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add example for preprocessing a robot recording via chunk API [396a512](https://github.com/rerun-io/rerun/commit/396a512b1003ce7a761d1bad8aa4587c342fce0b) #### ๐Ÿ“š Docs - Adding overview to Getting Started [473abad](https://github.com/rerun-io/rerun/commit/473abad01fc3279abe32b95761d33bba7ad1e31e) - Moving install and setup from overview to getting started on resources page [f1de7a4](https://github.com/rerun-io/rerun/commit/f1de7a4551d69045dc39c1586b7c96af26cd66f7) - Make more reference material available in the side bar [ba868d9](https://github.com/rerun-io/rerun/commit/ba868d9b5badc449b92b1ce16aa7e4bdaa163653) - Simplifying docs guide [0ca2c5f](https://github.com/rerun-io/rerun/commit/0ca2c5fe1fa482886587e6d703dee914e34a9793) - Add migration note for legacy ROS 1 data [de6a430](https://github.com/rerun-io/rerun/commit/de6a4300e4e3bcfd67f6f7e3ee5babf0105122f0) - Fix custom-data doc page claiming you can't visualize custom data, instead redirect to pages that explain how [7bad539](https://github.com/rerun-io/rerun/commit/7bad539208fbaa0cb1294478b0720ab1f922cc91) #### ๐Ÿ–ผ UI improvements - Respect Wayland compositor preferences for client/server-side decorations [0c00f57](https://github.com/rerun-io/rerun/commit/0c00f57c3c234dca0ff7e76933a39731f99c2c91) - Add a nicer About-menu [6645dbe](https://github.com/rerun-io/rerun/commit/6645dbed5488a65e51c5e629488bf247151dbf21) - Reset states timeline view via double-click [36cf84d](https://github.com/rerun-io/rerun/commit/36cf84d07333e0a4fc843f72afa145ce090f4c6b) #### ๐Ÿงข MCAP - Keep MCAP channels without schema as raw data [7b87ed0](https://github.com/rerun-io/rerun/commit/7b87ed00abffc504dc5e2f516baf1431e5f05eb7) - MCAP: Add lens for ROS 2 geometry_msgs/PoseStamped [be7012c](https://github.com/rerun-io/rerun/commit/be7012cd29b91eb2f10bb6d67efead66edcae34e) - Move std_msgs/String to lens [06fef1c](https://github.com/rerun-io/rerun/commit/06fef1c32f33732c78b4689c083fd4faa0556f10) - Move rcl_interfaces/msg/Log to lens [325b28f](https://github.com/rerun-io/rerun/commit/325b28fe01e13a2bfdc447b9e19803e4c0939df5) #### ๐Ÿ“ˆ Analytics - Datafusion metrics [fdbb66f](https://github.com/rerun-io/rerun/commit/fdbb66f9d349dc9e5c5d6c9be637b15e7b36d4a9) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Include trace-id in error message on failed registration [bab7682](https://github.com/rerun-io/rerun/commit/bab7682765163e1321fe4fa8605ce5e5b69088fa) ## [0.32.2](https://github.com/rerun-io/rerun/compare/0.32.1...0.32.2) - 2026-05-20 ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Create spatial topology from schema instead of from chunk data (fixing to sometimes never pull data) [6c015b9](https://github.com/rerun-io/rerun/commit/6c015b99335b91b974be6ab2fb524b4381e38a02) - Respect play state from blueprint with Catalog Server [58aa9c5](https://github.com/rerun-io/rerun/commit/58aa9c55f88b3ef1b2848d1e64422ef5e17303b6) - Fix orbital zoom clamp panic on tiny scenes [d039a5f](https://github.com/rerun-io/rerun/commit/d039a5f2c92ddecf723624b29291792c136c6593) - Fix video issues after GC at start of recording [e230962](https://github.com/rerun-io/rerun/commit/e230962e3dbaa9a8400eca8616f9174b8964c654) #### ๐ŸŒ Viewer improvements - Opening a url with a timestamp anchor now always pauses the recording [9977cd1](https://github.com/rerun-io/rerun/commit/9977cd103163f4d53e65d1882cc1c30cab8426e3) #### ๐Ÿš€ Performance improvements - re_server: refresh schema cache after add_layer [fefa95e](https://github.com/rerun-io/rerun/commit/fefa95e07d5a4cff58c40cef8242fb9e011ce996) - Speed up queries over single columns [0a6e2d8](https://github.com/rerun-io/rerun/commit/0a6e2d8bb8637e59019e48bbf6e78b50018f3994) #### ๐Ÿงข MCAP - Keep MCAP channels without schema as raw data [7d3e0d5](https://github.com/rerun-io/rerun/commit/7d3e0d57651ca5c8ac4dded299d9f7bdbe03cc22) ## [0.32.1](https://github.com/rerun-io/rerun/compare/0.32.0...0.32.1) - 2026-05-15 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Fix problem of intermixing different store messages in one rrd [5620f47](https://github.com/rerun-io/rerun/commit/5620f47064a46c4733eea1189e7757d898340a9b) ## [0.32.0](https://github.com/rerun-io/rerun/compare/0.31.4...0.32.0) - 2026-05-13 - Chunk Processing, Pytorch dataloader, Dataset Review ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-32 ### โœจ Overview & highlights #### Python chunk processing API This release introduces a chunk processing API designed for systematic and efficient wrangling of robotics data. It includes: - A `Chunk` object for inspecting, creating, and manipulating chunks. - Readers for common file formats (RRD, MCAP, Parquet, URDF, and more to come) which output streams of chunks. - A composable `LazyChunkStream` class to define memory-bounded chunk-based filtering and transformation pipelines. - Lenses: an expressive and performant API to manipulate component data in chunks. - A multithreaded, GIL-free, native engine for pipeline execution that is designed for distributed execution in the future. - Interoperability with a catalog server and the Rerun SDK logging API. In addition to enabling powerful data wrangling pipelines, the chunk processing API is significant for offering read/write chunk-level control of RRD files down to the raw Arrow data. _Note_: this API is experimental and subject to breaking changes as we continue to improve it. #### Experimental dataset review You can now build tables of recording previews configured with arbitrary blueprints! https://github.com/user-attachments/assets/7acf9671-c46a-4355-a50f-2670cc80c4d9 Clickable flags let you curate data directly from the table: toggles update a boolean flag column and are written back to the server. To try it out, enable the experimental options in the Viewer's settings and try the two Python examples: [`table_grid_with_flags`](./examples/python/table_grid_with_flags/) for basic grids with clickable flags, and [`table_blueprints`](./examples/python/table_blueprints/) for the full preview experience. Limitations, or why this is still experimental: * previews don't yet work directly on raw datasets; you have to send a special table to the server instead (see examples) * table blueprints are currently text-encoded in table metadata, this is subject to change * depending on the number and content of previews, overall runtime performance can be poor, especially in the browser * many UX details are still unfinished #### Experimental state timeline view A new experimental view for visualizing discrete state transitions over time as horizontal colored lanes, useful for state machines, mode transitions, and similar discrete signals. Log state changes with the new `StateChange` archetype; configure their display on the UI or using `StateConfiguration` in the blueprint API. State timeline view Read [our guide](https://rerun.io/docs/howto/visualization/state-timeline) to get started. Feedback is appreciated! #### `GridMap` archetype and MCAP support for ROS occupancy grids Rerun now supports 2D grid maps, as used e.g. in robot mapping & navigation applications, through a new `GridMap` archetype. * A `GridMap` is an image buffer with defined cell size per pixel, which can be embedded as a textured rectangle in a 3D scene. * `GridMap` has a regular `ImageBuffer` component, so you can also send color images (e.g. to do custom color-mapping in your code). * For layering of multiple maps you can optionally set draw order and opacity when logging, or separately in the viewer / blueprint. * The visualizer also supports the colormap options that RViz users are familiar with, selectable at log time or in the viewer / blueprint. * In a 3D scene, the map appears at the entity's coordinate frame (either entity-path based or with TF-style named frame like `CoordinateFrame("map")`). Additionally, an optional translation & rotation offset can be specified. For ROS 2 users: * ๐Ÿงข Rerun's MCAP importer automatically loads ROS 2 `nav_msgs/OccupancyGrid` messages as `GridMap`s. * ๐Ÿ“– Our [ROS 2 guide](https://rerun.io/docs/howto/integrations/ros2-nav-turtlebot) also shows an example how you can log `GridMap` from your custom ROS nodes. Here's a demo video showing a typical ROS 2 MCAP recording with multiple map and costmap layers in Rerun: https://github.com/user-attachments/assets/f31b712d-2dd7-4e45-bb6a-0e103e7016b3 #### OSS catalog server now streams from disk The OSS server (`rerun server` and `rr.server.Server`) no longer eagerly loads RRDs in memory when registering datasets. It instead uses the manifest embedded in the RRDs to load chunks on demand when serving requests. This greatly extends the amount of data that can be registered and queried for a given memory budget, and makes registration orders of magnitude faster. _Note_: This requires the RRDs to have a manifest, which most modern RRDs have. Legacy RRDs are still eagerly loaded. Use the `rerun rrd optimize` CLI to migrate and optimize legacy RRDs. #### Plot improvements new tooltip for plots - Performance improvement for scenes with many series. Moved from egui CPU tesselation to GPU line rendering. - Redesigned tooltips. Hovering over a plot now shows a cleaner, more compact tooltip with color swatches matching each series. Also it is visually obvious now when events were actually logged. - Better NaN & Infinity handling. Time series views now gracefully handle non-finite values: the Y-axis range ignores them, isolated data points surrounded by NaN are drawn as dots instead of disappearing, and aggregation skips over non-finite values rather than corrupting nearby points #### Performance improvements This release comes with a few significant performance improvements. Among other things: * Visualizing scenes with many transforms on the same entity (as it is often the case with `tf`-style named transforms) will now perform vastly better * Plot line tessellation is now GPU accelerated, using the same rendering path as our 3D lines * Web viewer now decodes images using the web decoder, resulting in much smoother play of raw-image "videos" * various improvements to `rrd optimize` (former `rrd compact`) to produce more streaming & object storage friendly data * MCAP decoder is now multithreaded #### New branding new rerun app icon
new rerun app icon You may have noticed a new Rerun logo and app icon! We've also slightly tweaked our color palette. Stay tuned for more exciting news! #### Docs feedback on the website. As a part of our [website](https://rerun.io/) update, we've also added a feedback form to all our documentation pages. So you can add your feedback directly to the respective topic. feedback form ### โ˜๏ธ Highlights for Rerun Hub customers Several improvements in the open-source Rerun SDK are designed specifically to work with Rerun Hub. Here are the key updates that are especially relevant if you're a customer of Rerun Hub: #### Direct fetch from object storage for commercial `Rerun Hub` customers The SDK will now fetch chunk data directly from the object store that holds your recordings, without needing to proxy the data through the server. This allows for better performance in highly parallel workloads, as well as lower latency when the client is located close to the data store. The old proxy path is still supported, and can be opted into using the `RERUN_CHUNK_STRATEGY=grpc` environment variable. #### Experimental training dataloader You can now train PyTorch models directly against the Rerun OSS server, with no intermediate export step! The new highly experimental `rerun.experimental.dataloader` module exposes Rerun recordings as iterable or map-style PyTorch datasets, streaming encoded images, scalars, and compressed video (`h264`/`h265`/`av1`) on the fly. Random access, multi-worker prefetching, and DDP support work out of the box. Each field accepts an optional `window=(start_offset, end_offset)` parameter, an inclusive range relative to the current index. When set, the field yields the slice of values across that window instead of a single sample. For example, `window=(1, CHUNK_SIZE)` returns the next `CHUNK_SIZE` action values after every observation, making action-chunking policies a single query per batch. See the new [LeRobot ACT training example](https://github.com/rerun-io/rerun/tree/main/examples/python/dataloader). Expect breaking changes between releases while we iterate on the design. For large-scale training, Rerun Hub offers a higher-performance backend. ### โš ๏ธ Breaking changes * "Data loaders" renamed to "importers" to avoid confusion with the widely-used ML/PyTorch "dataloader" concept * Rust Lenses API has been restructured * `rerun rrd compact` renamed to `rerun rrd optimize`, has profiles and new defaults * `DatasetEntry.register` requires a sequence of URIs (Python) * URDF importer now loads the static transforms of the model to the `/tf_static` entity by default * MCAP metadata and statistics are now saved to `__mcap_metadata` ๐Ÿงณ Full Migration guide: https://rerun.io/docs/reference/migration/migration-0-32 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Group URDF collision entity paths by geometry type [a394117](https://github.com/rerun-io/rerun/commit/a3941179b52acc61e1b144c746fef8db8e58f182) - Add Parquet Dataloader with some workarounds for merging columns [c1ee446](https://github.com/rerun-io/rerun/commit/c1ee446ee9f437847c15033a249be640ac89bc2b) - Optionally add struct grouping on parquet columns [ae22b4d](https://github.com/rerun-io/rerun/commit/ae22b4d3afa5e71f2a2043c1c45090a5640f2bd1) - Introduce `GridMap` archetype & visualizer [d74cb27](https://github.com/rerun-io/rerun/commit/d74cb277052ebd41ce5a981d75591a57fea3fc66) - Rename "DataLoader" to Importer [11cd1c2](https://github.com/rerun-io/rerun/commit/11cd1c24b1c55228c48d3c9e9ca4bc465d73c2d3) - Use `/tf_static` as default in URDF importer & make configurable in `UrdfTree` [1f01a57](https://github.com/rerun-io/rerun/commit/1f01a572e774ad49112d7e658dab16c60617877a) - Expose `mimic` joints from URDF [cf4c652](https://github.com/rerun-io/rerun/commit/cf4c65255afed1aeded9f61d513b6fe75fd4b0f5) - Add RViz-style "Map" and "Costmap" color options for `GridMap` [c452a48](https://github.com/rerun-io/rerun/commit/c452a482638f9a4271596f2ec382f76d5e7695be) - Add `stream() -> LazyChunkStream` to Python `UrdfTree` [dc51f60](https://github.com/rerun-io/rerun/commit/dc51f60554cc634133b5582e26ccb8c2769d4aa7) - Renames ChunkBatcherConfig::ALWAYS to ALWAYS_TEST_ONLY [46c20b8](https://github.com/rerun-io/rerun/commit/46c20b85ed0ae39292feae2a50355fdad87d4c0e) - Opt-out from generating a FileSink footer [0a78f28](https://github.com/rerun-io/rerun/commit/0a78f2817f15c50e00f6ea222227d9358dcf0eea) - Add `UrdfTree::compute_joint_transform_batches` for lens/chunk pipelines [efd045c](https://github.com/rerun-io/rerun/commit/efd045cdf953d6c3b97f764cdea9560df6fbcab4) - Add snippet showing a `GridMap` at a specific pose [2e99c68](https://github.com/rerun-io/rerun/commit/2e99c681e9f4789ce92803bda1e5edc76bb5788b) #### ๐Ÿ Python API - Introduce `LazyChunkStream` [a0ce421](https://github.com/rerun-io/rerun/commit/a0ce421f4ca9b3e2406b73efd3e63fb8ee03b8b4) - Introduce `McapLoader` to produce `LazyChunkStream` from MCAP file [ef51623](https://github.com/rerun-io/rerun/commit/ef51623f8fa45f0bf130b5a55b4b72db7cd43051) - Expose `Selector` in Python SDK [ffc088d](https://github.com/rerun-io/rerun/commit/ffc088dbf39e767eb02488c0786672517275682b) - Introduce Python `ChunkStore` object [9294554](https://github.com/rerun-io/rerun/commit/9294554075197fff676000f29f5090f6b35ab771) - Add ability to compact `ChunkStore` [5dd9f23](https://github.com/rerun-io/rerun/commit/5dd9f2315abb2ae885cb45108512431db32fa4c3) - Use Lenses to manipulate `ChunkStream` in Python SDK [72ff520](https://github.com/rerun-io/rerun/commit/72ff520451de6c187262fcf10f62e954aa00785e) - Make notebook display loading spinner when waiting on send_table [ea09906](https://github.com/rerun-io/rerun/commit/ea09906cf3d6b87b16ad55239983a85ec44e5421) - Make `RrdLoader` produce lazy `ChunkStore` [2e804c4](https://github.com/rerun-io/rerun/commit/2e804c40b316cfcc483a55e2f5edf2b8a227bb8d) - Add `map` and `flat_map` method to `LazyChunkStream` [393680c](https://github.com/rerun-io/rerun/commit/393680c7dd2337b4fcd59d1851fd38e525ab5664) - Add `Chunk` construction methods: `from_columns` and `from_record_batch` [547d650](https://github.com/rerun-io/rerun/commit/547d650fcb6665942a06b4c010e65aaead585e14) - Add `exists_ok` option to `CatalogClient.create_dataset` [8d4e1b3](https://github.com/rerun-io/rerun/commit/8d4e1b307774554255968c485ae28ffb067aeece) - Add `Chunk.apply_lenses()` API [88fea86](https://github.com/rerun-io/rerun/commit/88fea86e302742ef1982a60dd126829b27f0818c) - Expose split-size-ratio in python [c21a5b8](https://github.com/rerun-io/rerun/commit/c21a5b8cd0701044ea1f34e0f30be922eb25269b) - Initial torch dataloader [dca28f2](https://github.com/rerun-io/rerun/commit/dca28f27b0fc936d7e043ceaf41895bab84b84b7) - Rename `rrd compact` to `rrd optimize` [c5b027b](https://github.com/rerun-io/rerun/commit/c5b027ba02d8fb1fbf30bdda7ab7b430ce90383f) - Add `apply_selector` methods to `Chunk` [5a20bd6](https://github.com/rerun-io/rerun/commit/5a20bd679677cbbfb0f808e774a3c654c47d7ac2) - Use `Mapping`-based `LensOutput` and improve naming [2fc409e](https://github.com/rerun-io/rerun/commit/2fc409e5f1a74fa91abf4dcb8fdbb1b3b583830d) - Add Map-style torch dataset [ebb9953](https://github.com/rerun-io/rerun/commit/ebb9953034baa59817326f3c1fdbaa508149cd2f) - Make task cancellation API public, add `.cancel()` on RegistrationHandle [260d119](https://github.com/rerun-io/rerun/commit/260d1198c83768c7ef25d35cad1658036006f437) - Add documentation page for lenses [1cb99e5](https://github.com/rerun-io/rerun/commit/1cb99e5c24ee2fa386d14d2c225fc298873527e2) - Add include & exclude topic filter options to MCAP importer [1b586fa](https://github.com/rerun-io/rerun/commit/1b586fa604479d55891b057b9dc4c74e44bafdf9) - Further simplify Lenses API in Python and Rust [65d744a](https://github.com/rerun-io/rerun/commit/65d744ae34b317af2caf36c42ef939477b6ee00c) - Allow creating a `Chunk` copy with a new entity path [3d8f97c](https://github.com/rerun-io/rerun/commit/3d8f97cf76886f3e6cc8795c19afccabe4ba10f3) - Make `Selector` picklable [db20691](https://github.com/rerun-io/rerun/commit/db206917263291fb433a1d5db8199fb3e8bc0390) - Add `dataset.segment_store(segment_id)` to create a lazy `ChunkStore` [524b5cc](https://github.com/rerun-io/rerun/commit/524b5cc3ad543a699cc1579f58fc4b038d0ae97d) - Introduce optimization profiles and change default [d3488bc](https://github.com/rerun-io/rerun/commit/d3488bc7f5fb640ff3bbe583d1414873d8ea7410) - Split off `LazyStore` from `ChunkStore` (now returned by `dataset.segment_store()` and `RrdReader.store()`) [fa63189](https://github.com/rerun-io/rerun/commit/fa631894c4f2f0805a1b643dd8d068c841105159) - Improve dataloader config [b96a985](https://github.com/rerun-io/rerun/commit/b96a9859bcf412f24ba8444138a2ce8fd49d7a3f) - Add support for multi-store RRD to `RrdReader` [41ed51a](https://github.com/rerun-io/rerun/commit/41ed51ac0d37f4f80c8834a33a38b8587f8a32d1) - Rename `send_chunk` to `send_chunks` and accepts stores and `LazyChunkStream` [c8e0965](https://github.com/rerun-io/rerun/commit/c8e0965fb50f4d70599f448b4175dd563e72cdf1) - Deprecate `rerun.recording` [8b52512](https://github.com/rerun-io/rerun/commit/8b52512035c9afc58e543c07862ac14cb4bc677e) - Fix disconnect footgun [4833706](https://github.com/rerun-io/rerun/commit/483370692c187865c9a694264897a5d4e02a5166) #### ๐Ÿฆ€ Rust API - Introduce `at_entity` instead of `*_output_columns_at` [8e65ff0](https://github.com/rerun-io/rerun/commit/8e65ff0504a58753a93a46645ef566cb4f436602) - Decouple entity path filtering from `Lens` definition [80ab3a9](https://github.com/rerun-io/rerun/commit/80ab3a9db06644caadc646f194f5a6bd64d1a779) - Pushdown filters for select [215e8aa](https://github.com/rerun-io/rerun/commit/215e8aa3f7f23ce1b84724793ef51c61eda23b27) - Rework chunk output produced by Lenses [dbeef05](https://github.com/rerun-io/rerun/commit/dbeef05a3457e4def4bc1162719659fae9dbbc11) - schema evolution: widen record-batch on read [838a669](https://github.com/rerun-io/rerun/commit/838a669d2f2090d22395a481b2dcd08012ebc92c) - Unify `Chunk`-based APIs between Rust and Python [a171102](https://github.com/rerun-io/rerun/commit/a1711026c976b1a4b9a1dc4669a7994d43da4b4c) - Add `apply_selector` methods to `Chunk` [5a20bd6](https://github.com/rerun-io/rerun/commit/5a20bd679677cbbfb0f808e774a3c654c47d7ac2) - Enforce one-to-one mapping of `LensOutput` to target entity [b5709e5](https://github.com/rerun-io/rerun/commit/b5709e5c3ca2c0454ac42bf635a0317a89261ed9) - Add documentation page for lenses [1cb99e5](https://github.com/rerun-io/rerun/commit/1cb99e5c24ee2fa386d14d2c225fc298873527e2) - Further simplify Lenses API in Python and Rust [65d744a](https://github.com/rerun-io/rerun/commit/65d744ae34b317af2caf36c42ef939477b6ee00c) - Allow creating a `Chunk` copy with a new entity path [3d8f97c](https://github.com/rerun-io/rerun/commit/3d8f97cf76886f3e6cc8795c19afccabe4ba10f3) - Add `GraphView` to rust blueprint api [9327b5f](https://github.com/rerun-io/rerun/commit/9327b5f93e962e4a3e506b8202884f7b82e18b52) #### ๐Ÿชณ Bug fixes - Fix our python 3.10 support [7d4716d](https://github.com/rerun-io/rerun/commit/7d4716dd5e6bf36203cd246731b2d530ece6dc38) - Fix MCAP CLI decoder identifier list [5b170a4](https://github.com/rerun-io/rerun/commit/5b170a499f9f016b5fb47abb4b6dedb031b2aaf2) - Fix bug where shapes defined with UI units were scaled incorrectly [7e7ec15](https://github.com/rerun-io/rerun/commit/7e7ec157f4c772b235f1bbff57a5dcde75db412c) - Improve `rerun download` [1c9aa10](https://github.com/rerun-io/rerun/commit/1c9aa10c1c8984dd63606f4d3c534cd6505e9cd4) - Fix off-by-one bug in video stream cache [f0484ee](https://github.com/rerun-io/rerun/commit/f0484eedaaa7263d19a3c3386955930829cfb0d0) - Fix: Hyperlinks shown in tables wouldn't resize [f16707e](https://github.com/rerun-io/rerun/commit/f16707e0cd651d04453fa6ff8e59e69d39faf528) - Fix range queries on 3D points in `SpatialView3D` [e8dc5e0](https://github.com/rerun-io/rerun/commit/e8dc5e0a3febf793433c72646bf838a938add107) - Fix plot view time range ui [45de0cb](https://github.com/rerun-io/rerun/commit/45de0cbcf63b2d2280d1e0136d64ea3fe3a990e4) - Make arrow keys pause playback [37009c0](https://github.com/rerun-io/rerun/commit/37009c04050e7d5ac968a5b2f50e9f0addfc6f95) - Fix silent error swallowing in gRPC streaming, add error injection testing infrastructure [ec01f7a](https://github.com/rerun-io/rerun/commit/ec01f7a3c167467a37e5c78e616b7aa2dbc67e17) - Fix `follow` not being propagated to `http` URLs with extensions [09d5f94](https://github.com/rerun-io/rerun/commit/09d5f94c98bf06aa84ab6f041cc13ef0f21f3537) - Fix renderer registration order influencing draw order [97db1a1](https://github.com/rerun-io/rerun/commit/97db1a16382f5ae689d2e6a76dfedd7654e2802a) - Unify `rerun//` and `rerun+https` at parse time, fixing Viewer bugs for incorrectly distinguishing them [69ff58d](https://github.com/rerun-io/rerun/commit/69ff58d66a1e8c7ca524bca4b7daf0f691842710) - Add `SystemCommand::RemoveRedapServer` for more thorough cleanup [52bc3ea](https://github.com/rerun-io/rerun/commit/52bc3ea69bad2a4b73ea3019e4b9b7a728c281a4) - Close recordings when a server is removed [ad7371f](https://github.com/rerun-io/rerun/commit/ad7371f3cbaada95147577eed60c7d71da59a516) - Fix visualizations not showing up when initial data was empty [c867040](https://github.com/rerun-io/rerun/commit/c867040a23cb78b4a27d766fabb5ce9e00c44ca2) - Fix reflection of "pure-constant" ROS2 message schemas [fefbf6d](https://github.com/rerun-io/rerun/commit/fefbf6d57e68e7e84c04285809188c7107fc1d79) - Handle large video file error gracefully [#12744](https://github.com/rerun-io/rerun/pull/12744) (thanks [@AyushAgrawal-A2](https://github.com/AyushAgrawal-A2)!) - Use row id instead of byte span for video streams [645e57b](https://github.com/rerun-io/rerun/commit/645e57b732d09a53a873d00162050a61bbf0b6b0) - Return empty tensor on video decoder cold-start instead of raising [13f92e5](https://github.com/rerun-io/rerun/commit/13f92e594c909cfd6c1136065ee24a35f945645a) #### ๐ŸŒ Viewer improvements - Cluster overlapping coplanar `TexturedRect`s and use draw order for tie-breaking [76b64c1](https://github.com/rerun-io/rerun/commit/76b64c137d96bf189b3cb683d6f6328017ef92a3) - Always open recording in background from context menu [a173287](https://github.com/rerun-io/rerun/commit/a1732872bf29cd9addff622f343e06d4bd020f07) - Improve implicit handling of invalid instance pose rotations [e65a6ce](https://github.com/rerun-io/rerun/commit/e65a6ce8f21a41dc3c8ff0bcf2f1ddbdb9367704) - Use optional `pose` of Foxglove `PointCloud` (if set) [fee2815](https://github.com/rerun-io/rerun/commit/fee28155cd4e077501b67acc36d5aac2aac15467) - LeRobot loader: Add support for flat feature names [a493658](https://github.com/rerun-io/rerun/commit/a493658e85bd534fff07f1eacdb141d502caae0e) - Select `message_log_time` as default timeline for MCAP [b687bd6](https://github.com/rerun-io/rerun/commit/b687bd644f405106d8e13357719e68b9f6e4b3d3) - Properly handle outline masks of overlapping coplanar rectangles [617a7c2](https://github.com/rerun-io/rerun/commit/617a7c2a25f49d80b5a691178dbd75b357275219) - New liftable shape limit to avoid unresponsive viewer [a4f6223](https://github.com/rerun-io/rerun/commit/a4f62231ae91b8bf19fa646abfd4d0c0b75b881b) - Add configurable CORS policy for rerun proxy and re_server [8baa142](https://github.com/rerun-io/rerun/commit/8baa142ffc5e81a8574e6bc9629d35d012036af9) - Smarter `VideoStream` streaming [2f73783](https://github.com/rerun-io/rerun/commit/2f73783025afeb9c026fe7032a73d1a98946506b) - Support focusing specific 3D points in viewer [ddda5cf](https://github.com/rerun-io/rerun/commit/ddda5cf159f5c50ee6a42a5bc9b6e32190e4b516) - Experimental grid layout & flagging for tables [9b6bf71](https://github.com/rerun-io/rerun/commit/9b6bf710021a495a7b96e3f24bf73b7b0e634157) - Make panel state toggable while inspecting tables/server [2eb8fb0](https://github.com/rerun-io/rerun/commit/2eb8fb07d3792d16048195c789f6e8b5ff49d276) - Streaming info panel (as part of memory panel) [597fdd4](https://github.com/rerun-io/rerun/commit/597fdd4cfbceeb28bd1bddf5ddb11f1a0e4dce5b) - Respect `up_axis` in Collada (.dae) mesh importer [#12708](https://github.com/rerun-io/rerun/pull/12708) (thanks [@Abhisheklearn12](https://github.com/Abhisheklearn12)!) - Improve handling of NaN & Infinity values in time series view [055777f](https://github.com/rerun-io/rerun/commit/055777ff5b32eaaeb8fe04f16d28d50449a46e3d) - By default, fetch similar chunks 30 seconds of playtime forward [7c0680e](https://github.com/rerun-io/rerun/commit/7c0680e5d4b740acc710b366249c32b141ac12dd) - Remember memory limit between viewer relaunches [1eb763a](https://github.com/rerun-io/rerun/commit/1eb763a34328802de7644bffccd7b1aa156e7997) - Add support for duration columns in lerobot datasets [1cd0abc](https://github.com/rerun-io/rerun/commit/1cd0abc9cbbe14d6c4c8773432a4cb59ed6eda34) - Support hierarchical dataset naming in viewer [efa2f23](https://github.com/rerun-io/rerun/commit/efa2f234e968e8888a6ca6d53f39170c5b319b48) - Display `.` separated dataset in a folder hierarchy [a217309](https://github.com/rerun-io/rerun/commit/a21730943085d8a0742eae8e2d225eef11310535) - Full VP8+VP9 support on native & web [a1642b4](https://github.com/rerun-io/rerun/commit/a1642b4f8213ac2c00d51bb6a630c30705d84a3b) (thanks [@AyushAgrawal-A2](https://github.com/AyushAgrawal-A2)!) - Use video player for encoded depth images [c3af7d5](https://github.com/rerun-io/rerun/commit/c3af7d530a5933e624e1404c14c1c62a2ff78a1a) - Better log console formatting [bd4c866](https://github.com/rerun-io/rerun/commit/bd4c866309dbb7ff0f6bb847d9e897f570d655a1) - Make text document configuration part of the blueprint [e6ae09a](https://github.com/rerun-io/rerun/commit/e6ae09aa979231084768cd6c8f776f9bf5da563f) - Experimental preview renders for tables with data set URLs [b133946](https://github.com/rerun-io/rerun/commit/b133946c4fccc0f0f08893e3bf422b6a373cde0d) - Add `VideoStream.is_keyframe` component [d50eab6](https://github.com/rerun-io/rerun/commit/d50eab6d9d276f88d44c0c133a7e5a2c3e868642) - Limit 2D & 3D view zoom out [e43c172](https://github.com/rerun-io/rerun/commit/e43c172407300cc4eb8b979a9fa78ea30c73206f) - Make previews always play looping [90b5b01](https://github.com/rerun-io/rerun/commit/90b5b0134f9eb74c14c34908b30ab43c6af3ca62) - Fix arrows blowing up when cap behind camera [db571f7](https://github.com/rerun-io/rerun/commit/db571f7035b311d77e9c6015298a4d288faa27f2) - Add Ellipses2D archetype [2cbf5ff](https://github.com/rerun-io/rerun/commit/2cbf5ff4d5c68850e538ef75a1913b71fbecdcf6) - Clamp time controls [8af40e2](https://github.com/rerun-io/rerun/commit/8af40e283df04b9d4d26123fc09c201b9751d8df) #### ๐Ÿ—„๏ธ OSS server - Lazy RRD loading in OSS server [4aea4a5](https://github.com/rerun-io/rerun/commit/4aea4a570a245949314f97b282e011c708efce01) - No longer cache chunks in OSS server [853591a](https://github.com/rerun-io/rerun/commit/853591a3d143da30e79aea113c35af6435728124) #### ๐Ÿš€ Performance improvements - Decode encoded images using our video-player system, and use the web video decoder [794a722](https://github.com/rerun-io/rerun/commit/794a722d64c46e8c643af7d43c86aa92c2ea7135) - Drop details from the manifest that aren't needed to reduce manifest memory bloat [612e9ef](https://github.com/rerun-io/rerun/commit/612e9ef5a75a1b9f3e8fa3d81b1142903b83d7a6) - `rerun rrd compact`: split by video GoP boundaries [2485570](https://github.com/rerun-io/rerun/commit/248557024b14e95257659d63fdadb105ac5a2f87) - By default, only prefetched what is visible [b509f91](https://github.com/rerun-io/rerun/commit/b509f91d244128339a2e3204a39ca66c6564197d) - Speed up `DatasetView.reader`: only fetch schema once [b266938](https://github.com/rerun-io/rerun/commit/b26693866da4ae496aceb58042cc232d5b1aeae9) - Huge speedup transform lookups for overlapping transform chunks [803337d](https://github.com/rerun-io/rerun/commit/803337de7dc94e19613946a9b34d7a914107511d) - Don't traverse through parent entities in queries if there are no cleared entities at all [a873b22](https://github.com/rerun-io/rerun/commit/a873b22737798756abcac6c25bf8ff7194a6221e) - Fix not taking fast paths in line/point for using default radii [5fb7c3d](https://github.com/rerun-io/rerun/commit/5fb7c3d00ff2e1a31c9c9e510100d3dfb2253a1f) - `CatalogClient`: Add RTT and bandwidth probes [87c5e05](https://github.com/rerun-io/rerun/commit/87c5e056326f62a106ce4215775fdb2b53ce3199) - Improve performance of Protobuf reflection [3969825](https://github.com/rerun-io/rerun/commit/39698253c8346639fc5d5b52c750717a8b4f7eb2) - `register` now takes a list of URIs [9ec5265](https://github.com/rerun-io/rerun/commit/9ec52651803e0c2c0716e3a16d4631957926b6c2) - Parallelize mcap decoder [6ccfcbf](https://github.com/rerun-io/rerun/commit/6ccfcbfc6fa8a1b28459440c895a9bbd6cfa6a6b) - Emit sparse `is_keyframe` marker chunks when running optimize [ec6dff0](https://github.com/rerun-io/rerun/commit/ec6dff03c046f4a2a0e4b2726f208a268d424108) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add dataloader training example [8cd8acb](https://github.com/rerun-io/rerun/commit/8cd8acb4f3bdad51b97a94174289ed103a8e835c) - Add snippet demonstrating `LineStrips3D` with `VisibleTimeRange` [80dd138](https://github.com/rerun-io/rerun/commit/80dd1381273fad507f0516e0fe4000b0369f5c79) - Use blueprint, component ui and type reflection in `custom_view` example [e64abd0](https://github.com/rerun-io/rerun/commit/e64abd0f695be3b7f66b0816c1b53f361c1c96f4) - Subscribe to occupancy grids in ROS node example [b4a46c5](https://github.com/rerun-io/rerun/commit/b4a46c561713ac895848e122f63b635d800677c8) #### ๐Ÿ“š Docs - Clearer behavior for `CoordinateFrame("")` [5bf9c4a](https://github.com/rerun-io/rerun/commit/5bf9c4a6027ce525a11c35dc9ff43e77324c3e6d) - Move "Installing Rerun" into Getting Started [0296f67](https://github.com/rerun-io/rerun/commit/0296f67bd56b1ed1625b08e9054d86d13d01767d) - Reduce python docs footguns [4e158e1](https://github.com/rerun-io/rerun/commit/4e158e1c6221f79ad5dbb4e1cb03b1f73f8c7903) - Split "Set up a project" out of Log and Ingest [d0d63bc](https://github.com/rerun-io/rerun/commit/d0d63bc775ef6c3964563c7ea2d52df3f9a619b1) #### ๐Ÿ–ผ UI improvements - New tooltip redesign [b1a9d82](https://github.com/rerun-io/rerun/commit/b1a9d8285846b4dabce5e29f43af28cb94b7bb07) - Reduce the size of chevrons in the UI [3f63fa1](https://github.com/rerun-io/rerun/commit/3f63fa12db53e75a6a06f15b2d6d615ff47202a9) - Highlight invalid frame ID input and show `tf#/` suggestions if applicable [2dbe13a](https://github.com/rerun-io/rerun/commit/2dbe13afaae8627bebe776b1c1231110492d1e38) - Status visualizer configuration [bb83ed7](https://github.com/rerun-io/rerun/commit/bb83ed70fd5817905a667e93f868986bb11d0e35) - Update our icon โœจ [0677bbf](https://github.com/rerun-io/rerun/commit/0677bbf87ea4bffce0edd77cc64226a34c9d1d57) - change colors for new brand colors [27c9036](https://github.com/rerun-io/rerun/commit/27c90366696241da2e2ff7deea9cf97f330fc7eb) #### ๐Ÿ•ธ๏ธ Web - Add progress bar to rerun-js and handle incomplete wasm downloads [ad551bd](https://github.com/rerun-io/rerun/commit/ad551bdf95f7abe2d1544693042ddf79fdd76e2a) - Add rerun-js login setting and default to hiding the login button [0d14814](https://github.com/rerun-io/rerun/commit/0d148144f367852084ea48767412f9198c0f1b95) - web_viewer: support overriding theme via ?theme= URL param [34b9958](https://github.com/rerun-io/rerun/commit/34b9958d5500741787350ae74bf3cf927a7b0fbb) #### ๐ŸŽจ Renderer improvements - GPU accelerated time series plot drawing [8e9635b](https://github.com/rerun-io/rerun/commit/8e9635b3223528322db2d695b8b6aa45f3a1a037) #### ๐Ÿงข MCAP - Add `Selector::pipe` for calling anonymous functions [ea50667](https://github.com/rerun-io/rerun/commit/ea50667657307293eabf14c1b4bb0e6947605928) - Support Foxglove `LocationFix` & `LocationFixes` [28fe84e](https://github.com/rerun-io/rerun/commit/28fe84e2769ec652919dd0075b5b22010273d62c) - Split `Runtime` out of `Selector` [0febb36](https://github.com/rerun-io/rerun/commit/0febb36710b8e4efecb0b17890625986e6fa463d) - Transition Lenses to be `Selector`-based [75e965a](https://github.com/rerun-io/rerun/commit/75e965a4c18784cb645ddf2f1765e80dc16da1c3) - Lenses should not drop unrelated columns [849efb4](https://github.com/rerun-io/rerun/commit/849efb4a17b37882d2113f35af03bfb72d949971) - MCAP: Add lens for ROS 2 `nav_msgs/OccupancyGrid` [c87a9ae](https://github.com/rerun-io/rerun/commit/c87a9aeeaded70cad02d2b802913b9d4d8fec02f) - Write MCAP metadata to `__mcap_metadata` instead of `__properties` [3352bb6](https://github.com/rerun-io/rerun/commit/3352bb63b8bd3732e26d17da13c01f0a4c87e873) - Write MCAP stats & info to `__mcap_properties` instead of `__properties` [31159e1](https://github.com/rerun-io/rerun/commit/31159e18323d2b73ab8f22ffa64144977d6296f4) - Decode MCAP attachment records into `__mcap_attachments` [004539a](https://github.com/rerun-io/rerun/commit/004539a793449ae28df1561c309d93715bedf60f) #### ๐Ÿ“ˆ Analytics - More SDK analytics [fc6c8c7](https://github.com/rerun-io/rerun/commit/fc6c8c79fdd8201fef8119a66f9b1540d2a2f8da) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Add `rerun.tracing_session()` for support correlation [ec9f048](https://github.com/rerun-io/rerun/commit/ec9f048dfbd83fef934dcd4f19c752618c2ec81a) #### ๐Ÿ“ฆ Dependencies - Update datafusion to 52.5.0 [2832f82](https://github.com/rerun-io/rerun/commit/2832f8264a303e5ad8187183178c0f399a845205) - Unpin wasm-bindgen [#12737](https://github.com/rerun-io/rerun/pull/12737) (thanks [@anassinator](https://github.com/anassinator)!) #### ๐Ÿคทโ€ Other - Add option to split chunks with large component size differences for different archetypes [b0e6f90](https://github.com/rerun-io/rerun/commit/b0e6f90b3abcb7599d94d561774ff03b0b310dc4) - Run `rerun rrd optimize` on a folder of recordings [9ccb8b2](https://github.com/rerun-io/rerun/commit/9ccb8b2f8d731e78f2ffb8b04dbe0e1d60fe54ee) ## [0.31.4](https://github.com/rerun-io/rerun/compare/0.31.3...0.31.4) - 2026-04-29 ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Prompt login on whoami failure [a312a99](https://github.com/rerun-io/rerun/commit/a312a99) - Ensure proper `on_new_store` book-keeping for all messages [029e245](https://github.com/rerun-io/rerun/commit/029e245) - Fix visualizations not showing up when initial data was empty [c867040a](https://github.com/rerun-io/rerun/commit/c867040a) - Fix `follow` not being propagated to `http` URLs with extensions [09d5f94c](https://github.com/rerun-io/rerun/commit/09d5f94c) #### ๐Ÿ•ธ๏ธ Web - Web view add open options [#12731](https://github.com/rerun-io/rerun/pull/12731) ## [0.31.3](https://github.com/rerun-io/rerun/compare/0.31.2...0.31.3) - 2026-04-13 ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Fix plot view time range ui [3922bea](https://github.com/rerun-io/rerun/commit/3922bea85919bc3ad1570a74a21ae8580e36ea66) #### ๐Ÿ“š Docs - Clearer behavior for `CoordinateFrame("")` [4b5c2f0](https://github.com/rerun-io/rerun/commit/4b5c2f084fbe015ba30a33534fbfa2e48cad8eab) #### ๐Ÿ–ผ UI improvements - Spacebar toggles play/pause, never enables following [#12722](https://github.com/rerun-io/rerun/pull/12722) (thanks [@wolfd](https://github.com/wolfd)!) #### ๐Ÿ“ฆ Dependencies - Update datafusion to 52.5.0 [87af7a9](https://github.com/rerun-io/rerun/commit/87af7a93bb031330679e7ecdca956b65a668ffbb) ## [0.31.2](https://github.com/rerun-io/rerun/compare/0.31.1...0.31.2) - 2026-04-08 ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Fix MCAP CLI decoder identifier list [24f2604](https://github.com/rerun-io/rerun/commit/24f26047da9433924d7a00d7039be18cbe19c9ca) - Fix bug where shapes defined with UI units were scaled incorrectly [9a28f8e](https://github.com/rerun-io/rerun/commit/9a28f8e089d30680bc14ab59653ca8d7b2e5d308) - Fix off-by-one bug in video stream cache [e4eddc9](https://github.com/rerun-io/rerun/commit/e4eddc9a1ed798c60ae696e7e605c5a80279db30) - Fix range queries on 3D points in `SpatialView3D` [213957c](https://github.com/rerun-io/rerun/commit/213957c5cd2dbbb7acfffd894310d7ec58ef7f5e) #### ๐Ÿ“š Docs - Fix typo in micro-batching documentation [#12716](https://github.com/rerun-io/rerun/pull/12716) (thanks [@wolfd](https://github.com/wolfd)!) #### ๐Ÿ•ธ๏ธ Web - Add progress bar to rerun-js and handle incomplete wasm downloads [476a178](https://github.com/rerun-io/rerun/commit/476a1780a52cf99b600d51a184e16028a05f6cce) - Add rerun-js login setting and default to hiding the login button [3203577](https://github.com/rerun-io/rerun/commit/320357798161a7663dea5777bec8d73431585239) #### ๐Ÿคทโ€ Other - Stop creating the search index into `docs.rs` [6afa84b](https://github.com/rerun-io/rerun/commit/6afa84bfaf501cacb46cbdf5a63ea626473cd1a1) ## [0.31.1](https://github.com/rerun-io/rerun/compare/0.31.0...0.31.1) - 2026-03-31 ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Fix our python 3.10 support [2ee1f4f](https://github.com/rerun-io/rerun/commit/2ee1f4f8f8d3651e6eefcbb632e14ed4662531f8) ## [0.31.0](https://github.com/rerun-io/rerun/compare/0.30.2...0.31.0) - 2026-03-30 - component mappings & prettier primitives ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-31 ### โœจ Overview & highlights #### Component mappings https://github.com/user-attachments/assets/18954263-1b34-4819-869d-02fa8117d6a3 You can now map components more generally. Want to display your mesh as a point cloud? Just add a point cloud visualizer and select the vertex positions as the source. #### Prettier primitives https://github.com/user-attachments/assets/4e523454-4b3c-492b-a2a4-463f0f17ec51 Our 3D primitives got a new default look! #### Performance improvements - Optimization for point clouds, videos shared among views, data ingestion, and recordings with many entities. ### โš ๏ธ Breaking changes - MCAP "layers" renamed to "decoders" [cf0a800](https://github.com/rerun-io/rerun/commit/cf0a800770845d4a88c0d5671b246c45c1f3507d) - `rr.Server` and `rr.CatalogClient`: `address` parameter/method renamed to `url`; `rerun server --address` is now `--host` [#12402](https://github.com/rerun-io/rerun/pull/12402) - `Entry.update(name=โ€ฆ)` is deprecated in favor of `Entry.set_name(โ€ฆ)` [#12370](https://github.com/rerun-io/rerun/pull/12370) ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-31 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Redesign Lens `Op` API to be `Selector`-based [d962bfe](https://github.com/rerun-io/rerun/commit/d962bfe1b77ebd20ed4c619622505fdda98a43db) - Add cull mode for front/back face culling on `Mesh3D` [be5a50f](https://github.com/rerun-io/rerun/commit/be5a50ff0e7c2bd92db47cf38d16d4c3ff960b21) - Add `frame_prefix` to `UrdfTree` for multi-robot URDF setups [8e27391](https://github.com/rerun-io/rerun/commit/8e273910d1fe92c536d33e9876e85f866b6166e2) #### ๐Ÿ Python API - Improve `DynamicArchetype` docs with example on how to use builtin batch types [2052af5](https://github.com/rerun-io/rerun/commit/2052af5526f429dfb882452bac69046f09a7104a) - Narrow typing for dynamic archetype [7b0bfaf](https://github.com/rerun-io/rerun/commit/7b0bfafcff27884b59546eada88872dad51b411e) - Fix wrong variable in error message for extra args in log() [#12674](https://github.com/rerun-io/rerun/pull/12674) (thanks [@jashshah999](https://github.com/jashshah999)!) - Allow re-registering the same blueprint to a dataset [fd03bf0](https://github.com/rerun-io/rerun/commit/fd03bf01e118c4c1245e4d08c2e41563cf707d29) - Fix `using_index_value` not accepting pyarrow data of the correct types [62b8ac3](https://github.com/rerun-io/rerun/commit/62b8ac3fdec5abad48e9dba3ecbbbc6219acfbf7) - Fix passing color columns with one element in the python sdk [e312d36](https://github.com/rerun-io/rerun/commit/e312d36e37a2e2c1c0e5426e9a77876d15c3f834) - Entity filter: do not include all properties if a single property is included [5d3a25f](https://github.com/rerun-io/rerun/commit/5d3a25f3c3c24cb242ef1a241dcd925d6443de9c) - Support binary stream [0a05422](https://github.com/rerun-io/rerun/commit/0a05422ed4b1caa6a43593555dd2b30f0bbfc6dd) - Reuse precomputed timelines dict in send_columns instead of re-iterating indexes [#12673](https://github.com/rerun-io/rerun/pull/12673) (thanks [@jashshah999](https://github.com/jashshah999)!) - Add description back to python package [6ab7971](https://github.com/rerun-io/rerun/commit/6ab7971d88444509e84a2ede36d3b3dff142fa92) - Add `save()` to `Recording` [4ab863a](https://github.com/rerun-io/rerun/commit/4ab863a68a0225f443a91d8c79b49b2cd1583480) - Add `compress()` and `as_pil_image()` to `DepthImage` with PNG compression [bde6870](https://github.com/rerun-io/rerun/commit/bde68700b3e0e58061b8a6332f23c64a703a1e0b) - Introduce `Chunk` API to the Python SDK [32eb891](https://github.com/rerun-io/rerun/commit/32eb8912030e573450c1f4f0c76e08a7c105e141) - Adds `rr.logout` to Python SDK [97af60e](https://github.com/rerun-io/rerun/commit/97af60e47d168fc57d1de866753df9e96020f326) - Disable cloud vector & full-text-search for now [3da7180](https://github.com/rerun-io/rerun/commit/3da7180f138adaca596ab551c00c961ba2f5fff4) - Add ContentFilter for cleaner filter_contents [8ce6d13](https://github.com/rerun-io/rerun/commit/8ce6d134ea789acc4073d9ed3913ee9a18a03e8e) - Add cloud provider details to end point [c8dd0c8](https://github.com/rerun-io/rerun/commit/c8dd0c8978dc9ef6d898b27a79630f3f36d9c17e) - Add component descriptor helper to Python archetype classes [8a2ef31](https://github.com/rerun-io/rerun/commit/8a2ef31bbd0979716c95d38a748e584a698db62f) #### ๐Ÿฆ€ Rust API - Rust `BlueprintActivation` default now matches python behavior [6d06892](https://github.com/rerun-io/rerun/commit/6d06892d43c1aac31ec3756afbd1bdeae4da2c19) - Update MSRV to 1.92 [52b51ea](https://github.com/rerun-io/rerun/commit/52b51ea68e30ecef4f259b0a2f65edaa3159f23d) #### ๐Ÿชณ Bug fixes - Fixes recording staying open when user logs out [80ab340](https://github.com/rerun-io/rerun/commit/80ab340688ae045b7201c6b89b4179ac154e5ddf) - Selection panel: show all values at the latest time stamp [474dbe8](https://github.com/rerun-io/rerun/commit/474dbe8a5694fd4ff031b78a15c89628ed374d9f) - Gracefully handle Rrd Manifest failures [900edfd](https://github.com/rerun-io/rerun/commit/900edfdfc81dc182b110296b8e06f41001d4ac1e) - Fix docs urls being loaded as data sources [80e3ce6](https://github.com/rerun-io/rerun/commit/80e3ce680cfafb80d60e863d84b9c0de94e5f52f) - Fix: fix clicking names of color maps [92529ca](https://github.com/rerun-io/rerun/commit/92529ca9ba227e5e629176da1ecd8dd29423866f) - Fix rare ui id conflict in list item content [0966696](https://github.com/rerun-io/rerun/commit/09666960eafc6a8b6c215643d0b28f503dbc1c05) - Fix drag'n'drop issue on web [2d97010](https://github.com/rerun-io/rerun/commit/2d9701073e5f6f7945c0b4107a2664bb851ac44a) - Handle `?url=rerun+http://โ€ฆ` in web viewer [0a47b41](https://github.com/rerun-io/rerun/commit/0a47b41dba92e4462f5ecfbd710213522a8e51a1) - Fix weird tooltip sizes in streams view [0d98570](https://github.com/rerun-io/rerun/commit/0d985702eb03c7518ced87139184239270a88b00) - Fix showing empty label boxes for various 2d & 3d visualizations [9c547ce](https://github.com/rerun-io/rerun/commit/9c547ce5d1f70815f77c0bab084cfa69dcfeb956) - Fix bounding box calculation for GLB/GLTF & DAE meshes [8382f14](https://github.com/rerun-io/rerun/commit/8382f1492d14b1e47aa8e42b3c609952d9d15bc1) - Fix eye camera being affected by previous recording of the same application/dataset [1b9a60f](https://github.com/rerun-io/rerun/commit/1b9a60fc99799cd91665af102c26ff344bd227c6) - Ignore NaN/Inf values for bounding box calculations used in 3d eye camera operations [3e26be7](https://github.com/rerun-io/rerun/commit/3e26be7f35ec6bab974367ecfda02cc8b505e80d) - Ensure that share modals are always on top [8d8eb40](https://github.com/rerun-io/rerun/commit/8d8eb407f37312a075bb564ce2d90e998f6c75ae) - Add zoom in limit to camera, because zooming in too far broke the view [4534001](https://github.com/rerun-io/rerun/commit/45340013b495c48d1f242c4c5ef23bfb062795e2) - Bump `lz4_flex` to prevent web viewer crashes [9355dd8](https://github.com/rerun-io/rerun/commit/9355dd8dc1c40926b9ae55216952b62df6490284) - Improve handling of texture creation errors [ea4283e](https://github.com/rerun-io/rerun/commit/ea4283e4bf85b670e170513ed1c4f843bfbb514a) - Fix prematurely resetting to Welcome screen even if stream finished properly [46d86eb](https://github.com/rerun-io/rerun/commit/46d86ebd4b17a1c544b8ab9a8572f48d0bd8dfd2) - Fix flipping chunks between loaded/unloaded when hovering time panel [0e51fa6](https://github.com/rerun-io/rerun/commit/0e51fa6ea3fd2e4adb8c40bb4d1ac98adef44de6) - Fix unset/reset not being greyed out for previously cleared out values [45f6ed2](https://github.com/rerun-io/rerun/commit/45f6ed2cb9430b2354002e164fd14066818c7861) - Fix default blueprint not being activated for Redap segments [e66cb92](https://github.com/rerun-io/rerun/commit/e66cb928f8b1d12826b201f90c0db7b07f772639) - Don't close active recording when opening settings [ea86ae9](https://github.com/rerun-io/rerun/commit/ea86ae9baad9a3d480b228bf0930e1bf0258be90) - Fix some AV1 videos not playing in the WebViewer [c062098](https://github.com/rerun-io/rerun/commit/c062098388e9738463be7936b37d5e5b0e1454d5) - Fix `sensor_msgs::PointCloud2` MCAP parser for empty point clouds [#12684](https://github.com/rerun-io/rerun/pull/12684) (thanks [@Woodii1998](https://github.com/Woodii1998)!) - Stop time control following if set time is called [acba7b3](https://github.com/rerun-io/rerun/commit/acba7b3bd76e2ae9f589987e7b293138a2844559) - Support LeRobot feature names on the `ListArray` path [30a86e1](https://github.com/rerun-io/rerun/commit/30a86e1daa8f3f9b953fd5b40585c5ab4296ea94) #### ๐ŸŒ Viewer improvements - Support custom bool types in plots [888a9e8](https://github.com/rerun-io/rerun/commit/888a9e8f75fb63a8b51c1ff6f87b9957f3fe0b93) - Add util to compute column of `Transform3D` updates for URDF joints [#12666](https://github.com/rerun-io/rerun/pull/12666) - Unified color swatches [c020c80](https://github.com/rerun-io/rerun/commit/c020c807258773ce5e770a2fc26276cff53b1bf3) - Make more visualizer errors point to specific components that are in an invalid state [19b2c79](https://github.com/rerun-io/rerun/commit/19b2c79aad92d96c41e71288c9cd0c1e169b16cc) - Add context menu to visualizer pills on time series view [136a2d1](https://github.com/rerun-io/rerun/commit/136a2d1c8fadc3ec5fde72888c616d4022ad4ead) - Make many more required components ui editable [2f791ad](https://github.com/rerun-io/rerun/commit/2f791adb8b5f370703178c6718d44317d7efd3a3) - Limit number of plots only for non-builtin components and increase the limit [0d66ceb](https://github.com/rerun-io/rerun/commit/0d66ceb08f20df4d007934f234568c2002d82517) - Show _all_ visualizable scalars on time series add-visualizer menu [90bf07b](https://github.com/rerun-io/rerun/commit/90bf07bfd76193e91716cbeb1084eb02fb994e72) - Stop warning on synthetic `oneof` protobuf fields [975d3ba](https://github.com/rerun-io/rerun/commit/975d3baee9b878decb5ff54fc2c2e30b6222f99c) - Allow saving image previews in the selection panel [6e09d66](https://github.com/rerun-io/rerun/commit/6e09d6655e812839c4d96948a3d4b6417b65b73b) - Support plotting components that contain `FixedSizeListArray` [53d2864](https://github.com/rerun-io/rerun/commit/53d286417bf228afe9987e8855b20caa0c846c67) - Add `!` operator to `Selector` to assert non-`null` values [a53c683](https://github.com/rerun-io/rerun/commit/a53c683bb70594bb0fa83ebbd68b29d882817a33) - Allow all visualizers to be created for any datatype match [5d5c2f2](https://github.com/rerun-io/rerun/commit/5d5c2f2f52f2f275c9528846fd5863986576986b) - Fix overrides in blueprints created by a native viewer no showing up on the web viewer and vice versa [74a30f2](https://github.com/rerun-io/rerun/commit/74a30f2f08cd9b21205886f3325a45da04d9e103) - Displays WorkOS organization when logged in [784c7b5](https://github.com/rerun-io/rerun/commit/784c7b5df379db71e4f435262f76e0cc579d2582) - Use full recording schema in manifest ingestion [6589388](https://github.com/rerun-io/rerun/commit/6589388d770ba08a2078e48114fdaf878e8b030a) - Change default fill mode for primitives [9d54afd](https://github.com/rerun-io/rerun/commit/9d54afddd516aa6ca2e6768f4929bec31d049d67) - Fixes logout + login into a different account [15d18e7](https://github.com/rerun-io/rerun/commit/15d18e7bd230a9ac7029ca278d940c20f2b0dd51) - Fix spamming errors when trying to show static scalars in the time series view [f9ca495](https://github.com/rerun-io/rerun/commit/f9ca49536b1d852e9bba7037f0a358c50c83ee70) - Ensure that URDF primitives are colored correctly [25ee3cb](https://github.com/rerun-io/rerun/commit/25ee3cb27e5a5db80d9551614ab7a76634bfbcce) - Add 5% vertical margin to time series plot bounds [5beb61e](https://github.com/rerun-io/rerun/commit/5beb61e5313ea41bb8ed6ced62aa0eeb6e896aec) - Ignore outliers for focusing on 2d & 3d point clouds [b367ae9](https://github.com/rerun-io/rerun/commit/b367ae90de2c569b3259748df2e3c5bd4a63be85) - Limit amount of heuristic lineseries from arbitrary sources [2f6d88f](https://github.com/rerun-io/rerun/commit/2f6d88f6f223ff26b4fe53eb68e61c7b99093dd6) - Adds cancel button to login flow [900887f](https://github.com/rerun-io/rerun/commit/900887fdcb866ffcd50ded1af41e517b0edd5fc8) - Add `magnification_filter` component to all image archetypes & add bicubic filtering [2c1ccee](https://github.com/rerun-io/rerun/commit/2c1cceebcdfcedfcdabf819f636c14344d0f54c0) - Truncate strings in syntax highlighted arrow ui to 100 chars [d06fc95](https://github.com/rerun-io/rerun/commit/d06fc956bd9d005eda3a8f0cfc3d13ea3f3cb03a) - Show login information on token mismatches in viewer [710ccd9](https://github.com/rerun-io/rerun/commit/710ccd9bebba0a40f42f34afabceec926a53cc56) - Allow cpu->gpu transfer buffer to shrink again [4977603](https://github.com/rerun-io/rerun/commit/4977603f043889429a9ee58e57e34ff8421e4696) - Fixes login in Safari [750f65f](https://github.com/rerun-io/rerun/commit/750f65f3fb97fe5c66f3de79134323f65bc87e5c) - Add support for subtasks in LeRobot loader [464ff56](https://github.com/rerun-io/rerun/commit/464ff567d995bdf34945e650026dbf6ccde52a25) #### ๐Ÿ—„๏ธ OSS server - Allow OSS server to register existing segments to new datasets [d0b8f78](https://github.com/rerun-io/rerun/commit/d0b8f780d01447a158b22c16a438acd509e98288) #### ๐Ÿš€ Performance improvements - Remove collapsing time gaps for performance reasons [eb0b67a](https://github.com/rerun-io/rerun/commit/eb0b67af333256c9eafebe86f42e56923c077955) - Share video players between views, de-duplicating video decoding work between pinholes and 2d views [64f1003](https://github.com/rerun-io/rerun/commit/64f100332a1c971cf0d9f339dcfa796535cbfdae) - Support progressive ingest of the rrd manifest [9a67723](https://github.com/rerun-io/rerun/commit/9a67723fe6ee4bbd2a73cb3d2402501008c7f7d2) - Performance improvements for many views + many entities [8f297fe](https://github.com/rerun-io/rerun/commit/8f297fec7324feca12be5c3b8eae05cf6c74b84e) - Speed up many-entities (Refactor view class store subscriber) [e24407f](https://github.com/rerun-io/rerun/commit/e24407f936bd0ade4313e832a0939484a958fc0d) - Much faster 3D point clouds [cb62f8c](https://github.com/rerun-io/rerun/commit/cb62f8c1b421bc79f28d429bfe83018c8703e908) - Add `ChunkStoreDiff::SchemaAddition` and use it for heuristics [822ac41](https://github.com/rerun-io/rerun/commit/822ac413a502a2e34e9af0462e242660eb3b0d33) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add any scalar example [ffd1687](https://github.com/rerun-io/rerun/commit/ffd168732b991ffb39ee67049a5f62681bff7e87) #### ๐Ÿ“š Docs - Add generalized example (snippet + doc page) for component mappings [41cb42f](https://github.com/rerun-io/rerun/commit/41cb42f2add056d206bc931a0ae8fa340bf43058) - Corrected the docs example for the `DynamicArchetype` [64d466d](https://github.com/rerun-io/rerun/commit/64d466d8bd2694939fff2341936d3e70191aea1c) - Adding snippet showing how to register a dataset as a subset of an existing dataset [09814c0](https://github.com/rerun-io/rerun/commit/09814c0a83423f9efd3913c9314171b8fc8e309c) #### ๐Ÿ–ผ UI improvements - Visibility control from scalar visualizer list [5f03f15](https://github.com/rerun-io/rerun/commit/5f03f15a03ed5d9ce2627d0f9ccee6f08ef55a05) - Make arrow values expandable if they don't fit [b30522c](https://github.com/rerun-io/rerun/commit/b30522c7e3f3f4e4e904f80a1bdeb7fe04eb6c30) - Add scrolling to column popup [a9a00ad](https://github.com/rerun-io/rerun/commit/a9a00ad58e15028aed1ca4adfc429a478f82ac11) - Allow to switch between recordings in chunk store browser [d449525](https://github.com/rerun-io/rerun/commit/d44952577dd6ff44392021d3ca4ea42702043d59) - Don't flicker videos to black when there's unloaded samples [dc8c31f](https://github.com/rerun-io/rerun/commit/dc8c31ffa05034ec31fa704d9f7fbecaeea8e053) - Show tooltip even when hovering play head in the time series view [d8bd248](https://github.com/rerun-io/rerun/commit/d8bd248376bd7c1440071b5210c2f8a63f566877) - Show number of columns and rows in the recording ui [29a88f9](https://github.com/rerun-io/rerun/commit/29a88f9cf4b9fa68806ca2c30151e488bd4f9c03) - Collapse multi-line labels if there are too many on screen [2916462](https://github.com/rerun-io/rerun/commit/2916462609f769bd8fe6b1cd33d4f3d7e46e73f2) - Fix slow resizing of table columns [299969c](https://github.com/rerun-io/rerun/commit/299969cddc89bcbecde2ea184ab0f47e6fb849ae) - Default to only showing active timeline in dataframe and log views [4df6c62](https://github.com/rerun-io/rerun/commit/4df6c62c4cd5c2f3296df64778df3909fefc39a6) - Refactor chunk browser UI [5b6017b](https://github.com/rerun-io/rerun/commit/5b6017b596fb5de1bebc74b1f062a2a6cc51f6d1) - Add cmd-K as secondary shortcut for command palette [6d5d512](https://github.com/rerun-io/rerun/commit/6d5d5120bfb421407391dfe54dc996b6361938bb) - Add fade to scroll areas to indicate that scrolling is possible [c0b8685](https://github.com/rerun-io/rerun/commit/c0b868559c25054185609583ee3aa1eced5f6247) - Better time range deselect UX [c947940](https://github.com/rerun-io/rerun/commit/c947940acf79fa0b0df60de6bd49bd19fad96034) - Better legend ui on plot views (time series & bar chart) [bc7393b](https://github.com/rerun-io/rerun/commit/bc7393b88bbb52ddc14290ce8f261aa49d7774c0) #### ๐Ÿ•ธ๏ธ Web - Enable WebGPU rendering on Safari (MacOS Tahoe+ only) [76bd562](https://github.com/rerun-io/rerun/commit/76bd562982cc15572c743cc818dfe07836dd2b9a) - Update wasm-bindgen to 0.2.108 [7314d4d](https://github.com/rerun-io/rerun/commit/7314d4d82f679928bea5a4b1c9133a12fc18e6a8) - Fix(web-viewer): clean up loader when startup is interrupted [#12696](https://github.com/rerun-io/rerun/pull/12696) (thanks [@Woodii1998](https://github.com/Woodii1998)!) #### ๐Ÿงข MCAP - Protobuf schema evolution and optional field support in Lenses [75a6dbc](https://github.com/rerun-io/rerun/commit/75a6dbcaca457dc557fc1821bbb2deed65043a56) - Improve Lenses errors and debug output [47596e0](https://github.com/rerun-io/rerun/commit/47596e0436de132662ce54753f975020a25e9ced) - Support also "sec" & "nsec" in `TimeSpecToNanos` [f7eb4cd](https://github.com/rerun-io/rerun/commit/f7eb4cd091970b7350977b8f127afa92b160ddd3) - Add a list of available layers to mcap convert cli [bc46df7](https://github.com/rerun-io/rerun/commit/bc46df75e5e81915a2a1e4f62a5c5ce7dd03431a) - Add `--timestamp-offset-ns` option to MCAP CLI [787e6cc](https://github.com/rerun-io/rerun/commit/787e6cc087e57a831f2d4a9e906636a1f46ebf4d) - Decode MCAP metadata records into `__properties` [0b43178](https://github.com/rerun-io/rerun/commit/0b43178d2c6198cb3fd801d104dc53f2f434fd15) - Split `re_arrow_combinators` into `re_lenses` and `re_lenses_core` [a9f4ca3](https://github.com/rerun-io/rerun/commit/a9f4ca3776e75a7280a769fefb5cf076f3de477a) - Rename MCAP `Layer` to `Decoder` [cf0a800](https://github.com/rerun-io/rerun/commit/cf0a800770845d4a88c0d5671b246c45c1f3507d) - Default to UNIX epoch timestamp timeline in MCAP decoders [bb6aee5](https://github.com/rerun-io/rerun/commit/bb6aee556ffa66e67ca9427c9da67aa17bbe6889) - Support protobuf messages with `Map` and arbitrary `oneof` fields [5ba2817](https://github.com/rerun-io/rerun/commit/5ba2817aec62a42c8504cd4774d4f483d55c227d) - Create static timeline for /tf_static ROS 2 MCAP channels [959f77f](https://github.com/rerun-io/rerun/commit/959f77f5408414c0bbd2936ddcc7fe5d6cfcbf4b) - Ignore empty MCAP channels [f0c99c5](https://github.com/rerun-io/rerun/commit/f0c99c5b743cf7cf341ca4c3375ebbb43cc44ade) - Ignore 'rosbag2' metadata field [357aab8](https://github.com/rerun-io/rerun/commit/357aab8c821f6d51c33a1d49afbcef92848b3f85) - Load URDF from `/robot_description` ROS 2 string topics in MCAP [426fcfc](https://github.com/rerun-io/rerun/commit/426fcfc2d699a7e721ed5d36e8b44eadeb737921) - Make `Selector` evaluation `ArrayRef`-based [35dff31](https://github.com/rerun-io/rerun/commit/35dff31f0aeb15cb2067fcdd807ac2a25e9faeb5) - Remove lenses that produce static columns [95ba113](https://github.com/rerun-io/rerun/commit/95ba113387f7416830b0057a627cf63bf5e5f8e8) #### ๐Ÿ“ฆ Dependencies - Upgrade `jsonwebtoken` to 10.3 [10a42b6](https://github.com/rerun-io/rerun/commit/10a42b6e8021463e2e8829b0915ff7fc2105cf57) #### ๐Ÿคทโ€ Other - Add `--new` flag to always spawn a new viewer even if another one is already using the default port [874d3a8](https://github.com/rerun-io/rerun/commit/874d3a844b16322b9609b5b1490966657a191aa6) - Add `rerun download` to download full recording from server [ac95098](https://github.com/rerun-io/rerun/commit/ac9509840b9024ac1538270a7b82d19da649fa11) - Fix `rerun rrd stats` reporting identical compressed/uncompressed sizes [5ac9604](https://github.com/rerun-io/rerun/commit/5ac960404ffb3919353870a28e2e1cdf8d8d53d4) ## [0.30.2](https://github.com/rerun-io/rerun/compare/0.30.1...0.30.2) - 2026-03-11 ### โœจ Overview Among many other things, this patch addresses a security advisory ([SNYK-RUST-JSONWEBTOKEN-15189005](https://security.snyk.io/vuln/SNYK-RUST-JSONWEBTOKEN-15189005)) and adds a [new example](https://rerun.io/examples/robotics/any_scalar)! ### ๐Ÿ”Ž Details #### ๐Ÿ Python API - Expose executable_name and executable_path in Python spawn() [#12685](https://github.com/rerun-io/rerun/pull/12685) #### ๐Ÿชณ Bug fixes - Handle `?url=rerun+http://โ€ฆ` in web viewer [5f2d65d](https://github.com/rerun-io/rerun/commit/5f2d65da30c83e8de0d2129feaff57f9461c3806) - Fix weird tooltip sizes in streams view [92403bb](https://github.com/rerun-io/rerun/commit/92403bbac8a9fbfed94753929a9cf0633088dd00) #### ๐Ÿš€ Performance improvements - Share video players between views, de-duplicating video decoding work between pinholes and 2d views [ed236da](https://github.com/rerun-io/rerun/commit/ed236dadfc72a824d6abd34afa76a39bac1c518c) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add any scalar example [3f58058](https://github.com/rerun-io/rerun/commit/3f580585a08c301dc304051dc9ee6f769fd8e819) #### ๐Ÿ–ผ UI improvements - Show tooltip even when hovering play head in the time series view [e44fbf0](https://github.com/rerun-io/rerun/commit/e44fbf0336c01bf7454a8edfd8ffa32c02f5d11e) #### ๐Ÿงข MCAP - Add a list of available layers to mcap convert cli [89f18dc](https://github.com/rerun-io/rerun/commit/89f18dc6fc2953cf24c5449127bffae9e4cd06d2) - Decode MCAP metadata records into `__properties` [cc8f1c2](https://github.com/rerun-io/rerun/commit/cc8f1c23e21a863f805759decf41febd2655f756) #### ๐Ÿ“ฆ Dependencies - Upgrade `jsonwebtoken` to 10.3 [312c3b8](https://github.com/rerun-io/rerun/commit/312c3b88e63ebd96411442dfd6ba7c30d5026059) #### ๐Ÿงข MCAP - MCAP "layers" have been renamed to "decoders". The CLI flag `-l`/`--layer` is now `-d`/`--decoder`. ## [0.30.1](https://github.com/rerun-io/rerun/compare/0.30.0...0.30.1) - 2026-03-04 ### โœจ Overview & highlights This patch on top of [0.30.0](https://github.com/rerun-io/rerun/releases/0.30.0) comes not only with a random assortment of bug fixes but also some small improvements to the Viewer. Most notably it's now possible to inspect values that were logged on the same timestamp! image ### ๐Ÿ”Ž Details #### ๐Ÿ Python API - Allow re-registering the same blueprint to a dataset [cafbec9](https://github.com/rerun-io/rerun/commit/cafbec9b874aedad35e48da14a709f5205571aab) - Fix `using_index_value` not accepting pyarrow data of the correct types [c59df09](https://github.com/rerun-io/rerun/commit/c59df09001094f6b494039ec13ab6cd35f97438e) #### ๐Ÿชณ Bug fixes - Gracefully handle Rrd Manifest failures [f14e343](https://github.com/rerun-io/rerun/commit/f14e343fc09a481e76f8898d8fbfe987a4161b80) - Fix docs urls being loaded as data sources [3eb98db](https://github.com/rerun-io/rerun/commit/3eb98dbbb4ade0478ba333e05f02fb7bb942e989) - Fix fix clicking names of color maps [700b590](https://github.com/rerun-io/rerun/commit/700b590dca0f658b750197f9be5b9bc3495b9dfd) - Fix rare ui id conflict in list item content [352f7c8](https://github.com/rerun-io/rerun/commit/352f7c8b5b659fa815d3bc436c54b6d28ca05396) - Fix drag'n'drop issue on web [956ed91](https://github.com/rerun-io/rerun/commit/956ed9185dd952bad4fc64b9ec8bad9980fa3b45) #### ๐ŸŒ Viewer improvements - Selection panel: show all values at the latest time stamp [36ff7ff](https://github.com/rerun-io/rerun/commit/36ff7ff8c6c6ab1e03696a35fb9a181885ea3073) - Limit number of plots only for non-builtin components and increase the limit [f4fb62b](https://github.com/rerun-io/rerun/commit/f4fb62b5c87a587fc2709c583734980a5b830b36) - Show _all_ visualizable scalars on time series add-visualizer menu [0da70a5](https://github.com/rerun-io/rerun/commit/0da70a54338e9dedc37a56a943fe4e297925718c) - Stop warning on synthetic `oneof` protobuf fields [84ee94e](https://github.com/rerun-io/rerun/commit/84ee94eb68b30eb48cec3ccbbfca2884a3b8b2f3) #### ๐Ÿ“š Docs - Corrected the docs example for the `DynamicArchetype` [32c37e8](https://github.com/rerun-io/rerun/commit/32c37e855b9ad2a99f38f6d63b456fc4843de179) #### ๐Ÿ–ผ UI improvements - Make arrow values expandable if they don't fit [4edd93e](https://github.com/rerun-io/rerun/commit/4edd93e30d2457d90a344cf107ca96e79a3ba083) - Add scrolling to column popup [7dbd933](https://github.com/rerun-io/rerun/commit/7dbd9339c70c03426a4f8fe54b8499750a7bbe9a) #### ๐Ÿงข MCAP - Support also "sec" & "nsec" in `TimeSpecToNanos` [31c9a43](https://github.com/rerun-io/rerun/commit/31c9a4388d8ec3dbcd2469ebdd26190ae5459a3b) ## [0.30.1](https://github.com/rerun-io/rerun/compare/0.30.0...0.30.1) - 2026-03-04 ### โœจ Overview & highlights This patch on top of [0.30.0](https://github.com/rerun-io/rerun/releases/0.30.0) comes not only with a random assortment of bug fixes but also some small improvements to the Viewer. Most notably it's now possible to inspect values that were logged on the same timestamp! image ### ๐Ÿ”Ž Details #### ๐Ÿ Python API - Allow re-registering the same blueprint to a dataset [cafbec9](https://github.com/rerun-io/rerun/commit/cafbec9b874aedad35e48da14a709f5205571aab) - Fix `using_index_value` not accepting pyarrow data of the correct types [c59df09](https://github.com/rerun-io/rerun/commit/c59df09001094f6b494039ec13ab6cd35f97438e) #### ๐Ÿชณ Bug fixes - Gracefully handle Rrd Manifest failures [f14e343](https://github.com/rerun-io/rerun/commit/f14e343fc09a481e76f8898d8fbfe987a4161b80) - Fix docs urls being loaded as data sources [3eb98db](https://github.com/rerun-io/rerun/commit/3eb98dbbb4ade0478ba333e05f02fb7bb942e989) - Fix fix clicking names of color maps [700b590](https://github.com/rerun-io/rerun/commit/700b590dca0f658b750197f9be5b9bc3495b9dfd) - Fix rare ui id conflict in list item content [352f7c8](https://github.com/rerun-io/rerun/commit/352f7c8b5b659fa815d3bc436c54b6d28ca05396) - Fix drag'n'drop issue on web [956ed91](https://github.com/rerun-io/rerun/commit/956ed9185dd952bad4fc64b9ec8bad9980fa3b45) #### ๐ŸŒ Viewer improvements - Selection panel: show all values at the latest time stamp [36ff7ff](https://github.com/rerun-io/rerun/commit/36ff7ff8c6c6ab1e03696a35fb9a181885ea3073) - Limit number of plots only for non-builtin components and increase the limit [f4fb62b](https://github.com/rerun-io/rerun/commit/f4fb62b5c87a587fc2709c583734980a5b830b36) - Show _all_ visualizable scalars on time series add-visualizer menu [0da70a5](https://github.com/rerun-io/rerun/commit/0da70a54338e9dedc37a56a943fe4e297925718c) - Stop warning on synthetic `oneof` protobuf fields [84ee94e](https://github.com/rerun-io/rerun/commit/84ee94eb68b30eb48cec3ccbbfca2884a3b8b2f3) #### ๐Ÿ“š Docs - Corrected the docs example for the `DynamicArchetype` [32c37e8](https://github.com/rerun-io/rerun/commit/32c37e855b9ad2a99f38f6d63b456fc4843de179) #### ๐Ÿ–ผ UI improvements - Make arrow values expandable if they don't fit [4edd93e](https://github.com/rerun-io/rerun/commit/4edd93e30d2457d90a344cf107ca96e79a3ba083) - Add scrolling to column popup [7dbd933](https://github.com/rerun-io/rerun/commit/7dbd9339c70c03426a4f8fe54b8499750a7bbe9a) #### ๐Ÿงข MCAP - Support also "sec" & "nsec" in `TimeSpecToNanos` [31c9a43](https://github.com/rerun-io/rerun/commit/31c9a4388d8ec3dbcd2469ebdd26190ae5459a3b) ## [0.30.0](https://github.com/rerun-io/rerun/compare/0.29.2...0.30.0) - 2026-02-25 - plot any scalar & on-demand streaming ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-30 ### โœจ Overview & highlights #### ๐Ÿ“ˆ Plot any scalar https://github.com/user-attachments/assets/cb10e8fd-7428-44ae-9f22-37fd721a357f You can now plot any scalar value, even if it lacks Rerun semantics in time series views. For instance, this lets you plot any value in an MCAP file. In addition to plotting scalars from MCAP files, it is now possible to visualize arbitrary scalar components that were logged using `AnyValues` or `DynamicArchetype`. The supported data types are: - `Float32` and `Float64` - `Int8`, `Int16`, `Int32`, and `Int64` - `UInt8`, `UInt16`, `UInt32`, and `UInt64` - `Boolean` - Any of the above nested inside of [Arrow structs](https://arrow.apache.org/docs/format/Intro.html#struct). This also makes it possible to log and visualize multiple scalars to the same entity, which can drastically reduce the size of the resulting `.rrd` files. _Note that by default, and without blueprints, views are still only spawned for entities with Rerun semantics._ Time series views for entities with custom scalar components need to be spawned either: - from the context menu of the streams, - by adding a view from the blueprint panel, - or by specifying a blueprint using the Python or Rust SDK. The components that should be visualized can be selected via a new dropdown menu from the completely revised visualizer section in the selection panel. New Source dropdown menu To quickly navigate to the desired visualizer, each time series view now shows an overview of it's current visualizers. List of visualizer in view selection panel. For more details please refer to our documentation: - [Customize views](https://rerun.io/docs/concepts/visualization/customize-views) - [Plot any scalar](https://rerun.io/docs/howto/visualization/plot-any-scalar) - [Component mappings outside of plotting](https://rerun.io/docs/howto/visualization/component-mappings), shown on the example of a colored point cloud And finally, thanks to a contribution from [@vfilter](https://github.com/vfilter), the series lines visualizer now also supports different interpolation modes to render staircase (or step) functions: Dropdown of different interpolation modes #### ๐Ÿ“ก On-demand streaming / larger-than-RAM The Rerun Viewer now supports _on-demand streaming_, when connected to either the OSS server or [Rerun Hub](https://5li7zhj98k8.typeform.com/to/a5XDpBkZ?typeform-source=rerun.io). With on-demand streaming, whatever you are currently viewing will be downloaded first. This includes time-scrubbing to the end of a very long recording and quickly seeing what is there, or viewing only one camera feed of many. Of course, your memory limit will be respected, and when you change your view or move the time cursor, the stale data will be evicted and the new data downloaded. This also means that the web viewer can finally view recordings larger than the 4GiB limit enforced by Wasm32, as long as those recordings are served by a Rerun server. It also means that Rerun Hub users can view huge recordings, larger than what fits into RAM. The OSS server, however, still loads everything into RAM before serving it. Usage: ``` > rerun server -d folder_with_large_recordings ``` Then either open the native viewer: ``` > rerun "rerun+http://127.0.0.1:51234" ``` Or the web viewer: ``` > rerun --serve-web "rerun+http://127.0.0.1:51234" ``` #### ๐Ÿฆพ Support for many more MCAP message types Like in the previous releases, we're continually expanding our support for common robotics data to make it easier for users to load their existing recordings. This release adds support for Foxglove Protobuf schemas to our built-in MCAP data loader, in addition to the existing set of supported ROS 2 messages. You can find an overview of all the messages that are currently supported [here](https://rerun.io/docs/concepts/logging-and-ingestion/mcap/message-formats). Complex scene imported from MCAP #### ๐ŸŽจ Extend existing views without forking Previously, extending the Viewer with custom Rust code required creating an entirely new view type, even if you just wanted to add a single new visualization to the existing 3D view. Now, you can register custom visualizers that plug directly into existing views, using fully custom archetypes & shaders in the process! https://github.com/user-attachments/assets/df609f10-5515-49bc-86fd-6940cc25706f In practice this works currently only well for 2D, 3D, and Map views but we'll keep working towards making the Viewer more and more modular & extensible! For more details, see the [custom visualizer example](https://github.com/rerun-io/rerun/tree/latest/examples/rust/custom_visualizer) and the [viewer rust extension docs](https://rerun.io/docs/howto/visualization/extend-ui) for a general overview. ### โš ๏ธ Breaking changes - **Python**: `segment_url_udf` and `segment_url_with_timeref_udf` have been removed - **Python**: `segment_url` parameter names have been updated - **CLI**: `.rrd` files are no longer tailed by default - **SDK**: `SeriesVisible` component type has been removed ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-30 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Fix performance regression with `--server-memory-limit 0` [cfc9a4c](https://github.com/rerun-io/rerun/commit/cfc9a4cab52b5ffe53861961418081f91e7be4e1) - Remove `SeriesVisible` component in favor of `Visible` [1fca08a](https://github.com/rerun-io/rerun/commit/1fca08ad65a86b0879e175ee984f931a523c6e17) - `rerun rrd verify` now checks for the presence of RRD manifests [2000ba5](https://github.com/rerun-io/rerun/commit/2000ba543f76d026fabc0aee3c9b92ae5da7aaca) - Footer-preserving RRD routing [b56a145](https://github.com/rerun-io/rerun/commit/b56a145262bc434542151776b569881522f735b5) #### ๐ŸŒŠ C++ API - Build C++ snippets into a single executable to avoid link time overhead [b0a3876](https://github.com/rerun-io/rerun/commit/b0a3876bc26ae1caff59ad1bf230279182522bb9) #### ๐Ÿ Python API - Basic Rust & Python blueprint API for component mappings [c6d7409](https://github.com/rerun-io/rerun/commit/c6d7409bcd94402e219b4d31c682fef52eb3b340) - Ensure that `import rerun_sdk.rerun` can be used [196c658](https://github.com/rerun-io/rerun/commit/196c658c2037a3cee7c2e7c25bda499074b4199e) - Expose `on_duplicate` in the Python SDK [e909e20](https://github.com/rerun-io/rerun/commit/e909e20b7a97eb2666421afa95052e4431fcb5db) - Small conversion improvement [383d37d](https://github.com/rerun-io/rerun/commit/383d37db68ae92a16eaf2f669090db1142e39ef2) - Table entry APIs: provide a hint for single-row list data [cb38397](https://github.com/rerun-io/rerun/commit/cb3839758c45d0464c1d507ebc460cb854df5d3a) - Add hint to prepend `api.` on connection error [a2ef1b3](https://github.com/rerun-io/rerun/commit/a2ef1b316b09823b74baf55fe0311a0911d935a7) - No longer return all columns when `filter_content()` matches nothing [5997d6f](https://github.com/rerun-io/rerun/commit/5997d6f932cc58954250d86a023b8667b9bd9e32) - Remove deprecated UDFs [b078e18](https://github.com/rerun-io/rerun/commit/b078e181367782d23ba37fc14fcc6ca795054a86) - Allow access to redap token from python sdk [bc2ce79](https://github.com/rerun-io/rerun/commit/bc2ce79f72521773fdbef31576cb00a49473fd8d) - Expose "rerun_registration_status" to `DatasetEntry.manifest()` [881cee6](https://github.com/rerun-io/rerun/commit/881cee6003b5ae0146850597782452fca3ac5faa) - Correctly handle lists in `AnyValues`/`DynamicArchetype` `.columns` [d2b53da](https://github.com/rerun-io/rerun/commit/d2b53da9ff1274c502968dc62fe96172a0a2ec9f) - Atomic (un)registrations [153acd1](https://github.com/rerun-io/rerun/commit/153acd1410d9daab045222ce7be69bde27b50723) - The `url` argument of `CatalogClient.create_table()` is now a prefix [1eb6c79](https://github.com/rerun-io/rerun/commit/1eb6c790d7c26f47da8dcfc88942713d97d57a42) - notebook: Re-export viewer event types [4c7d978](https://github.com/rerun-io/rerun/commit/4c7d97826a284371291155a5bb67359fb025b3de) - Add `entity_paths()`, `archetypes()`, and `component_types()` methods to `Schema` [015f1fc](https://github.com/rerun-io/rerun/commit/015f1fc22c6aa8b7af3b42fecf6feaf81dff2ef0) - Error when querying an unknown index [74a27df](https://github.com/rerun-io/rerun/commit/74a27dfb1c1257d6edbabbf42f28afe8bb043d2b) - Rename `rerun-sdk[datafusion]` to `rerun-sdk[dataplatform]` and add pandas dependency [b82cd06](https://github.com/rerun-io/rerun/commit/b82cd060273a20ce2a5b99b3b591bce654182710) - Add (and document) time range and selection support to `segment_url` [b2e7eff](https://github.com/rerun-io/rerun/commit/b2e7eff71b53e75d3a6d34c1804773ccc483f648) #### ๐Ÿฆ€ Rust API - Basic Rust & Python blueprint API for component mappings [c6d7409](https://github.com/rerun-io/rerun/commit/c6d7409bcd94402e219b4d31c682fef52eb3b340) - Move URDF joint transform computation to Rust [4e10aea](https://github.com/rerun-io/rerun/commit/4e10aeac7fd4213f20337081ea4c738bdf69c1f6) - Allow for custom visualizer with custom shader that integrates into existing view + example [3bf7120](https://github.com/rerun-io/rerun/commit/3bf71204daed7b1d218f6fb145c20d87d0215e36) - Improve feature-gating in Rust SDK (removes datafusion & co from the SDK deps) [#12659](https://github.com/rerun-io/rerun/pull/12659) (thanks [@paulzhng](https://github.com/paulzhng)!) #### ๐Ÿชณ Bug fixes - Fix first-person camera having zero speed in zero-sized scenes [#12535](https://github.com/rerun-io/rerun/pull/12535) (thanks [@Shivam-Bhardwaj](https://github.com/Shivam-Bhardwaj)!) - Fix heuristic for `target_frame` in 3D views for scenes with pinholes & named frames [3c678cc](https://github.com/rerun-io/rerun/commit/3c678cccb0e0e64bbaa2f02c6d6b0ed270bd319d) - Fix `sensor_msgs::PointCloud2` MCAP parser for small pointclouds [6491b95](https://github.com/rerun-io/rerun/commit/6491b955fb3d4d31f14ef0a6ac0d41398c3d3cf4) - Bug fix: allow copying selected text [4094a91](https://github.com/rerun-io/rerun/commit/4094a918637ad60efb27677701e0ae4d86e1b1a6) - Fix viewer error list jumping around [a1c976c](https://github.com/rerun-io/rerun/commit/a1c976cb3cdeb460e28a4f66420779cbe065ee5e) - Fix potential video deadlock [3827b1d](https://github.com/rerun-io/rerun/commit/3827b1dde88d5b6a2dc1e02501b0ca21cc46764f) - Fix drawing visualizations too often whenever there's multiple visualizer instructions of the same type on an entity [2f52aae](https://github.com/rerun-io/rerun/commit/2f52aaeb8e7b2204af1fbf29a090bc0884f9d445) - Fix table config button symbol for light-mode [55747b5](https://github.com/rerun-io/rerun/commit/55747b524ae2ad672d2926e5cd877af2513a806e) - Lenses: Use nullability of input rather than the output [d4398f5](https://github.com/rerun-io/rerun/commit/d4398f5593428b6bbf3803707814b37ed07e7557) - Ensure we report file loading errors on web [febbffc](https://github.com/rerun-io/rerun/commit/febbffcdd0f672be1aec72f1ebeeeefe43c665e2) - Recover from failing to load RrdManifest [ad214ca](https://github.com/rerun-io/rerun/commit/ad214ca5d40112fcc3e460acb21283647801b679) - Fix transparent annotation classes not leading to transparent segmentation image [55578c3](https://github.com/rerun-io/rerun/commit/55578c35e314d284dfb82b0089ff26e26b2191e4) - Make the "copy" button work for components in the time panel tree [8f788a9](https://github.com/rerun-io/rerun/commit/8f788a9d92cd37bdff6e84dcf344d743ab3bb433) - Fix deadlock when loading LeRobot datasets [#12652](https://github.com/rerun-io/rerun/pull/12652) - Fix NV12/YUYV ROS2 images being incorrectly loaded as depth [04beb77](https://github.com/rerun-io/rerun/commit/04beb777f4a49e6f720b09207fb5873ae22dacc0) - Don't include redo-buffer when saving blueprints [85cc4f9](https://github.com/rerun-io/rerun/commit/85cc4f96e00fb5b9b4a68e6249917832c9c7abc3) - Address issue where `.dae` with multiple triangle groups is not rendered [83e96bf](https://github.com/rerun-io/rerun/commit/83e96bf585dc7e9f708af6952d506e8013959078) - Don't reset video player on keyframe boundary for AV1 [3bcd9b8](https://github.com/rerun-io/rerun/commit/3bcd9b87d02b1af80e3bfb7c4ad42d6483f0d274) - Fix mono8/mono16 image channel classification [#12660](https://github.com/rerun-io/rerun/pull/12660) - Set AR for wasm development build on macOS [7945601](https://github.com/rerun-io/rerun/commit/7945601bb1b162fc09e79640419a0216c9d14e8e) - Fix interactions going through popups to the timepanel [1efc8c1](https://github.com/rerun-io/rerun/commit/1efc8c131d4f13c3238972c7bcf7957e2685833e) - Fix arrow key stepping on sequence timeline [1c6a71c](https://github.com/rerun-io/rerun/commit/1c6a71c77be2619a3c7abb6eb5c22a6fbbdbf2be) - Fix bad errors for unknown transform frames from overrides & view target frame [36ab981](https://github.com/rerun-io/rerun/commit/36ab981f133a3c97f76df0e9aa2ad939759bb1bb) #### ๐ŸŒ Viewer improvements - Extract `Selectors` from (nested) `StructArray` fields [8319663](https://github.com/rerun-io/rerun/commit/8319663a38d538adb20b2785c107d3394a969dce) - Video player fetching missing chunks and less memory usage with big gops [2596f4e](https://github.com/rerun-io/rerun/commit/2596f4ed342ef5fa5363354c82699d53783f7792) - Stop offering to visualize static scalar data as time series (would previously emitting a visualization error) [cc8c82c](https://github.com/rerun-io/rerun/commit/cc8c82c53e5bf9c7aad62f279f24de3537e268de) - Source selector for visualizer components [#12548](https://github.com/rerun-io/rerun/pull/12548) - Implement `Selector` when resolving component mappings [81879fd](https://github.com/rerun-io/rerun/commit/81879fd3f0cdbe3938865b4fa8ad2ba7b383ff24) - New (simpler) heuristic for spawning time series views [53fc1fe](https://github.com/rerun-io/rerun/commit/53fc1fe6e938b08d0a4e5dc9a4ac32a920d10d50) - Show at most 20 time series plots per entity, hide legend for more than 20 plots [b103ed5](https://github.com/rerun-io/rerun/commit/b103ed5dcc16a1384ac63bf75e5596b3b31d0d06) - Visualizers can now report warnings & multiple errors [67f8ef1](https://github.com/rerun-io/rerun/commit/67f8ef1c1f2b48e7e5d8a56d4ca0fdcf508e717b) - Populate source mappings with nested struct fields in time series [7365386](https://github.com/rerun-io/rerun/commit/73653863f8a027953b96d6a0c3e517f7c6e0c96a) - Add `ListArray` support for field extraction into `Selectors` [6f769d6](https://github.com/rerun-io/rerun/commit/6f769d6316f59e0fb30a2283d5aea5fda5323c23) - Adds visualizer list to time series view selection [127efa6](https://github.com/rerun-io/rerun/commit/127efa6c9ae311b3ec1338b6d2f0d87558867a79) - Make labels in spatial view translucent [2c376b1](https://github.com/rerun-io/rerun/commit/2c376b1565acd23f16cc7af2ce7951153afd90d7) - Fix sometimes not showing correct values in visualizer ui [a4839ce](https://github.com/rerun-io/rerun/commit/a4839ce5db37e35b5631d7eaf2b46874acf1c45c) - Show error when rerun_js viewer panics or fails to load [3f7a96d](https://github.com/rerun-io/rerun/commit/3f7a96d4cfb5ac884818d36ad4c991b83098b911) - Visualizer list now shows color codes for time series data [2a4ef19](https://github.com/rerun-io/rerun/commit/2a4ef194388e7a22d000372da2def99848f382fd) - Tweak `spawn_heuristics` and `recommended_visualizers` for time series views [cebc107](https://github.com/rerun-io/rerun/commit/cebc10792fa11f0175b8c1105132b8f0f53d20f7) - Fix color array display, allow editing color arrays in some cases [1e17b86](https://github.com/rerun-io/rerun/commit/1e17b862b6099a3401f7cffacb5f54668efb35b6) - Move Visualizer list above View properties in selection panel [be57aca](https://github.com/rerun-io/rerun/commit/be57aca16aa4088aa4d8f8d02abef5ce1f9403f7) - Visualizers can be deleted right from the visualizer list [0c57f9e](https://github.com/rerun-io/rerun/commit/0c57f9e590b1b2dd689f7e9903b91e3e91830575) - Show the root transform when visualizing transform trees [84388a9](https://github.com/rerun-io/rerun/commit/84388a9a5f2bb42280799a64bdbc40583d201a14) - `RecommendedVisualizer` now contains all nested `Float*Arrays` [27a7fbd](https://github.com/rerun-io/rerun/commit/27a7fbd8cf310055894af74122fcc61a362a72bf) - Different severities for video decoder errors [384c078](https://github.com/rerun-io/rerun/commit/384c07811be2dc653e9d257b936aad7369ab945d) - Fix showing fallback values for empty required components in visualizer UI [c8bf060](https://github.com/rerun-io/rerun/commit/c8bf0608bb71ec93b00daf21071176fa8cf04683) - Fix plot legend items disappearing when they have the same name [9c95786](https://github.com/rerun-io/rerun/commit/9c95786970763b35a75c70fd0b85b2237885ed64) - Visualizers can be added right from a view's selection [2e0f4cf](https://github.com/rerun-io/rerun/commit/2e0f4cf7154cfcaac206e8274bd682741218e691) - Make columns reorderable by entity in the dataframe view [e1e439e](https://github.com/rerun-io/rerun/commit/e1e439e0ceb4604334d4e33f00e68a90613e99e2) - Allow loading arbitrary data loader files (mcaps, pngs, ...) via http urls [a02a22b](https://github.com/rerun-io/rerun/commit/a02a22b90a2c91b3c9b979c76b8ec83bd5b67477) - Drop cached videos once all referencing episodes are loaded [#12653](https://github.com/rerun-io/rerun/pull/12653) - Add auto-scroll feature and time indicator to the dataframe view [514f1f3](https://github.com/rerun-io/rerun/commit/514f1f32de4e0e87ecd45ce624145f9625b185e5) - Add `InterpolationMode` component for step function rendering [#12657](https://github.com/rerun-io/rerun/pull/12657) (thanks [@vfilter](https://github.com/vfilter)!) - Allow loading extensionless http urls via magic bytes detection [daf7a35](https://github.com/rerun-io/rerun/commit/daf7a35ebd5b25a3b53c7fda9d4b6c77dee0e705) - Fixes performance issue of too many time series plots [a74b382](https://github.com/rerun-io/rerun/commit/a74b382b9ce0b413f14d96d4a2f264e1f4b2abe8) - Support `(U)Int16` in time series plots [6bb58e4](https://github.com/rerun-io/rerun/commit/6bb58e489ba76c1744599e222180f9a358720933) #### ๐Ÿ—„๏ธ OSS server - Test handling of schema conflict and make OSS server compliant [c618910](https://github.com/rerun-io/rerun/commit/c6189106664d039a28312f1ac3007de99c979dc5) - Fix table entry name leaking upon creation failure [af77d4e](https://github.com/rerun-io/rerun/commit/af77d4e0e2e40232b4fc5d3d8fe1dac44e429da7) #### ๐Ÿš€ Performance improvements - Improve memory budgeting [ce48297](https://github.com/rerun-io/rerun/commit/ce48297e29e520ca4a3b83293657921bf6d29a9f) - Only initialize the transform cache for the active timeline [a2f945b](https://github.com/rerun-io/rerun/commit/a2f945b4ce3d58d632573b8d026cbb45f3b5cee8) - Remove larger-than-ram feature flag [a4a8d56](https://github.com/rerun-io/rerun/commit/a4a8d560eb69b65a1db0120f28557b9bb026a660) - Fix: don't reload meshes after a GC [0259c43](https://github.com/rerun-io/rerun/commit/0259c43f199342e7a1863b385b76c03e85760fc0) - Do faster lineage check in release builds [e9c0def](https://github.com/rerun-io/rerun/commit/e9c0defcf49c6843b35f39d5206da87b34707f7b) - Optimization: skip calculating size of time histogram [33a492d](https://github.com/rerun-io/rerun/commit/33a492dc2f6172e05120938804ec7f0b03aad2e0) - Change VideoStreamCache eviction policy: keep cache around until GC [d517c3c](https://github.com/rerun-io/rerun/commit/d517c3c0ea940bf343adc459ab20b27507206158) - Change default plot bounds to follow time cursor [d2cf5d2](https://github.com/rerun-io/rerun/commit/d2cf5d2f68049d6bef96c5b355020c2539ce45b1) - Make handling of out of order video chunks much faster [f050460](https://github.com/rerun-io/rerun/commit/f050460c8b37c83beb0a0c33cf504d79e2aeb206) #### ๐Ÿง‘โ€๐Ÿซ Examples - Rerun to LeRobot export example [#12541](https://github.com/rerun-io/rerun/pull/12541) - Add ROS TF example [#12603](https://github.com/rerun-io/rerun/pull/12603) - Add webpage example [e2fd7f6](https://github.com/rerun-io/rerun/commit/e2fd7f65fa0b264f68a61935aba33ef54ff20ab4) #### ๐Ÿ“š Docs - Add a disambiguation from RViz to the README [90faabb](https://github.com/rerun-io/rerun/commit/90faabb4f83659302f186bcddb0813178cb8d366) - Add snippet demonstrating conversion of custom mcap protobuf file to rrd [ebd731c](https://github.com/rerun-io/rerun/commit/ebd731c992e2f68eb3f0085742cbe7ff2a047a1a) - Adding snippet to convert mcap with send_column [f2b3770](https://github.com/rerun-io/rerun/commit/f2b3770e827d3ad01799cf425a05c6c446c48efe) - Adding urdf import support to protobuf convert snippets [8be967d](https://github.com/rerun-io/rerun/commit/8be967d22d17766c13b00f5dc34c714f127b00e2) - Add documentation for converting custom data to rrd using log/send_column [f8cf13c](https://github.com/rerun-io/rerun/commit/f8cf13c6686b0dd06e518ec0b8ebe24017bc75ab) - Update MCAP message support documentation [a77922a](https://github.com/rerun-io/rerun/commit/a77922a46338cc1037d5c97ef9680e9879c86f2f) - Add layer identifier "foxglove" to `rerun mcap convert` [1436027](https://github.com/rerun-io/rerun/commit/14360275483603361d0c05ce522046344b226fed) #### ๐Ÿ–ผ UI improvements - Show that other timelines have data on timeline loader [47bf28f](https://github.com/rerun-io/rerun/commit/47bf28f7377bf09230ddf38151db43c58cfdc3fa) - Improve error messages regarding arrow datatypes [b3c395e](https://github.com/rerun-io/rerun/commit/b3c395eb019764073fc128d1ff39e56fdecb4b1b) - Fix moving text cursor with cmd-arrows [cd90f34](https://github.com/rerun-io/rerun/commit/cd90f346f2b591d8c3e79e06476c72e9a93d1596) - Don't auto-pause when moving time cursor [647cd11](https://github.com/rerun-io/rerun/commit/647cd11131b6e5cc0feb8949dc45251190905ee6) - Value previews in source dropdown [6d41da9](https://github.com/rerun-io/rerun/commit/6d41da96aa7ac95f7825067bdeba535baa30c2f0) - Only allow ui edits of visualizer components where they actually have an impact [b3fa1fc](https://github.com/rerun-io/rerun/commit/b3fa1fc5fcdd3467543263b68bb8739422f8d162) #### ๐Ÿ•ธ๏ธ Web - Expose theme setting on web-viewer notebook [beaee9c](https://github.com/rerun-io/rerun/commit/beaee9c6acb9618555263943d2297943be618181) - react-web-viewer: improve parameter handling logic [07a76ca](https://github.com/rerun-io/rerun/commit/07a76ca7b66e63d1c235b31226931994b5e27f44) #### ๐Ÿงข MCAP - Support some Foxglove messages in MCAP data loader via lenses [7e05213](https://github.com/rerun-io/rerun/commit/7e052135ecdf6eb93e99df73dcf8b2c7088b849a) - Support Foxglove `Log` protobuf message in MCAP loader [f7cdf09](https://github.com/rerun-io/rerun/commit/f7cdf09ed685b50cfbdc92cd4a2d6fcf572528d9) - Support `foxglove.FrameTransform` in MCAP data loader [a018942](https://github.com/rerun-io/rerun/commit/a0189422daed372c6209f45caca1a35a9b752962) - Support `foxglove.RawImage` in MCAP data loader [ff7db99](https://github.com/rerun-io/rerun/commit/ff7db996617cf6bcc5d53c7a82f7e45558b7e87c) - Support `foxglove.PointCloud` in MCAP data loader [9e8e34b](https://github.com/rerun-io/rerun/commit/9e8e34bdc9bcbf8a05001c987b264f1b9dc90ecc) - Add ROS2 MCAP support for Float64Array, Float64MultiArray, and Joy messages [512d0e6](https://github.com/rerun-io/rerun/commit/512d0e638261b4b2a504bd46f8690933445f0e36) #### ๐Ÿคทโ€ Other - Refactor `add to new view` section [8871a13](https://github.com/rerun-io/rerun/commit/8871a1307614ab97763e22f782d7d9805fa5676a) - Add `rerun auth logout` [7b3ae54](https://github.com/rerun-io/rerun/commit/7b3ae543dc0de39cf382aefc435f420de99ef223) - `rerun rrd split` [9bde24f](https://github.com/rerun-io/rerun/commit/9bde24fb5860f507bec155da377f40c1b8b0359e) - Add `--follow` option to explicitly follow files and URLs [c34a84b](https://github.com/rerun-io/rerun/commit/c34a84b5382620033182bb41719d1e1de74f10c6) ## [0.29.2](https://github.com/rerun-io/rerun/compare/0.29.1...0.29.2) - 2026-02-13 - Bug fixes and documentation update ### โœจ Overview & highlights This patch release contains bug fixes and adds a documentation guide with an example for [converting existing data to Rerun](https://rerun.io/docs/howto/logging-and-ingestion/convert-existing-data). ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Fix performance regression with `--server-memory-limit 0` [cefbdf6](https://github.com/rerun-io/rerun/commit/cefbdf65bdde603b19c2c4d1855ea78916afd979) #### ๐Ÿ Python API - notebook: Re-export viewer event types [51d949e](https://github.com/rerun-io/rerun/commit/51d949e9bad07fcb2c47c02e8c57da35262f9c44) #### ๐Ÿชณ Bug fixes - Fix table config button symbol for light-mode [57b0121](https://github.com/rerun-io/rerun/commit/57b0121cf23993e48ab780f12fbcbddb433fb78a) - Fix drag-and-drop of `.mcap` files on web [#12631](https://github.com/rerun-io/rerun/pull/12631) - Ensure we report file loading errors on web [7fd794e](https://github.com/rerun-io/rerun/commit/7fd794ed39f480764da6c4a6c01b47426265cbf0) #### ๐ŸŒ Viewer improvements - Show error when rerun_js viewer panics or fails to load [04e7ae8](https://github.com/rerun-io/rerun/commit/04e7ae8fe761b2e982c55575f62dc4925e6afead) #### ๐Ÿ“š Docs - Add snippet demonstrating conversion of custom MCAP protobuf file to RRD [53fbeeb](https://github.com/rerun-io/rerun/commit/53fbeeb7ee0485242b504fb666bd7b6f8cc8e90a) - Add documentation for converting custom data to RRD using log/send_column [815d45c](https://github.com/rerun-io/rerun/commit/815d45c25e23851629f2ab77d9c8446e5aa87da0) #### ๐Ÿ–ผ UI improvements - Fix moving text cursor with cmd-arrows [13f7124](https://github.com/rerun-io/rerun/commit/13f71249f36ba9a5b5d99cfbc54630bf1041f898) - Improve error messages regarding arrow datatypes [48f4637](https://github.com/rerun-io/rerun/commit/48f4637e7f95ef11d9dd55309dd3cda3afe26733) ## [0.29.1](https://github.com/rerun-io/rerun/compare/0.29.0...0.29.1) - 2026-02-06 - Improved labels, bug fixes & performance improvements ### โœจ Overview & highlights This is mainly a patch release with some fixes and improvements. We also included a change that makes labels translucent. This makes them less obtrusive and improves visibility of overlapping labels, as shown in the image segmentation example below. Example of translucent labels in Rerun 0.29.1 ### ๐Ÿ”Ž Details #### ๐Ÿ Python API - Ensure that `import rerun_sdk.rerun` can be used [fd28cd3](https://github.com/rerun-io/rerun/commit/fd28cd3946567929b6e968d9df07bec5a67eabb0) - Allow access to redap token from Python SDK [51506ca](https://github.com/rerun-io/rerun/commit/51506caeb34a6edadbca4c8938c0039fb0e35a51) #### ๐Ÿชณ Bug fixes - Fix viewer error list jumping around [05ae689](https://github.com/rerun-io/rerun/commit/05ae6895c38fc8fd74583e86fb6747b7d3017497) - Fix potential video deadlock [eefacdf](https://github.com/rerun-io/rerun/commit/eefacdf68e51abb5c4755d1754cee272ae7e5ad8) #### ๐ŸŒ Viewer improvements - Make labels in spatial view translucent [ec62ad9](https://github.com/rerun-io/rerun/commit/ec62ad908332e110f4ade168ae9d78286c6cbf5b) #### ๐Ÿš€ Performance improvements - Do faster lineage check in release builds [0d546c0](https://github.com/rerun-io/rerun/commit/0d546c05912bb33aae8a06f252bab5749265521c) ## [0.29.0](https://github.com/rerun-io/rerun/compare/0.28.2...0.29.0) - 2026-01-28 - URDF improvements, improved ROS 2 docs, and memory panel ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-29 ### โœจ Overview & highlights #### URDF loader improvements In the previous 0.28 release, we overhauled Rerun's [built-in URDF loader](https://rerun.io/docs/howto/logging-and-ingestion/urdf) to work with TF-style transforms with `parent` and `child` frames. Now, taking advantage of these entity-path-independent transforms, we simplified the hierarchy in which URDF assets are stored. Collision and visual meshes are now below separate entity path roots, making it easy to toggle one or the other. Additionally, the paths are now more compact to make it easier to scroll through them. https://github.com/user-attachments/assets/7a3f6112-e87f-4249-977b-ed9944e2c356 #### `UrdfTree` utility in Python We added a [`UrdfTree` Python utility](https://rerun.io/docs/howto/logging-and-ingestion/urdf#urdf-utilities-python) that can be used to simplify operations with URDF models, e.g.: * accessing links and joints * computing transforms from joint states * retrieving geometry entity paths for links We also updated our [`animated_urdf.py` demo](https://github.com/rerun-io/rerun/tree/main/examples/python/animated_urdf) to use this utility, showing for example how you can dynamically change the color of a gripper link based on its angle. https://github.com/user-attachments/assets/e0b6882f-b5dd-47d9-9afc-3ea30bc38e28 #### Experimental screenshots from Python There's now an experimental screenshot API which allows to take screenshots of the Viewer or individual views: ```py # Connect to a local viewer. viewer = ViewerClient() # Screenshot the entire viewer. viewer.save_screenshot("entire_viewer.jpg") # Screenshot only the view we created earlier. viewer.save_screenshot("my_view.png", view_id=view.id) ``` For a full snippet check [here](https://github.com/rerun-io/rerun/blob/0.29.0/docs/snippets/all/howto/screenshot.py). โš ๏ธ There's still a lot of [rough edges](https://github.com/rerun-io/rerun/issues/12482) and this API may change in the future. #### Improved target frame selection UI The target frame selection UI now shows matching suggestions, making it easier to select a frame name from the transforms in your data. https://github.com/user-attachments/assets/4ba25a41-de6a-4209-bd06-c31a33d8d993 #### Updated ROS 2 example & documentation We refreshed the documentation showing examples of how some ROS concepts and messages can be mapped to Rerun, together with an updated Python node example. The documentation page can be found [here](https://rerun.io/docs/howto/integrations/ros2-nav-turtlebot). Rerun viewer showing data streamed from the example ROS node #### Improved memory panel You can now get some insight on which parts of your recording use how much memory in the viewer using the improved memory panel: image ### โš ๏ธ Breaking changes - **Python**: New API for visualizer overrides - `VisualizerOverrides` removed, now pass visualizer objects directly (e.g., `rr.SeriesLines()`) - **Python**: `Entry.update()` deprecated in favor of `Entry.set_name()` - **Python**: `CatalogClient` and `Server` constructor parameters renamed (`addr` โ†’ `url`/`host`) - **Python**: Removed deprecated `rerun.dataframe` module (use `rerun.server.Server` and `rerun.catalog` instead) - **Python**: Removed deprecated `rerun.catalog` APIs from 0.28 - **Python**: Internal submodules moved to underscore-prefixed names (e.g., `rr.color_conversion` โ†’ `rr._color_conversion`) - **CLI**: `rerun server --addr` renamed to `rerun server --host` - **Blueprint**: Component overrides from `.rbl` files created in previous versions cannot be loaded in 0.29 - **Catalog server**: Datasets need re-registration to populate `name` and `start_time` in segment table ๐Ÿงณ Check the migration guide for details: https://rerun.io/docs/reference/migration/migration-0-29 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Fix dropping of entities when using `rerun rrd filter` [#12584](https://github.com/rerun-io/rerun/pull/12584) - Apply backpressure in gRPC proxy server [cac538e](https://github.com/rerun-io/rerun/commit/cac538e05e122ad7363aa99248d14a9c4a411581) - Enforce `Selector` usage in `re_sdk::lenses` [521c796](https://github.com/rerun-io/rerun/commit/521c7967355c4a0cf06d9fcf4e2b52001e79bc87) #### ๐Ÿ Python API - Allow tables to be created without providing a URL [#12132](https://github.com/rerun-io/rerun/pull/12132) - Remove deprecated dataframe API (`rerun.dataframe`) [#12320](https://github.com/rerun-io/rerun/pull/12320) - Remove deprecated APIs in `rerun.catalog` [#12321](https://github.com/rerun-io/rerun/pull/12321) - Deprecate `Entry.update` in favor of `Entry.set_name` [#12370](https://github.com/rerun-io/rerun/pull/12370) - Fix missing `child_frame`/`parent_frame` arguments from pinhole constructor [#12360](https://github.com/rerun-io/rerun/pull/12360) - Use visualizer objects in blueprint override API [#12345](https://github.com/rerun-io/rerun/pull/12345) - Rename `address` to `url` or `host` depending on context [#12402](https://github.com/rerun-io/rerun/pull/12402) - Check for unset attr from extension class init [#12376](https://github.com/rerun-io/rerun/pull/12376) - Add time axis in snippet in time series view snippet [#12506](https://github.com/rerun-io/rerun/pull/12506) - Fix `RecordingStream` so it has a unique recording id when none is provided [eb14e16](https://github.com/rerun-io/rerun/commit/eb14e163c0d58df77244b69281b160cd6f47416f) - Do not assume top-level bindings in `RecordingStream.__del__` [201e7c3](https://github.com/rerun-io/rerun/commit/201e7c31680fcd69e8ab4d7625340a32e7133c94) - Fix rare deadlock in Python send/log API [7f72b23](https://github.com/rerun-io/rerun/commit/7f72b23203ce842dbfb3dd334c7cde6bfd70378e) - Catch keyboard interrupt in `rerun-sdk` CLI and return exit codes [#12496](https://github.com/rerun-io/rerun/pull/12496) - Make `rr.experimental.ViewerClient.send_table` more flexible [ba733ad](https://github.com/rerun-io/rerun/commit/ba733ad9b1ec1677028fbd21a00634276a991871) #### ๐Ÿฆ€ Rust API - Allow tables to be created without providing a URL [#12132](https://github.com/rerun-io/rerun/pull/12132) - Rust SDK: `blueprint` support [#12307](https://github.com/rerun-io/rerun/pull/12307) (thanks [@sectore](https://github.com/sectore)!) - Update MSRV to 1.90 [#12337](https://github.com/rerun-io/rerun/pull/12337) - Make `RecordingStreamBuilder::with_blueprint()` apply to everything, not just `spawn()` [#12347](https://github.com/rerun-io/rerun/pull/12347) (thanks [@kpreid](https://github.com/kpreid)!) - Rust SDK: Change default server memory limit [5cb7213](https://github.com/rerun-io/rerun/commit/5cb7213e90823092ec67ae805419a9dd19660c09) - Update ply-rs-bw to 3.0.0 (corrected) [#12593](https://github.com/rerun-io/rerun/pull/12593) (thanks [@bourumir-wyngs](https://github.com/bourumir-wyngs)!) #### ๐Ÿชณ Bug fixes - Fix bad error reporting when registering a (faulty) RRD URI built from a relative path [#12309](https://github.com/rerun-io/rerun/pull/12309) - Only do `furthest_from` GC when we can download chunks again [#12363](https://github.com/rerun-io/rerun/pull/12363) - URDF loader: use `InstancePoses3D` for geometry scale [#12371](https://github.com/rerun-io/rerun/pull/12371) - Fix incorrect handling for cameras and depth images for 3D views that use target frames other than the scene root [#12361](https://github.com/rerun-io/rerun/pull/12361) - Fix OSS server locking up when asked for many chunks at once [#12384](https://github.com/rerun-io/rerun/pull/12384) - Fix GC sometimes not collecting anything [#12398](https://github.com/rerun-io/rerun/pull/12398) - URDF: Bundle pose + mesh scale in single `InstancePoses3D` [#12385](https://github.com/rerun-io/rerun/pull/12385) (thanks [@yujeong1jeong](https://github.com/yujeong1jeong)!) - Don't show error for implicit transform axes if we're already showing named transforms [#12419](https://github.com/rerun-io/rerun/pull/12419) - Fix opening link with only time selection in fragment [#12428](https://github.com/rerun-io/rerun/pull/12428) - Fix decoding errors for MCAP files with gaps in protobufs [#12436](https://github.com/rerun-io/rerun/pull/12436) - Fix time point sharing for duration timelines [#12466](https://github.com/rerun-io/rerun/pull/12466) - Fix transforms & videos breaking when receiving new data in the background [#12452](https://github.com/rerun-io/rerun/pull/12452) - Fix ignoring nested `oneof` fields in `protobuf` MCAP messages [#12462](https://github.com/rerun-io/rerun/pull/12462) - Fix early disconnect with `--newest-first` [#12484](https://github.com/rerun-io/rerun/pull/12484) - Fix: tap stream view to move time cursor [#12476](https://github.com/rerun-io/rerun/pull/12476) - Fix `RecordingInfo` properties not included in the segment table [3781b18](https://github.com/rerun-io/rerun/commit/3781b1867ea70193d9b2a0479874b70c68c4debb) - Fix DAE import crash caused by duplicate XML id attributes [#12555](https://github.com/rerun-io/rerun/pull/12555) (thanks [@yujeong1jeong](https://github.com/yujeong1jeong)!) - Warn when logging transform at `/` without set `parent_frame` [#12588](https://github.com/rerun-io/rerun/pull/12588) - Fix `sensor_msgs::PointCloud2` MCAP parser for small pointclouds [f705229](https://github.com/rerun-io/rerun/commit/f7052295f59bac02ee4d987284facdda406256ed) #### ๐ŸŒ Viewer improvements - Automatically cast to `Float64Array` in time series views [#12342](https://github.com/rerun-io/rerun/pull/12342) - Show loaded indicator when time panel is collapsed [#12396](https://github.com/rerun-io/rerun/pull/12396) - Video stream changes to support out of order samples [#12277](https://github.com/rerun-io/rerun/pull/12277) - Measure and display network latency to redap servers [#12426](https://github.com/rerun-io/rerun/pull/12426) - Enable vulkan backend for Mac Viewer builds, select graphics adapter more explicitly internally [#12449](https://github.com/rerun-io/rerun/pull/12449) - More robust world grid rendering [#12444](https://github.com/rerun-io/rerun/pull/12444) - Display downloaded & max size of recording in selection panel [#12429](https://github.com/rerun-io/rerun/pull/12429) - Allow multiple visualizers of same type per `Entity` [#12275](https://github.com/rerun-io/rerun/pull/12275) - Warn if an entity has multiple `CoordinateFrame` instances [#12514](https://github.com/rerun-io/rerun/pull/12514) - Fix case of unstable camera image plane distance [#12559](https://github.com/rerun-io/rerun/pull/12559) - Simplify memory panel with more tabs [9dada34](https://github.com/rerun-io/rerun/commit/9dada34153435b37fbbf2e4269f70ce8eee37c70) #### ๐Ÿš€ Performance improvements - Implement backpressure in `re_log_channel` [3a25a25](https://github.com/rerun-io/rerun/commit/3a25a25db3765fac3dba445d3002c95906ebf7e2) #### ๐Ÿง‘โ€๐Ÿซ Examples - Modernize `ros_node` example and documentation [#11968](https://github.com/rerun-io/rerun/pull/11968) - Add MCAP example [#12353](https://github.com/rerun-io/rerun/pull/12353) - Add eye control example [#12459](https://github.com/rerun-io/rerun/pull/12459) - Use optical flow tracking in detect and track objects example [#12564](https://github.com/rerun-io/rerun/pull/12564) - Show dynamic mesh update in `animated_urdf.py` example [#12571](https://github.com/rerun-io/rerun/pull/12571) #### ๐Ÿ“š Docs - Reshuffle documentation organization [#12355](https://github.com/rerun-io/rerun/pull/12355) - Update documentation about MCAP ROS 2 message support [#12406](https://github.com/rerun-io/rerun/pull/12406) - feat: Add the SAM 3D Body example [#12499](https://github.com/rerun-io/rerun/pull/12499) (thanks [@pablovela5620](https://github.com/pablovela5620)!) - Add how to guide on querying videos [5a36526](https://github.com/rerun-io/rerun/commit/5a36526c61f70ffdbbcf776378b81b7af0e3b703) - Mention memory limit settings UI in docs [50ebee6](https://github.com/rerun-io/rerun/commit/50ebee6475a186064db7a30ed90ea96ab10549ed) - docs(sdk): add thread safety warning for log() with mutexes [#12579](https://github.com/rerun-io/rerun/pull/12579) (thanks [@ecto](https://github.com/ecto)!) #### ๐Ÿ–ผ UI improvements - Add user menu [#12336](https://github.com/rerun-io/rerun/pull/12336) - Larger than ram time panel UI [#12338](https://github.com/rerun-io/rerun/pull/12338) - Improved auth section in server modal [#12369](https://github.com/rerun-io/rerun/pull/12369) - Show info message after screenshot from command palette [#12465](https://github.com/rerun-io/rerun/pull/12465) - Display chunk download bandwidth [#12451](https://github.com/rerun-io/rerun/pull/12451) - Fix icon colors in light theme [edac1a1](https://github.com/rerun-io/rerun/commit/edac1a15d6aec2e344017bcf9b8148af8e6389bd) ## [0.28.2](https://github.com/rerun-io/rerun/compare/0.28.1...0.28.2) - 2025-12-18 - Fix RRD compaction, plot panning, and Collada mesh loader ### โœจ Overview & highlights **Fixes to `.rrd` Chunk handling.** We revised our Chunk slicing logic to prevent `.rrd` files ballooning in sizes. This also fixes the problem of broken `.rrd` files that contain tensors. **Collada (`.dae`) mesh support.** This patch adds native support for Collada (`.dae`) meshes, a common format used with URDF files. You can now load URDFs that reference `.dae` assets without manual mesh conversion! screenshot of a loaded mesh ### ๐Ÿ”Ž Details #### ๐Ÿ Python API - Improve the docstrings related to serve_gpc APIs [#12314](https://github.com/rerun-io/rerun/pull/12314) - Add Python support for `UrdfTree` [#12310](https://github.com/rerun-io/rerun/pull/12310) #### ๐Ÿชณ Bug fixes - Don't force absolute time views after panning [#12297](https://github.com/rerun-io/rerun/pull/12297) - Introduce deep Chunk slicing [#12312](https://github.com/rerun-io/rerun/pull/12312) #### ๐ŸŒ Viewer improvements - Collada (`.dae`) mesh loader [#10288](https://github.com/rerun-io/rerun/pull/10288) - Add option to hide all notification popups/toasts [#12354](https://github.com/rerun-io/rerun/pull/12354) #### ๐Ÿ“š Docs - docs: Fix parameter name from 'color' to 'colors' [#12294](https://github.com/rerun-io/rerun/pull/12294) (thanks [@Ivan-Zhong](https://github.com/Ivan-Zhong)!) ## [0.28.1](https://github.com/rerun-io/rerun/compare/0.28.0...0.28.1) - 2025-12-18 - Fix some telemetry, depth images, and logging #### ๐Ÿชต Log API - Ensure that `flush` waits for all data loaders to finish [#12281](https://github.com/rerun-io/rerun/pull/12281) #### ๐Ÿชณ Bug fixes - Fix video errors having black rectangle around them [#12284](https://github.com/rerun-io/rerun/pull/12284) - Fix RVL depth decoding for non-quantized images [#12289](https://github.com/rerun-io/rerun/pull/12289) #### ๐ŸŒ Viewer improvements - Fix image planes not working correctly in some named-transform frame scenarios [#12276](https://github.com/rerun-io/rerun/pull/12276) - Fix auto-size for 2d views with RVL encoded depth image not working [#12288](https://github.com/rerun-io/rerun/pull/12288) - Restore depth image visualizers to 2D view kind (fix heuristic) [#12290](https://github.com/rerun-io/rerun/pull/12290) - Add dataloader for encoded depth image (to allow `log_from_file` & dragdrop) [#12287](https://github.com/rerun-io/rerun/pull/12287) #### ๐Ÿคทโ€ Other - Improved error message when `rrd compare --unordered` fails [#12282](https://github.com/rerun-io/rerun/pull/12282) ## [0.28.0](https://github.com/rerun-io/rerun/compare/0.27.2...0.28.0) - 2025-12-18 - Transforms, URDF, LeRobotV3, and Catalog API improvements ๐Ÿงณ [Migration guide](https://rerun.io/docs/reference/migration/migration-0-28) ### โœจ Overview & highlights **Transform system overhaul.** This release brings significant improvements to how transforms are handled, especially from ROS or MCAP-based systems. You can now decouple spatial relationships from entity paths by using `CoordinateFrame` to associate entities with named frames, and `Transform3D` with `child_frame`/`parent_frame` parameters to define relationships between frames โ€” similar to ROS tf2. Pinhole cameras also support this system. Additionally, axis visualization has moved to its own `TransformAxes3D` archetype. Much more can be found at our revamped docs page [here](https://rerun.io/docs/concepts/transforms). **Improved URDF and MCAP Transform support.** Parent and child frame components are now available in the `Transform3D` archetype, meaning you can send transforms to a single entity instead of using the entity path to inform the structure (note, for URDFs this is required). Additionally, ROS2โ€™s `tf2_msgs/TFMessage` and `PoseStamped` messages are automatically parsed as `Transform3D` and `InstancePoses3D` , respectively, from MCAP files. **AV1 video codec support.** `VideoStream` now supports the AV1 codec alongside existing formats. **Catalog API refinements (Python).** The Python catalog API has been substantially reworked: "partition" terminology is now "segment," table operations have moved to `TableEntry` objects, and the query interface has been simplified with methods like `filter_segments()`, `filter_contents()`, and `reader()`. **Viewer usability improvements.** New keyboard shortcuts let you switch between recordings (`cmd` + `option` + `โ†‘/โ†“`) and navigate the timeline (`โ†/โ†’` to move by 0.1s. Add `shift` for 1s. `home/end` to jump to beginning or end). Forward/back navigation is now available on native viewers as well. **New dataloaders.** Added LeRobot v3 dataloader support. ## โš ๏ธ Breaking changes ๐Ÿงณ Migration guide: [https://rerun.io/docs/reference/migration/migration-0-28](https://rerun.io/docs/reference/migration/migration-0-28) **Transactional transform behavior (important!):** Changes to `Transform3D`, `InstancePose3D`, or `Pinhole` transform properties are now treated transactionally. Updating any component resets all other transform components โ€” the viewer no longer looks back in time for previously logged values. If you relied on partial updates (e.g., logging only rotation while keeping a previous translation), you must now re-log all components together. If you always logged the same components on every call or used the standard constructors, no changes are needed. [#11911](https://github.com/rerun-io/rerun/pull/11911) ```python rr.log("simple", rr.Transform3D(translation=[1.0, 2.0, 3.0])) # In 0.27: This clears the translation โ€” it will NOT inherit the previous value rr.log("simple", rr.Transform3D.from_fields(scale=2)) ``` **Transform3D archetype changes:** - `Transform3D::axis_length` has moved to the new `TransformAxes3D` archetype [#11925](https://github.com/rerun-io/rerun/pull/11925) - `CoordinateFrame::frame_id` renamed to `CoordinateFrame::frame` [#11991](https://github.com/rerun-io/rerun/pull/11991) - Redundant `Pose*` component types removed in favor of general counterparts (e.g., `PoseTranslation3D` โ†’ `Translation3D`) [#11905](https://github.com/rerun-io/rerun/pull/11905) **URDF loader changes:** Transform updates for URDF models now require `parent_frame` and `child_frame` fields to be set (matching URDF joint specifications), and must include both rotation and translation. This aligns with ROS tf2 conventions and allows sending all transform updates on a single entity. [#12005](https://github.com/rerun-io/rerun/pull/12005) **Deprecated API removal:** Items marked deprecated before 0.27 have been removed, including old `Timeline`, `TimeColumn`, `Asset3D`, `AssetVideo`, `Image`, and `Pinhole` methods. [#12204](https://github.com/rerun-io/rerun/pull/12204) **MCAP timeline naming:** MCAP timelines renamed from `log_time`/`publish_time` to `message_log_time`/`message_publish_time` to avoid conflicts with SDK timestamps. [#12145](https://github.com/rerun-io/rerun/pull/12145) **Python Catalog API (breaking changes):** - The `rerun_partition_id` column is now `rerun_segment_id` - `entries()`, `datasets()`, `tables()` now return lists of entry objects instead of DataFrames - `get_table()` returns a `TableEntry` object instead of a DataFrame โ€” use `.reader()` to get the DataFrame - `DataframeQueryView` removed; use `filter_segments()`, `filter_contents()`, and `reader()` instead [#12151](https://github.com/rerun-io/rerun/pull/12151) - `register()` and `register_batch()` merged into single `register()` returning `RegistrationHandle` [#12187](https://github.com/rerun-io/rerun/pull/12187) - `search_fts()` and `search_vector()` now return DataFrames directly (no `.df()` needed) [#12198](https://github.com/rerun-io/rerun/pull/12198) **Python Catalog API (deprecated, still work):** - "Partition" renamed to "segment" throughout (e.g., `partition_table()` โ†’ `segment_table()`) [#12059](https://github.com/rerun-io/rerun/pull/12059) - Method renames: `get_dataset_entry` โ†’ `get_dataset`, `get_table_entry` โ†’ `get_table`, etc. [#12112](https://github.com/rerun-io/rerun/pull/12112) - Table writes moved from `CatalogClient` to `TableEntry` (`append()`, `overwrite()`, `upsert()`) [#12114](https://github.com/rerun-io/rerun/pull/12114) - `Schema` types moved from `rerun.dataframe` to `rerun.catalog` [#12135](https://github.com/rerun-io/rerun/pull/12135) - Search index methods renamed: `create_fts_index()` โ†’ `create_fts_search_index()`, etc. [#12198](https://github.com/rerun-io/rerun/pull/12198) ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Transform3D no longer sets all its components to empty array by default [#11911](https://github.com/rerun-io/rerun/pull/11911) - Move `Transform3D::axis_length` into its own `TransformAxes3D` archetype [#11925](https://github.com/rerun-io/rerun/pull/11925) - Add `show_frame` option on `TransformAxes3D` [#11977](https://github.com/rerun-io/rerun/pull/11977) - Rename `CoordinateFrame::frame_id` to `CoordinateFrame::frame` [#11991](https://github.com/rerun-io/rerun/pull/11991) - RRD footers 1: framing [#12044](https://github.com/rerun-io/rerun/pull/12044) - RRD footers 2: RRD manifests [#12047](https://github.com/rerun-io/rerun/pull/12047) - RRD footers 3: encoding/decoding manifests [#12048](https://github.com/rerun-io/rerun/pull/12048) - Add option to specify `target_frame` to `SpatialInformation` [#12040](https://github.com/rerun-io/rerun/pull/12040) - Remove redundant `Pose*` components [#11905](https://github.com/rerun-io/rerun/pull/11905) - Add `OutputMode` option to Lenses [#12107](https://github.com/rerun-io/rerun/pull/12107) - Load URDF with frame IDs and named transforms [#12005](https://github.com/rerun-io/rerun/pull/12005) - RRD manifests: implement `chunk_byte_size_uncompressed` support [#12194](https://github.com/rerun-io/rerun/pull/12194) - Disable merging compaction for video samples [#12270](https://github.com/rerun-io/rerun/pull/12270) #### ๐ŸŒŠ C++ API - Make component type registration thread-safe in C++ SDK [#11907](https://github.com/rerun-io/rerun/pull/11907) - Don't install signal handlers into rerun_c outside of DEBUG mode [#11956](https://github.com/rerun-io/rerun/pull/11956) #### ๐Ÿ Python API - Fix dataframe queries failing on empty datasets [#11846](https://github.com/rerun-io/rerun/pull/11846) - Add lint to check if rust classes have __str__, fix or exclude all existing [#11928](https://github.com/rerun-io/rerun/pull/11928) - Partition-to-segment rename (wave 1): redap layer [#12017](https://github.com/rerun-io/rerun/pull/12017) - Partition-to-segment rename (wave 3): Python SDK [#12059](https://github.com/rerun-io/rerun/pull/12059) - Rework notebook auth to use device code flow [#12128](https://github.com/rerun-io/rerun/pull/12128) - Catalog API update 1: listing entries [#12103](https://github.com/rerun-io/rerun/pull/12103) - Catalog API update 2: getting and creating entries [#12112](https://github.com/rerun-io/rerun/pull/12112) - Catalog API update 3: editing tables [#12114](https://github.com/rerun-io/rerun/pull/12114) - Catalog API update 4: schema [#12135](https://github.com/rerun-io/rerun/pull/12135) - Catalog API update 5: dataset query [#12151](https://github.com/rerun-io/rerun/pull/12151) - Catalog API update 6: register APIs [#12187](https://github.com/rerun-io/rerun/pull/12187) - Catalog API update 7: `segment_table` and blueprint APIs [#12191](https://github.com/rerun-io/rerun/pull/12191) - Catalog API update 8: search indexes [#12198](https://github.com/rerun-io/rerun/pull/12198) - Remove items marked as deprecated before 0.27 [#12204](https://github.com/rerun-io/rerun/pull/12204) - [python] Automatically disconnected recordings when they go fully out of scope [#12220](https://github.com/rerun-io/rerun/pull/12220) #### ๐Ÿฆ€ Rust API - Make `RecordingStream::disabled()` a `const fn` [#11829](https://github.com/rerun-io/rerun/pull/11829) (thanks [@kpreid](https://github.com/kpreid)!) - Fix double memcpy in Rust blob serialization of image and other blob-based types [#11842](https://github.com/rerun-io/rerun/pull/11842) (thanks [@joelreymont](https://github.com/joelreymont)!) - Remove items marked as deprecated before 0.27 [#12204](https://github.com/rerun-io/rerun/pull/12204) #### ๐Ÿชณ Bug fixes - Fix rare case for incorrect queries for some cases of out of order logging [#11892](https://github.com/rerun-io/rerun/pull/11892) - Fix exiting tracking with inputs [#11915](https://github.com/rerun-io/rerun/pull/11915) - Fix the visible time range for the time series view [#11938](https://github.com/rerun-io/rerun/pull/11938) - Fix sharing links to time ranges on duration timelines [#11948](https://github.com/rerun-io/rerun/pull/11948) - Fix opening non-recording URLs on startup [#11981](https://github.com/rerun-io/rerun/pull/11981) - Fix `ChunkId` clash due to chunk splitting [#12008](https://github.com/rerun-io/rerun/pull/12008) - Fix scroll bar / resize handle flicker in selection panel [#12020](https://github.com/rerun-io/rerun/pull/12020) (thanks [@kratos2377](https://github.com/kratos2377)!) - Fix infinite redraw that sometimes happened in a spatial 3d view [#12030](https://github.com/rerun-io/rerun/pull/12030) - Do input from the perspective of spin [#12068](https://github.com/rerun-io/rerun/pull/12068) - Fix incorrect displayed transform for some cases of logging transforms at a previously shown time [#12088](https://github.com/rerun-io/rerun/pull/12088) - Fix links to time points [#12163](https://github.com/rerun-io/rerun/pull/12163) - Fix timepanel size being rounded down [#12208](https://github.com/rerun-io/rerun/pull/12208) - Fix missing data after saving a time slice as .rrd [#12239](https://github.com/rerun-io/rerun/pull/12239) #### ๐ŸŒ Viewer improvements - Add `av1` support to `VideoStream` [#11849](https://github.com/rerun-io/rerun/pull/11849) - Improved transform query semantics [#11901](https://github.com/rerun-io/rerun/pull/11901) - Text log view blueprint properties [#11896](https://github.com/rerun-io/rerun/pull/11896) - Order partitions by opening order [#11936](https://github.com/rerun-io/rerun/pull/11936) - Allow visualizers to report runtime errors [#11962](https://github.com/rerun-io/rerun/pull/11962) - Instanced drawing of `TransformAxes3D` via `InstancePose3D` [#11970](https://github.com/rerun-io/rerun/pull/11970) - Add utility for sampling video from `VideoDataDescription` [#11972](https://github.com/rerun-io/rerun/pull/11972) - Relax visualizability constraints and handle invalid transforms as visualization errors instead [#11973](https://github.com/rerun-io/rerun/pull/11973) - Native back and forth navigation [#11974](https://github.com/rerun-io/rerun/pull/11974) - Add support to explicit child/parent transform frames for `Pinhole` [#11988](https://github.com/rerun-io/rerun/pull/11988) - Eye rotation or translation with inputs stops using fallbacks for both [#12025](https://github.com/rerun-io/rerun/pull/12025) - Transform frame ancestors in UI [#12006](https://github.com/rerun-io/rerun/pull/12006) - Better discovery for view's visualizer errors [#12015](https://github.com/rerun-io/rerun/pull/12015) - Partition-to-segment rename (wave 2): `re_uri` [#12050](https://github.com/rerun-io/rerun/pull/12050) - Make `InstancePose3D` consistently interact with transform frames [#12021](https://github.com/rerun-io/rerun/pull/12021) - Gracefully exit on `ctrl c` [#12079](https://github.com/rerun-io/rerun/pull/12079) - Add `NavSatService::Unknown` to ROS2 parsing [#12106](https://github.com/rerun-io/rerun/pull/12106) - Add exclusions for 2d visualizables in 3d and vice-versa [#12087](https://github.com/rerun-io/rerun/pull/12087) - Replace time trimming urls with time selection [#12154](https://github.com/rerun-io/rerun/pull/12154) - Better target frame fallback [#12127](https://github.com/rerun-io/rerun/pull/12127) - LeRobot v3 dataloader [#12071](https://github.com/rerun-io/rerun/pull/12071) - Allow specifying widths of `BarChart` bars [#12090](https://github.com/rerun-io/rerun/pull/12090) (thanks [@bilsen](https://github.com/bilsen)!) - Support `png` & `rvl` depth images via new `EncodedDepthImage` archetype + integration with viewer and `re_mcap` [#11877](https://github.com/rerun-io/rerun/pull/11877) (thanks [@makeecat](https://github.com/makeecat)!) - Show `TransformAxes3D` for out-of-hierarchy `Transform`s [#12262](https://github.com/rerun-io/rerun/pull/12262) #### ๐Ÿ—„๏ธ OSS server - Add static/temporal chunk query filtering to OSS server [#11984](https://github.com/rerun-io/rerun/pull/11984) - Expose `/version` from oss server [#12108](https://github.com/rerun-io/rerun/pull/12108) - Add support for creating dataset from list of RRDs to `rerun.server.Server` [#12225](https://github.com/rerun-io/rerun/pull/12225) #### ๐Ÿš€ Performance improvements - JIT compaction in ChunkStore can now split chunks in addition to merging them [#11921](https://github.com/rerun-io/rerun/pull/11921) - Cache dataset schema [#11808](https://github.com/rerun-io/rerun/pull/11808) - Simplify transform resolution cache's tracking based on new atomic-latest-at semantics [#11909](https://github.com/rerun-io/rerun/pull/11909) - Add FPS to metrics [#11904](https://github.com/rerun-io/rerun/pull/11904) - GC: target chunks furthest from time cursor [#12217](https://github.com/rerun-io/rerun/pull/12217) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add EgoExo Forge and VistaDream examples [#11883](https://github.com/rerun-io/rerun/pull/11883) #### ๐Ÿ“š Docs - Make python api doc search match more things [#11946](https://github.com/rerun-io/rerun/pull/11946) - Remove load_recording docs [#11997](https://github.com/rerun-io/rerun/pull/11997) - Mark frame based transform apis as stable [#12028](https://github.com/rerun-io/rerun/pull/12028) - Add new (snippet) example for using pinholes with 3D->2D & 2D->3D projection [#12033](https://github.com/rerun-io/rerun/pull/12033) - Complete overhaul of transform manual page [#12034](https://github.com/rerun-io/rerun/pull/12034) - Document built-in URDF loader [#12056](https://github.com/rerun-io/rerun/pull/12056) #### ๐Ÿ–ผ UI improvements - Add shortcuts to switch between recordings [#11637](https://github.com/rerun-io/rerun/pull/11637) - Allow to load URDF files via file dialog [#11941](https://github.com/rerun-io/rerun/pull/11941) - Load URDF file into the current recording, if one exists already [#11944](https://github.com/rerun-io/rerun/pull/11944) - Add shortcuts to navigate the timeline [#11933](https://github.com/rerun-io/rerun/pull/11933) - Make transform frame edit not experimental [#12057](https://github.com/rerun-io/rerun/pull/12057) - Add memory budget to setting panel [#12190](https://github.com/rerun-io/rerun/pull/12190) - Show server auth modal on auth errors when loading recording [#12121](https://github.com/rerun-io/rerun/pull/12121) #### ๐Ÿงข MCAP - Rename MCAP timelines to avoid conflicts with SDK timestamps [#12145](https://github.com/rerun-io/rerun/pull/12145) - Parse `PoseStamped` from ROS 2 MCAPs as `InstancePoses3D` [#11879](https://github.com/rerun-io/rerun/pull/11879) - Parse `tf2_msgs/TFMessage` from ROS 2 MCAPs as `Transform3D`s [#12224](https://github.com/rerun-io/rerun/pull/12224) - Parse `frame_id` fields of ROS 2 MCAP messages as `CoordinateFrame` [#12238](https://github.com/rerun-io/rerun/pull/12238) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - cpp: Export `compile_commands.json` via Pixi [#11898](https://github.com/rerun-io/rerun/pull/11898) #### ๐Ÿ—ฃ Refactors - Partition-to-segment rename (wave 4): rename everything else [#12085](https://github.com/rerun-io/rerun/pull/12085) #### ๐Ÿ“ฆ Dependencies - Use `scuffle-av1` for parsing av1 headers [#11910](https://github.com/rerun-io/rerun/pull/11910) - Update `walkers` (map widget) to 0.50.0 [#12024](https://github.com/rerun-io/rerun/pull/12024) (thanks [@podusowski](https://github.com/podusowski)!) #### ๐Ÿคทโ€ Other - DPF: create_index: deprecate num_partitions [#11920](https://github.com/rerun-io/rerun/pull/11920) - Add partition table context menu and row selection [#11908](https://github.com/rerun-io/rerun/pull/11908) - Implement the search service [#11954](https://github.com/rerun-io/rerun/pull/11954) - Add `MapProvider::MapboxLight` [#12083](https://github.com/rerun-io/rerun/pull/12083) (thanks [@sectore](https://github.com/sectore)!) - Implement streaming for datafusion table [#12162](https://github.com/rerun-io/rerun/pull/12162) - Add Rerun Hub section to welcome page [#12051](https://github.com/rerun-io/rerun/pull/12051) - Add support for server side filtering of DataFusion DataFrames [#12147](https://github.com/rerun-io/rerun/pull/12147) - Fix compaction of recordings containing video streams [35810c74187c250925e958a8f095756915313ce7](https://github.com/rerun-io/rerun/commit/35810c74187c250925e958a8f095756915313ce7) - Python SDK: Add timeout_sec argument to flush [f69d249e5c6bc5225d8f2f0be384243ab9dacf03](https://github.com/rerun-io/rerun/commit/f69d249e5c6bc5225d8f2f0be384243ab9dacf03) ## [0.27.2](https://github.com/rerun-io/rerun/compare/0.27.1...0.27.2) - 2025-11-14 - Fix compatibility with dependency - Fix non semver compliant breaking changes in `ply-rs` breaking Rust builds [#11890](https://github.com/rerun-io/rerun/pull/11890) ## [0.27.1](https://github.com/rerun-io/rerun/compare/0.27.0...0.27.1) - 2025-11-13 - Bug fixes and performance improvements #### ๐Ÿชณ Bug fixes - Respect timepoint in URDF loader [#11866](https://github.com/rerun-io/rerun/pull/11866) - Fix pinhole color fallback showing the wrong color [#11861](https://github.com/rerun-io/rerun/pull/11861) - Fix broken `delete_entries` and entries table not updated [#11872](https://github.com/rerun-io/rerun/pull/11872) - Don't smooth velocity after WASD input [#11858](https://github.com/rerun-io/rerun/pull/11858) - URDF loader: Use global material if inline material is absent [#11869](https://github.com/rerun-io/rerun/pull/11869) #### ๐Ÿš€ Performance improvements - When closing recordings (and blueprints), drop them on separate threads for UI responsiveness [#11834](https://github.com/rerun-io/rerun/pull/11834) (thanks [@kpreid](https://github.com/kpreid)!) - Remove frame lag when creating loop region [#11862](https://github.com/rerun-io/rerun/pull/11862) - Reverted [#11766](https://github.com/rerun-io/rerun/pull/11766) because of performance issues with the time panel. ## [0.27.0](https://github.com/rerun-io/rerun/compare/0.26.2...0.27.0) - 2025-11-10 - Viewer improvements and more blueprint configuration ### โœจ Overview & highlights #### ๐ŸŸฆ more properties configurable from blueprint The viewer is now even more configurable via blueprints. With more options for time series, bar chart, graph views, time panel, and the 3D view. With the latter now having the option to control the 3D eye position and look target. time series view blueprint example 3D spatial view blueprint example #### โŒจ๐Ÿ–ฑ๏ธUser Interface improvements Weโ€™ve changed the interaction of the time panel! Now the top bar is only for making selections, while the bottom panel is for moving the time cursor. Hold down shift for snap-to-grid! You can also click on events now to select them. https://github.com/user-attachments/assets/3cabd74c-8227-4e9d-bd42-fdff36f0466e You can now also use just a keyboard to navigate in panels with trees (blueprint / streams / recordings). ### โš ๏ธ Breaking changes - Dropped support for python 3.9, and the minimum supported version is now 3.10. - Official Intel (x86) macOS binaries are no longer provided (compiling from source is still possible). - Removed the option to specify the current time cursor via Blueprint. See the ๐Ÿงณ [Migration guide](https://rerun.io/docs/reference/migration/migration-0-27) for more details. ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Functionality to `add_time_column` via lenses [#11596](https://github.com/rerun-io/rerun/pull/11596) #### ๐ŸŒŠ C++ API - CMake: Download Arrow from Tarball URL Instead of Git [#11558](https://github.com/rerun-io/rerun/pull/11558) (thanks [@threeal](https://github.com/threeal)!) - Fix in-repo CMake build not resolving builds of rerun_c that weren't made with pixi [#11751](https://github.com/rerun-io/rerun/pull/11751) #### ๐Ÿ Python API - Expose view container visibility in python blueprint api [#11602](https://github.com/rerun-io/rerun/pull/11602) - Drop Python 3.9 Support [#11426](https://github.com/rerun-io/rerun/pull/11426) - Try to avoid timestamp footguns [#11601](https://github.com/rerun-io/rerun/pull/11601) - py-sdk: add register_prefix SDK call [#11600](https://github.com/rerun-io/rerun/pull/11600) - [Python] Improve errors in mesh3d_ext [#11662](https://github.com/rerun-io/rerun/pull/11662) (thanks [@iwanders](https://github.com/iwanders)!) - Return optional DebugInfo with `memory_used` as part of CreateIndexResponse [#11691](https://github.com/rerun-io/rerun/pull/11691) - Add a new `target_partition_num_rows` API parameter to the CreateIndex API [#11686](https://github.com/rerun-io/rerun/pull/11686) - Add Ability to Launch OSS Server From Python [#11689](https://github.com/rerun-io/rerun/pull/11689) - Our IndexValuesLike type is overly strict. Allow np.datetime64 inputs [#11721](https://github.com/rerun-io/rerun/pull/11721) - Add play state, loop mode and loop selection to blueprint [#11664](https://github.com/rerun-io/rerun/pull/11664) - Index management APIs: Python bindings, types cleanup, and index statistics [#11729](https://github.com/rerun-io/rerun/pull/11729) - Remove time from blueprint [#11823](https://github.com/rerun-io/rerun/pull/11823) #### ๐Ÿฆ€ Rust API - Make `Debug` for Utf8 datatype derived component types readable [#11780](https://github.com/rerun-io/rerun/pull/11780) #### ๐Ÿชณ Bug fixes - Fix handling of components that only vary by descriptors [#11593](https://github.com/rerun-io/rerun/pull/11593) - Fix selection panel infinite redraw [#11623](https://github.com/rerun-io/rerun/pull/11623) - Allow editing times in the time panel [#11774](https://github.com/rerun-io/rerun/pull/11774) - Allow moving text cursor while holding down options/alt [#11773](https://github.com/rerun-io/rerun/pull/11773) - Fix 3D eye speed-up modifier not working with scroll-to-zoom [#11814](https://github.com/rerun-io/rerun/pull/11814) #### ๐ŸŒ Viewer improvements - Background of graph view is now blueprint configurable [#11522](https://github.com/rerun-io/rerun/pull/11522) - Enable multiple instance poses for `Points3D` [#11572](https://github.com/rerun-io/rerun/pull/11572) - Disable toast when copying component path [#11495](https://github.com/rerun-io/rerun/pull/11495) - Add cyclic colormap [#11498](https://github.com/rerun-io/rerun/pull/11498) - Allow eye-camera tracking arbitrary entities in 3D view [#11554](https://github.com/rerun-io/rerun/pull/11554) (thanks [@Gentlegg](https://github.com/Gentlegg)!) - Introduce experimental `CoordinateFrame` archetype [#11674](https://github.com/rerun-io/rerun/pull/11674) - Add experimental `child_frame` & `parent_frame` to `Transform3D` [#11730](https://github.com/rerun-io/rerun/pull/11730) - Expose `TimeSeries` time range & zoom in the Blueprint API [#11621](https://github.com/rerun-io/rerun/pull/11621) - Improve data density visualization by sampling dense chunks [#11766](https://github.com/rerun-io/rerun/pull/11766) - 3D eye position and other properties in blueprint [#11788](https://github.com/rerun-io/rerun/pull/11788) - Support arbitrary transform frame based hierarchies, fully independent of entity hierarchy [#11790](https://github.com/rerun-io/rerun/pull/11790) - Removing time selection with context menu [#11845](https://github.com/rerun-io/rerun/pull/11845) #### ๐Ÿ—„๏ธ OSS server - Add support for layers in OSS server [#11532](https://github.com/rerun-io/rerun/pull/11532) - Add support for properties in OSS server [#11630](https://github.com/rerun-io/rerun/pull/11630) - Simplify `CreateIndexRequest` [#11636](https://github.com/rerun-io/rerun/pull/11636) - Improve column projection specification and implement it for OSS server [#11687](https://github.com/rerun-io/rerun/pull/11687) - Index management APIs [#11693](https://github.com/rerun-io/rerun/pull/11693) - Add support for blueprint dataset [#11758](https://github.com/rerun-io/rerun/pull/11758) - Add support for renaming entries [#11777](https://github.com/rerun-io/rerun/pull/11777) #### ๐Ÿš€ Performance improvements - Perform transform tree walk only once per frame, rather than for every View [#11470](https://github.com/rerun-io/rerun/pull/11470) - Significantlyย improve transform ingestion speed [#11655](https://github.com/rerun-io/rerun/pull/11655) - Update mimalloc allocator from v2 to v3 [#11703](https://github.com/rerun-io/rerun/pull/11703) - Small performance improvement for many entities [#11720](https://github.com/rerun-io/rerun/pull/11720) (thanks [@joelreymont](https://github.com/joelreymont)!) #### ๐Ÿง‘โ€๐Ÿซ Examples - Create and write tables in the Rerun server [#11694](https://github.com/rerun-io/rerun/pull/11694) #### ๐Ÿ“š Docs - Clarify that 0B memory limit for grpc server only makes sense if client/server are connected from the start [#11599](https://github.com/rerun-io/rerun/pull/11599) - Add documentation to dataframe query workflow and fix api rendering for bindings [#11650](https://github.com/rerun-io/rerun/pull/11650) - Expose all the python apis I could find for web docs [#11709](https://github.com/rerun-io/rerun/pull/11709) - Reorganize Docs Overview / Getting Started [#11781](https://github.com/rerun-io/rerun/pull/11781) #### ๐Ÿ–ผ UI improvements - Fix blueprint / streams tree navigation ignoring focus [#11574](https://github.com/rerun-io/rerun/pull/11574) - Keyboard navigation in tree UIs (left panel, streams panel, etc.) [#11595](https://github.com/rerun-io/rerun/pull/11595) - Improve formatting of durations and timestamps [#11659](https://github.com/rerun-io/rerun/pull/11659) - When scrubbing time, intelligently round to a nice value [#11658](https://github.com/rerun-io/rerun/pull/11658) - Hold down shift for snap to grid when moving time cursor [#11757](https://github.com/rerun-io/rerun/pull/11757) - Time panel: pick sub-second precision based on zoom level [#11761](https://github.com/rerun-io/rerun/pull/11761) - Change how to select loop region in the time panel [#11675](https://github.com/rerun-io/rerun/pull/11675) - Click events in the streams view [#11806](https://github.com/rerun-io/rerun/pull/11806) #### ๐Ÿ—ฃ Refactors - Transform computations are internally now using double precision [#11756](https://github.com/rerun-io/rerun/pull/11756) #### ๐Ÿคทโ€ Other - Add client object table writing functions [#11657](https://github.com/rerun-io/rerun/pull/11657) - No longer providing official Intel Macs binaries for rerun [#11719](https://github.com/rerun-io/rerun/pull/11719) ## [0.26.2](https://github.com/rerun-io/rerun/compare/0.26.1...0.26.2) - 2025-10-27 - More bug fixes - Add missing `line_radii` and `fill_mode` params to `Capsules3D` in Python SDK [#11660](https://github.com/rerun-io/rerun/pull/11660) (thanks [@yunho-c](https://github.com/yunho-c)!) - Fix pressing the play button sometimes going to follow mode [#11609](https://github.com/rerun-io/rerun/pull/11609) - Fix hiding all tabs in a tab-view breaking undo [#11619](https://github.com/rerun-io/rerun/pull/11619) - Fix color picker on default & override disappearing when trying to edit [#11651](https://github.com/rerun-io/rerun/pull/11651) - Fix `ViewerEvent::TimeUpdate` viewer callback not emitted during playback [#11639](https://github.com/rerun-io/rerun/pull/11639) ## [0.26.1](https://github.com/rerun-io/rerun/compare/0.26.0...0.26.1) - 2025-10-21 - Bug fixes - Fix `cargo install rerun-cli` requiring `protoc` on `PATH` [#11592](https://github.com/rerun-io/rerun/pull/11592) - Switch to newly received recordings even if `SetStoreInfo` message is missing [#11568](https://github.com/rerun-io/rerun/pull/11568) ## [0.26.0](https://github.com/rerun-io/rerun/compare/0.25.1...0.26.0) - 2025-10-13 - Viewer improvements and table filtering upgrades ### โœจ Overview & highlights We have started aiming for a higher release cadence, with smaller, more frequent releases. #### ๐Ÿงฉ Blueprint improvements Blueprints now give you more control over playback and visualization settings. You can define playback speed and FPS directly in blueprints, and manage time and timeline behavior through them as well. The Blueprint panel is now always resizable, and we've added support for customizing plot backgrounds. #### Table filtering upgrades Table filtering just got a lot more capable. You can now filter on timestamps, use new string operators like `starts with`, `ends with`, and `does not contain`, and combine these with improved numeric and boolean filtering. ### โš ๏ธ Breaking changes #### ๐Ÿ Python SDK The `blocking` argument for `flush` has been removed, use the new `timeout_sec` argument instead, for non-blocking calls, set `timeout_sec=0`. Mostly you can just call `.flush()` with no arguments. We also have started using named arguments (kw-args) for more of our functions, this will make it easier for us to evolve our APIs in the future, when adding new arguments, or renaming old ones. See the ๐Ÿงณ [Migration guide](https://rerun.io/docs/reference/migration/migration-0-26) for more details. ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Merge `DroppableEncoder` and `Encoder` into a single facility [#11446](https://github.com/rerun-io/rerun/pull/11446) - Encoder: simplified APIs and improved discoverability [#11450](https://github.com/rerun-io/rerun/pull/11450) - Introduce `Lens` as a concept for semantic mapping of arbitrary data [#11394](https://github.com/rerun-io/rerun/pull/11394) #### ๐Ÿ Python API - Add module definition to all `pyclasses` [#11268](https://github.com/rerun-io/rerun/pull/11268) - Python SDK: Add `timeout_sec` argument to `flush` [#11295](https://github.com/rerun-io/rerun/pull/11295) - Python SDK: remove `blocking` argument of `flush` [#11314](https://github.com/rerun-io/rerun/pull/11314) - Fix instances of `newest_first` not working correctly [#11326](https://github.com/rerun-io/rerun/pull/11326) - Update Schema to make query view requirements clearer [#11287](https://github.com/rerun-io/rerun/pull/11287) - Fix error when logging `AnyValues` with empty columns [#11322](https://github.com/rerun-io/rerun/pull/11322) - Include "outer nullability" when we format column datatypes [#11339](https://github.com/rerun-io/rerun/pull/11339) - Fix error message for what package to install [#11398](https://github.com/rerun-io/rerun/pull/11398) - Py-SDK: More kw-args [#11384](https://github.com/rerun-io/rerun/pull/11384) - Add meaningful equality comparisons to many rust wrappers [#11401](https://github.com/rerun-io/rerun/pull/11401) - Remove deprecated methods from `AnyValues` [#11390](https://github.com/rerun-io/rerun/pull/11390) (thanks [@Weijun-H](https://github.com/Weijun-H)!) - Introduce the dataset manifest and remove layer information from the partition table [#11423](https://github.com/rerun-io/rerun/pull/11423) - Make time and timeline controlled by blueprint [#11405](https://github.com/rerun-io/rerun/pull/11405) #### ๐Ÿฆ€ Rust API - Remove deprecated methods from `AnyValues` [#11390](https://github.com/rerun-io/rerun/pull/11390) (thanks [@Weijun-H](https://github.com/Weijun-H)!) #### ๐Ÿชณ Bug fixes - Fix edge case for parsing videos with constant frame size [#11226](https://github.com/rerun-io/rerun/pull/11226) - Fix title bar height on macOS Tahoe [#11241](https://github.com/rerun-io/rerun/pull/11241) - Blueprint panel can now always be resized [#11046](https://github.com/rerun-io/rerun/pull/11046) - Fix rare issue where video stream sample indices would be determined incorrectly, breaking video inspection UI & playback [#11308](https://github.com/rerun-io/rerun/pull/11308) - Fix links to custom timelines [#11333](https://github.com/rerun-io/rerun/pull/11333) - Fix url edit warning spam [#11330](https://github.com/rerun-io/rerun/pull/11330) - Fix race condition for ui adjustments while loading recordings from redap client [#11365](https://github.com/rerun-io/rerun/pull/11365) - Fix formatting and parsing of component paths in URLs [#11364](https://github.com/rerun-io/rerun/pull/11364) - Share button on notebook no longer uses the current base url for web viewer urls [#11379](https://github.com/rerun-io/rerun/pull/11379) - Enable "Close current recording" only when there's a recording [#11353](https://github.com/rerun-io/rerun/pull/11353) - Do not include metadata when rendering table in html [#11463](https://github.com/rerun-io/rerun/pull/11463) - Data loaders: fix multiple nasty bugs when working with virtual FDs (e.g. `<(...)` FIFOs) [#11486](https://github.com/rerun-io/rerun/pull/11486) - Fix data corruption during compression of large chunks [#11525](https://github.com/rerun-io/rerun/pull/11525) #### ๐ŸŒ Viewer improvements - Keep last paused time in web-viewer url [#11246](https://github.com/rerun-io/rerun/pull/11246) - Add limited support for out-of-order video stream samples [#11307](https://github.com/rerun-io/rerun/pull/11307) - Better video stream errors for missing samples & key frames [#11310](https://github.com/rerun-io/rerun/pull/11310) - Add optional viewer url parameter to web app options [#11296](https://github.com/rerun-io/rerun/pull/11296) - Add spectral colormap [#11298](https://github.com/rerun-io/rerun/pull/11298) - Better gRPC errors [#11335](https://github.com/rerun-io/rerun/pull/11335) - Fix `UnixEpoch` display/parsing inconsistency [#11491](https://github.com/rerun-io/rerun/pull/11491) - Blueprint plot background [#11494](https://github.com/rerun-io/rerun/pull/11494) - Put playback speed and fps in blueprint [#11490](https://github.com/rerun-io/rerun/pull/11490) #### ๐Ÿ—„๏ธ OSS server - Add table support to OSS server [#11356](https://github.com/rerun-io/rerun/pull/11356) #### ๐Ÿš€ Performance improvements - Determine per-view overrides in parallel (-> faster many entities + many views on native) [#11439](https://github.com/rerun-io/rerun/pull/11439) - Improve many-entity performance by fixing redundant `AnnotationContext` lookups (also affects scene without annotation contexts) [#11445](https://github.com/rerun-io/rerun/pull/11445) #### ๐Ÿง‘โ€๐Ÿซ Examples - refactor: Move examples for notebook viewer and callbacks to `examples/python` [#11416](https://github.com/rerun-io/rerun/pull/11416) (thanks [@Weijun-H](https://github.com/Weijun-H)!) #### ๐Ÿ“š Docs - Add how to connect the server to the CLI command output [#11400](https://github.com/rerun-io/rerun/pull/11400) #### ๐Ÿ–ผ UI improvements - Add copy-button to the recording link table item [#11242](https://github.com/rerun-io/rerun/pull/11242) - Add copy link context menu to server entries [#11235](https://github.com/rerun-io/rerun/pull/11235) - Add support for displaying timezone with our timestamps [#11234](https://github.com/rerun-io/rerun/pull/11234) - Show loading screen when opening link [#11270](https://github.com/rerun-io/rerun/pull/11270) - Support filtering by timestamp in table view [#11227](https://github.com/rerun-io/rerun/pull/11227) - Add `starts with`/`ends with` string filters to table [#11341](https://github.com/rerun-io/rerun/pull/11341) - Mark valid data ranges in timeline when loading data via range-limited URL [#11340](https://github.com/rerun-io/rerun/pull/11340) - Add `does not contain` operator to string column filtering [#11349](https://github.com/rerun-io/rerun/pull/11349) - Copy button on some selection items [#11337](https://github.com/rerun-io/rerun/pull/11337) - Add `is not` to timestamp filtering [#11366](https://github.com/rerun-io/rerun/pull/11366) - Add `is not` to nullable boolean filter [#11371](https://github.com/rerun-io/rerun/pull/11371) - Treat`!=` filtering of numerical column as the inverse of `==` (aka. outer-NOT and ALL semantics) [#11372](https://github.com/rerun-io/rerun/pull/11372) - Add context menu button to copy partition name [#11378](https://github.com/rerun-io/rerun/pull/11378) - Store (and display) recordings in insertion order [#11415](https://github.com/rerun-io/rerun/pull/11415) #### ๐ŸŽจ Renderer improvements - Export `BindGroupEntry` type to re_renderer rust dependents [#11406](https://github.com/rerun-io/rerun/pull/11406) (thanks [@Weijun-H](https://github.com/Weijun-H)!) #### ๐Ÿงข MCAP - Add support for `enum` in protobuf MCAP messages [#11280](https://github.com/rerun-io/rerun/pull/11280) - Represent enums from `protobuf` messages as `StructArray` [#11458](https://github.com/rerun-io/rerun/pull/11458) - Reflection-based `protobuf` parser only returns single component [#11459](https://github.com/rerun-io/rerun/pull/11459) - Add reflection based support for deserializing ROS2 MCAP [#11367](https://github.com/rerun-io/rerun/pull/11367) - Reflection-based ROS2 parser now only returns single component [#11480](https://github.com/rerun-io/rerun/pull/11480) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Improve rrd loading errors by checking FourCC first [#11265](https://github.com/rerun-io/rerun/pull/11265) #### ๐Ÿ“ฆ Dependencies - Update to wgpu 26 [#11300](https://github.com/rerun-io/rerun/pull/11300) - Update DataFusion to version 49.0.2 [#11291](https://github.com/rerun-io/rerun/pull/11291) ## [0.25.1](https://github.com/rerun-io/rerun/compare/0.25.0...0.25.1) - 2025-09-19 - Bug fixes - Fix vector search [#11259](https://github.com/rerun-io/rerun/pull/11259) - Fix space origin editor resetting & closing immediately [#11251](https://github.com/rerun-io/rerun/pull/11251) - Fix some menu buttons closing unexpectedly [#11247](https://github.com/rerun-io/rerun/pull/11247) - Fix table UI not saying switch to when opening a certain links [#11237](https://github.com/rerun-io/rerun/pull/11237) - Use short name in component defaults menu [#11264](https://github.com/rerun-io/rerun/pull/11264) ## [0.25.0](https://github.com/rerun-io/rerun/compare/0.24.1...0.25.0) - 2025-09-16 - Syntax highlighting, table filtering, transparent objects ๐Ÿงณ [Migration guide](https://rerun.io/docs/reference/migration/migration-0-25) ### โœจ Overview & highlights #### Syntax highlighting Our data frames and selection panel now feature prettier colors based on data types. ![syntax highlight](https://static.rerun.io/syntax_highlight/8ee40cdb412715ca485fcec277d9d086d40177ef/full.png) #### Table filtering We are busy working on a powerful filtering feature for our arrow dataframe widget used for tables (sent with `ViewerClient.send_table()`) as well as the Rerun server browser (entry list, partition list, and remote tables). This release introduces support for filtering boolean, integer, floating point, and string columns, with more coming in future releases. (Note that the text log views and dataframe views are using a different widget which does not support filtering.) ![table_filtering](https://github.com/user-attachments/assets/13775e9a-b564-4faa-91ac-2c36379e8140) #### Transparent objects We finally support transparency for meshes & various shapes (boxes, ellipsoids, etc.)! https://github.com/user-attachments/assets/5a78cf2c-1e11-4f5f-a8a4-4e5d503f4cd9 Source of transparency ("alpha") is a bit limited for now: * color component on all of `Boxes3D`, `Ellipsoids3D`, `Capsules3D` & `Cylinders3D` * `Mesh3D`'s albedo factor * `Asset3D` albedo color (depends on the underlying model format) Naturally, there's still a lot of places missing where we'd like to add transparency support! #### Experimental MCAP support Rerun has experimental, partial support for importing data from MCAP files. We support a subset of ROS2/CDR and Protocol Buffers messages. Development is ongoing, feel free to share your use cases! ### โš ๏ธ Breaking changes We removed the `--serve`, `--drop-at-latency` and `-o` CLI arguments, deprecated Python 3.9 and changed `archetype` specification in `AnyValues`. We also removed `flush_timeout_sec` parameter to out connect functions. Instead you can specify a maximum wait time in the calls to `flush`, but usually this isn't needed, as the new blocking behavior is also much smarter. See the ๐Ÿงณ [Migration guide](https://rerun.io/docs/reference/migration/migration-0-25) for more details. ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Add explicit timeout to flush API [#11008](https://github.com/rerun-io/rerun/pull/11008) - Make archetype and URDF loaders honor `entity_path_prefix` [#11085](https://github.com/rerun-io/rerun/pull/11085) - Keep static log messages longer in the proxy [#11091](https://github.com/rerun-io/rerun/pull/11091) #### ๐ŸŒŠ C++ API - Fix `flush_blocking` destroying C++ recording stream [#10885](https://github.com/rerun-io/rerun/pull/10885) - Respect `CMAKE_BUILD_TYPE` when building the Rust code [#11023](https://github.com/rerun-io/rerun/pull/11023) - Add options to gRPC proxy server to replay _newest_ data first [#11118](https://github.com/rerun-io/rerun/pull/11118) - Prevent arow_cpp from configuring/building/installing all the time [#11093](https://github.com/rerun-io/rerun/pull/11093) (thanks [@eliemichel](https://github.com/eliemichel)!) #### ๐Ÿ Python API - Add `__len__` to codegened Python datatypes [#10774](https://github.com/rerun-io/rerun/pull/10774) - Remove '-o' shorthand for stdout from script_add_args [#11043](https://github.com/rerun-io/rerun/pull/11043) (thanks [@kabouzeid](https://github.com/kabouzeid)!) - Deprecate python 3.9 [#11090](https://github.com/rerun-io/rerun/pull/11090) - Bump datafusion-python to 48.0.0 [#11089](https://github.com/rerun-io/rerun/pull/11089) - Improve numpy 1 compatibility [#11129](https://github.com/rerun-io/rerun/pull/11129) (thanks [@Benjamin-Tan](https://github.com/Benjamin-Tan)!) - Split AnyValues into AnyValues and DynamicArchetype [#11045](https://github.com/rerun-io/rerun/pull/11045) #### ๐Ÿฆ€ Rust API - Update MSRV to 1.88 [#10832](https://github.com/rerun-io/rerun/pull/10832) - Split AnyValues into AnyValues and DynamicArchetype [#11045](https://github.com/rerun-io/rerun/pull/11045) #### ๐Ÿชณ Bug fixes - Fix panic on bad STL files (e.g. for URDFs) [#10855](https://github.com/rerun-io/rerun/pull/10855) - Fix `Ellipsoids3D` archetype not showing in 2D view projections [#10922](https://github.com/rerun-io/rerun/pull/10922) - Fix unwanted eye (camera) movement when using shortcuts [#8975](https://github.com/rerun-io/rerun/pull/8975) (thanks [@kailiuca](https://github.com/kailiuca)!) - Fix opacity heuristic for images/segmentation when scene changes [#11014](https://github.com/rerun-io/rerun/pull/11014) - Fix 3D eye camera reset not resuming tracking scene bounding box [#11037](https://github.com/rerun-io/rerun/pull/11037) - Fix mesh cache eviction issue [#11079](https://github.com/rerun-io/rerun/pull/11079) - Fix recording to split in two when loading an URDF [#11086](https://github.com/rerun-io/rerun/pull/11086) - Fix for single channel textures displayed only in the red channel [#11101](https://github.com/rerun-io/rerun/pull/11101) - Fix columns menu closing on click [#11119](https://github.com/rerun-io/rerun/pull/11119) - Fix sharing selection as a fragment [#11161](https://github.com/rerun-io/rerun/pull/11161) - Fix UI glitch when connected twice to the same server [#11185](https://github.com/rerun-io/rerun/pull/11185) - Fix tooltips sometimes being way too big [#11190](https://github.com/rerun-io/rerun/pull/11190) - Fix incorrect application id when dragging and dropping files [#11197](https://github.com/rerun-io/rerun/pull/11197) - Fix wrong rendering of some texture formats in light mode [#11225](https://github.com/rerun-io/rerun/pull/11225) #### ๐ŸŒ Viewer improvements - Integrate basic MCAP loader from `rerun-io/rerun-mcap` [#10721](https://github.com/rerun-io/rerun/pull/10721) - Support scroll-/pinch-to-zoom with first person eye control [#10783](https://github.com/rerun-io/rerun/pull/10783) - Low-level Arrow conversion of `protobuf`-encoded MCAP messages [#10791](https://github.com/rerun-io/rerun/pull/10791) - Support flexible x-axis for bars in BarChart [#10675](https://github.com/rerun-io/rerun/pull/10675) (thanks [@Xiao-Chenguang](https://github.com/Xiao-Chenguang)!) - Customize color and line width of `Pinhole` camera frustum [#10842](https://github.com/rerun-io/rerun/pull/10842) - CLI now consistently forward URLs to native/web viewer when possible [#10909](https://github.com/rerun-io/rerun/pull/10909) - Fix closing recordings/tables that are still being loaded showing up again [#10963](https://github.com/rerun-io/rerun/pull/10963) - Persist fallback token [#10970](https://github.com/rerun-io/rerun/pull/10970) - Allow opening web viewer links directly [#10928](https://github.com/rerun-io/rerun/pull/10928) - Add keyboard shortcut to copy entity hierarchy [#10938](https://github.com/rerun-io/rerun/pull/10938) - Add H.265 support for native & `VideoStream` [#10994](https://github.com/rerun-io/rerun/pull/10994) - Support sharing URLs for catalog server datasets & tables [#11038](https://github.com/rerun-io/rerun/pull/11038) - New open from URL dialog & main menu entry [#11040](https://github.com/rerun-io/rerun/pull/11040) - Add archetypes for MCAP metadata [#11062](https://github.com/rerun-io/rerun/pull/11062) - Add `opacity` setting for `VideoStream` & `VideoAsset` [#11113](https://github.com/rerun-io/rerun/pull/11113) - Add MCAP parsers for scalar sensor messages [#11078](https://github.com/rerun-io/rerun/pull/11078) - Remove custom number formatting on copy [#11148](https://github.com/rerun-io/rerun/pull/11148) - Implement fallback mode for raw MCAP layer [#11136](https://github.com/rerun-io/rerun/pull/11136) - Support basic transparency for `Mesh3D`/`Asset3D`/`Boxes3D`/`Ellipsoids3D`/`Capsules3D`/`Cylinders3D` [#11132](https://github.com/rerun-io/rerun/pull/11132) - New link sharing dialog for detailed link sharing [#11137](https://github.com/rerun-io/rerun/pull/11137) #### ๐Ÿš€ Performance improvements - Prevent 100% CPU Usage when running gRPC server by sleeping instead of yielding [#10944](https://github.com/rerun-io/rerun/pull/10944) (thanks [@nisseknudsen](https://github.com/nisseknudsen)!) #### ๐Ÿ“š Docs - Fixed highlighting of Python code in docs [#10920](https://github.com/rerun-io/rerun/pull/10920) (thanks [@YohDeadfall](https://github.com/YohDeadfall)!) - Correct 'altitude' to 'latitude' in documentation [#10998](https://github.com/rerun-io/rerun/pull/10998) (thanks [@skalldri](https://github.com/skalldri)!) - Added release calendar for Python [#11081](https://github.com/rerun-io/rerun/pull/11081) #### ๐Ÿ–ผ UI improvements - Log all low-level MCAP primitives + raw messages as fallback [#10769](https://github.com/rerun-io/rerun/pull/10769) - Add arrow data tree view and syntax highlighting [#10777](https://github.com/rerun-io/rerun/pull/10777) - Add debug information about caches on the memory panel [#11055](https://github.com/rerun-io/rerun/pull/11055) - Implement full text filtering for string-based columns of the table widget [#11061](https://github.com/rerun-io/rerun/pull/11061) - Add support for filtering on boolean columns [#11095](https://github.com/rerun-io/rerun/pull/11095) - Add support for filtering numeric (int/float) columns in tables [#11142](https://github.com/rerun-io/rerun/pull/11142) - Use partition id in the recording panel [#11157](https://github.com/rerun-io/rerun/pull/11157) - Draw loop selection highlight on the collapsed timeline [#11203](https://github.com/rerun-io/rerun/pull/11203) - Move copy / save buttons inline with the relevant component [#11181](https://github.com/rerun-io/rerun/pull/11181) - Set timeline with most events as default timeline [#11217](https://github.com/rerun-io/rerun/pull/11217) - Add share link button to time panel context menu [#11186](https://github.com/rerun-io/rerun/pull/11186) #### ๐Ÿ•ธ๏ธ Web - Improve browser navigation for http & catalog server links [#10863](https://github.com/rerun-io/rerun/pull/10863) - pixi: Use llvm-ar from PATH on macOS, avoid unexpanded ${PIXI_PROJECTโ€ฆ [#10910](https://github.com/rerun-io/rerun/pull/10910) (thanks [@matildasmeds](https://github.com/matildasmeds)!) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Fix building Web Viewer on macOS [#10828](https://github.com/rerun-io/rerun/pull/10828) - Improve `rerun rrd print` [#10881](https://github.com/rerun-io/rerun/pull/10881) #### ๐Ÿ—ฃ Refactors - Add `ApplicationId` in `StoreId` [#10742](https://github.com/rerun-io/rerun/pull/10742) #### ๐Ÿ“ฆ Dependencies - Use `jiff` date-time crate instead of `time`/`chrono` in more places [#9536](https://github.com/rerun-io/rerun/pull/9536) (thanks [@NiharP31](https://github.com/NiharP31)!) #### ๐Ÿคทโ€ Other - Introduce MCAP layers and `rerun mcap` CLI tools [#10856](https://github.com/rerun-io/rerun/pull/10856) - Remove `--drop-at-latency` [#11025](https://github.com/rerun-io/rerun/pull/11025) ## [0.24.1](https://github.com/rerun-io/rerun/compare/0.24.0...0.24.1) - 2025-08-07 - Bug fixes #### ๐ŸŒŠ C++ API - Fix `rerun_cpp` CMake link errors [#10756](https://github.com/rerun-io/rerun/pull/10756) (thanks [@reinar](https://github.com/reinar)!) - Fix C++ interface for `VideoStream` [#10745](https://github.com/rerun-io/rerun/pull/10745) - Fix C++ Arrow build [#10799](https://github.com/rerun-io/rerun/pull/10799) #### ๐Ÿ Python API - Explicitly import `pyarrow.compute` in `url_generation.py` [#10690](https://github.com/rerun-io/rerun/pull/10690) - Add `rerun-sdk[datafusion]` and `rerun-sdk[all]` [#10696](https://github.com/rerun-io/rerun/pull/10696) #### ๐Ÿฆ€ Rust API - Fix unnecessary `rfd` and wayland dependencies in SDK crate [#10802](https://github.com/rerun-io/rerun/pull/10802) #### ๐Ÿชณ Bug fixes - Make `parking_lot` dependency version stricter to prevent import failure [#10732](https://github.com/rerun-io/rerun/pull/10732) (thanks [@sdd](https://github.com/sdd)!) - Use `ui.warning_label()` in more places [#10697](https://github.com/rerun-io/rerun/pull/10697) - Fix colors sometimes being wrong in plot view [#10713](https://github.com/rerun-io/rerun/pull/10713) - Fix breaking example in `rerun_notebook/example.ipynb` [#10706](https://github.com/rerun-io/rerun/pull/10706) (thanks [@glk0](https://github.com/glk0)!) - Fix GUI hickup when starting native video player [#10797](https://github.com/rerun-io/rerun/pull/10797) - Improve command palette in light mode [#10825](https://github.com/rerun-io/rerun/pull/10825) #### ๐ŸŒ Viewer improvements - Add time range query params when opening a time_range-based url [#10819](https://github.com/rerun-io/rerun/pull/10819) #### ๐Ÿ–ผ UI improvements - Better component UI for Arrow `StructArray` [#10748](https://github.com/rerun-io/rerun/pull/10748) #### ๐Ÿ•ธ๏ธ Web - Make `@rerun-io/web-viewer-react` compatible with React 19 [#10809](https://github.com/rerun-io/rerun/pull/10809) #### ๐Ÿ“ˆ Analytics - Add some analytics events [#10793](https://github.com/rerun-io/rerun/pull/10793) ## [0.24.0](https://github.com/rerun-io/rerun/compare/0.23.4...0.24.0) - 2025-07-16 - Tagged components, Video Stream, light mode and more * ๐Ÿ“– [Release blogpost](https://rerun.io/blog/release-0.24) * ๐Ÿงณ [Migration guide](https://rerun.io/docs/reference/migration/migration-0-24) ### โœจ Overview & highlights #### ๐Ÿ’ฝ Tagged components Starting with 0.22 Rerun began storing additional meta-information for each component, identifying its field name (e.g. `vertex_colors`) and its archetype (e.g. `Mesh3D`). We finally concluded this effort and made all parts of the Viewer and API aware of this. [](https://static.rerun.io/tags-before-after/2cb9942317249e1bd06eb7a7d16d1b6e8f814466/full.png) While this is mostly about under-the-hood changes, this has a lot of surface level benefits: * You can now log the same component type multiple times on a single entity path. For example, logging multiple archetypes which use the `Color` component onto the same entity was possible before, but the colors would have overwritten each other: ```py rr.log("path", rr.GeoPoints(lat_lon=[some_coordinate], colors=[0xFF0000FF])) rr.log("path", rr.Points2D(positions=[0.0, 0.0], colors=[0x0000FFFF])) rr.log("path", rr.Mesh3D(vertex_positions=vertices, vertex_colors=[0x00FF00FF])) ``` * The UI now groups by archetype everywhere and will show the same field names you use in the logging SDKs [](https://static.rerun.io/ui-grouping-before-after/08d2e3ab971fe3468f279c3b7bfb0858a821a1c8/full.png) * Better blueprint defaults: component defaults are now per archetype field and not per type. Making them **a lot** more useful. [](https://static.rerun.io/visualizer-default-context-menu/9622eae67d9bb17e428fda7242b45b8029639a99/full.png) * No more indicator components! These showed previously up in the UI and needed special handling for some advanced use cases. #### ๐ŸŽฅ Video streams Rerun previously supported video only in the form of MP4 files, so it was not possible to stream live encoded video to Rerun. The new [`VideoStream`](https://rerun.io/docs/reference/types/archetypes/video_stream) archetype remedies that! [](https://static.rerun.io/camera_video_stream/b2f8f61eb62424aa942bdb5183e49246cf417e60/full.png) If you already have encoded video frames, it is just as easy as logging images now: ```py rr.set_time("time", duration=float(packet.pts * packet.time_base)) rr.log("video_stream", rr.VideoStream(codec=rr.VideoCodec.H264, sample=bytes(packet))) ``` For now, we only handle H.264, but support for more codecs is on the roadmap. Learn more on the updated [video reference page](https://rerun.io/docs/concepts/logging-and-ingestion/video). #### ๐Ÿ˜Ž Light mode Rerun finally has a light mode. [](https://static.rerun.io/theme-before-after/4160c066eab17a6982201687993be60ceb37c33e/full.png) The theme defaults to your OS's setting, but can be adjusted in the settings menu. #### ๐Ÿ”€ Multi sink Previously, the SDK's recording stream could only send to one sink at a time. We now expose the ability to set multiple sinks at once, so you can simultaneously stream to both the Viewer and a file. Here's what that looks like in Python (but the API is available in C++ & Rust as well!) ```py rr.set_sinks( # Connect to a local viewer using the default URL rr.GrpcSink(), # Write data to a `data.rrd` file in the current directory rr.FileSink("data.rrd"), ) ``` #### ๐Ÿค– Built-in URDF data loader You can now log URDF files directly to Rerun using the `log_file` API. #### ๐Ÿ‘€ Other highlights in short * New [`Cylinder`](https://rerun.io/docs/reference/types/archetypes/cylinders3d) archetype * [`AnyValues`](https://github.com/rerun-io/rerun/blob/0.24.0/crates/store/re_types/src/any_values.rs) utility for Rust * [`rerun rrd stats`](https://github.com/rerun-io/rerun/pull/10593) for retrieving statistics about rrd files * [`rerun rrd route`](https://github.com/rerun-io/rerun/pull/10607) command to manipulate .rrd files on transport level * Much faster & better compaction for both `rerun rrd compact` and automatic in-Viewer compaction * Viewers started with `spawn` use now less memory since it no longer sets up an GRPC server for message forwarding * View3D's eye control type & speed can now be changed from blueprint (and as such is persisted over session!) more properties will follow in the future. (thanks to @jccampagne) ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Remove deprecated `Scalar`, `SeriesLine`, `SeriesPoint` archetypes [#9892](https://github.com/rerun-io/rerun/pull/9892) - Remove untagged `Component::descriptor()` [#10038](https://github.com/rerun-io/rerun/pull/10038) - Add `Cylinders3D` archetype [#10139](https://github.com/rerun-io/rerun/pull/10139) - Provide `AnyValues` helpers in Rust SDK [#10074](https://github.com/rerun-io/rerun/pull/10074) - Rename `ComponentDescriptor` fields and use colons in Sorbet metadata [#10245](https://github.com/rerun-io/rerun/pull/10245) - Stop logging indicators and drop them during migration [#10521](https://github.com/rerun-io/rerun/pull/10521) - Make `SeriesPoints::markers` component required [#10572](https://github.com/rerun-io/rerun/pull/10572) - Remove indicators from codegen, `rerun_py`, and `rerun_cpp` [#10581](https://github.com/rerun-io/rerun/pull/10581) - Removes remnants of indicators from dataframe queries and viewer [#10584](https://github.com/rerun-io/rerun/pull/10584) - `rerun rrd stats` [#10593](https://github.com/rerun-io/rerun/pull/10593) - Source default batcher settings from sink [#10620](https://github.com/rerun-io/rerun/pull/10620) #### ๐ŸŒŠ C++ API - (CMake) download arrow inside the rerun build folder instead of general binary folder [#10141](https://github.com/rerun-io/rerun/pull/10141) (thanks [@jzubizarreta](https://github.com/jzubizarreta)!) - Fix documentation wording on which arrow-cpp version to use [#10235](https://github.com/rerun-io/rerun/pull/10235) - Disable gRPC server history for Spawn/CLI [#10314](https://github.com/rerun-io/rerun/pull/10314) - Add `set_sinks` to C++ `RecordingStream` [#10359](https://github.com/rerun-io/rerun/pull/10359) #### ๐Ÿ Python API - Add `Dataset.register_batch` and wrappers for task ids [#9895](https://github.com/rerun-io/rerun/pull/9895) - Introduce `ConnectionRegistry` for centralized redap client and token management [#10078](https://github.com/rerun-io/rerun/pull/10078) - Build in `manylinux_2_28` container [#10148](https://github.com/rerun-io/rerun/pull/10148) - Add APIs to Dataset to query and update the associated blueprint [#10156](https://github.com/rerun-io/rerun/pull/10156) - Support for seconds-since-Epoch numpy arrays for constructing `TimeColumn` [#10168](https://github.com/rerun-io/rerun/pull/10168) (thanks [@MichaelGrupp](https://github.com/MichaelGrupp)!) - Fix initializing two recordings with the same recording id causing SDK hangs [#10201](https://github.com/rerun-io/rerun/pull/10201) (thanks [@AhmedMousa-ag](https://github.com/AhmedMousa-ag)!) - Improve `rerun_notebook` startup times [#10111](https://github.com/rerun-io/rerun/pull/10111) - New dataset API for just retrieving `chunk_ids` associated with a query [#10261](https://github.com/rerun-io/rerun/pull/10261) - Multi-sink / `tee` Python API [#10158](https://github.com/rerun-io/rerun/pull/10158) - Rename to `tee` to `set_sinks` [#10312](https://github.com/rerun-io/rerun/pull/10312) - Add support for `index=None` to local and remote dataframe APIs and deprecate `select_static` [#10332](https://github.com/rerun-io/rerun/pull/10332) - Disable gRPC server history for Spawn/CLI [#10314](https://github.com/rerun-io/rerun/pull/10314) - Deprecate `serve_web` and improve documentation around how to serve a web viewer [#10360](https://github.com/rerun-io/rerun/pull/10360) - Add partition ID to `TimeUpdateEvent` [#10403](https://github.com/rerun-io/rerun/pull/10403) - Fix `set_time_ctrl` not doing anything when called twice [#10547](https://github.com/rerun-io/rerun/pull/10547) - Notebook auto-sizing [#10554](https://github.com/rerun-io/rerun/pull/10554) - Add `RegisterTable` rpc, `LanceTable` message, and related proto changes [#10538](https://github.com/rerun-io/rerun/pull/10538) - Add `open_url`/`close_url` notebook APIs [#10602](https://github.com/rerun-io/rerun/pull/10602) - AnyValue Torch Performance Improvement [#10647](https://github.com/rerun-io/rerun/pull/10647) - Make it easier to disable the 3D line grid in Python (blueprint) [#10621](https://github.com/rerun-io/rerun/pull/10621) - Add `to_arrow_reader()` to `TableEntry` and `DataFusionTable` [#10601](https://github.com/rerun-io/rerun/pull/10601) - Make it possible to configure batcher explicitly via python APIs [#10657](https://github.com/rerun-io/rerun/pull/10657) #### ๐Ÿฆ€ Rust API - Update MSRV to 1.85 [#9798](https://github.com/rerun-io/rerun/pull/9798) - Improve `rerun` crate forwarding, removing need to depend on other `re_*` crates for viewer customization [#9825](https://github.com/rerun-io/rerun/pull/9825) - Update glam to 0.30, and replace `re_math` with `macaw` [#10119](https://github.com/rerun-io/rerun/pull/10119) - Add `RecordingStream::set_timestamp_nanos_since_epoch` [#10200](https://github.com/rerun-io/rerun/pull/10200) - Add `set_sinks` to Rust `RecordingStream` [#10336](https://github.com/rerun-io/rerun/pull/10336) - Disable gRPC server history for Spawn/CLI [#10314](https://github.com/rerun-io/rerun/pull/10314) - Deprecate `serve_web` and improve documentation around how to serve a web viewer [#10360](https://github.com/rerun-io/rerun/pull/10360) - Experimental connection status inspection for Rust gRPC connections [#10433](https://github.com/rerun-io/rerun/pull/10433) - Implement `From` for more narrow integers and floats for `Float64` [#10463](https://github.com/rerun-io/rerun/pull/10463) #### ๐Ÿชณ Bug fixes - Fix non-deterministic mesh rendering order [#10117](https://github.com/rerun-io/rerun/pull/10117) - LeRobot Dataloader: Mark robot type as optional [#10174](https://github.com/rerun-io/rerun/pull/10174) - Fix some actions happening on key _up_ instead of key _down_ [#10232](https://github.com/rerun-io/rerun/pull/10232) - Fix showing too much data for generic blobs of data (arrow `ListArray`s) [#10275](https://github.com/rerun-io/rerun/pull/10275) - Make it possible to click the barchart view to select it [#10257](https://github.com/rerun-io/rerun/pull/10257) - Fix integer overflow in `TimeSeriesView` for too large timestamps [#10310](https://github.com/rerun-io/rerun/pull/10310) - Fix `SIGBUS` startup crash on some Mac systems [#10334](https://github.com/rerun-io/rerun/pull/10334) - Silence harmeless "Unrecognized present mode" warning [#10379](https://github.com/rerun-io/rerun/pull/10379) - Fix copy and cut from notebook cells [#10401](https://github.com/rerun-io/rerun/pull/10401) - Fix videos re-decoding on some ui interactions [#10420](https://github.com/rerun-io/rerun/pull/10420) - Fix video stuttering on Firefox & Safari when encountering b-frames [#10405](https://github.com/rerun-io/rerun/pull/10405) - Fix pixel picking ui width changing rapidly by padding values [#10481](https://github.com/rerun-io/rerun/pull/10481) - Fix: don't always pick `/` as the origin when creating new views [#10514](https://github.com/rerun-io/rerun/pull/10514) - Fix tooltips sometimes jumping around on screen [#10527](https://github.com/rerun-io/rerun/pull/10527) - Fix spurious decode errors with H.264 on native Viewer [#10539](https://github.com/rerun-io/rerun/pull/10539) - Fix H.264 with b-frames not decoding last few frames on native [#10545](https://github.com/rerun-io/rerun/pull/10545) - Fix visible time range documentation on property inheritance [#10618](https://github.com/rerun-io/rerun/pull/10618) - Remove redundant ffmpeg install check [#10635](https://github.com/rerun-io/rerun/pull/10635) - Make rerun menu scrollable if there is not enough space [#10642](https://github.com/rerun-io/rerun/pull/10642) #### ๐ŸŒ Viewer improvements - Basic ability to show components that only differ by archetype/field name on same entity [#9877](https://github.com/rerun-io/rerun/pull/9877) - Visualizers' data queries take component tags into account [#9887](https://github.com/rerun-io/rerun/pull/9887) - Allow editing existing recording properties, like name [#10003](https://github.com/rerun-io/rerun/pull/10003) - Fix issues when combining `InstancePoses3D` with transform properties of `Boxes3D`/`Ellipsoids3D`/`Capsules3D` [#10010](https://github.com/rerun-io/rerun/pull/10010) - Replace `tinystl` with `stl_io` to support more stl files [#9997](https://github.com/rerun-io/rerun/pull/9997) - Introduce variant UIs in `re_component_ui` [#10034](https://github.com/rerun-io/rerun/pull/10034) - Simple built-in URDF loader [#10105](https://github.com/rerun-io/rerun/pull/10105) - New `VideoStream` archetype for loose video samples [#10126](https://github.com/rerun-io/rerun/pull/10126) - Enable `VideoStream` H264 on the web [#10189](https://github.com/rerun-io/rerun/pull/10189) - Ensure LeRobot Dataloader logs tagged components [#10213](https://github.com/rerun-io/rerun/pull/10213) - Support loading ROS paths in URDF loader [#10231](https://github.com/rerun-io/rerun/pull/10231) - Move the default plot legend to bottom left instead of right [#10233](https://github.com/rerun-io/rerun/pull/10233) - Add `FillMode` to `Capsules3D` [#10238](https://github.com/rerun-io/rerun/pull/10238) - Make plot axis thinner [#10234](https://github.com/rerun-io/rerun/pull/10234) - Add a UI Slider to change speed of eye camera in 3D Views [#10085](https://github.com/rerun-io/rerun/pull/10085) (thanks [@jccampagne](https://github.com/jccampagne)!) - Delay showing video wait-for-decoder spinner on seeks [#10404](https://github.com/rerun-io/rerun/pull/10404) - Rename `RecordingProperties` to `RecordingInfo` [#10411](https://github.com/rerun-io/rerun/pull/10411) - Sharper icons on low-dpi screens (which is most of them) [#10508](https://github.com/rerun-io/rerun/pull/10508) - Add tab-bar button to hide a view [#10520](https://github.com/rerun-io/rerun/pull/10520) - Improve error message for FFmpeg not found [#10617](https://github.com/rerun-io/rerun/pull/10617) - Add Eye Controls 3D (Camera) properties to blueprint for kind and speed [#10445](https://github.com/rerun-io/rerun/pull/10445) (thanks [@jccampagne](https://github.com/jccampagne)!) #### ๐Ÿš€ Performance improvements - Add detailed view of latency [#10173](https://github.com/rerun-io/rerun/pull/10173) - Update tower http and tonic dependencies, improving `LogMsg` decode speed [#10209](https://github.com/rerun-io/rerun/pull/10209) - Free up memory of inactive recordings [#10537](https://github.com/rerun-io/rerun/pull/10537) - Compaction: performance & quality improvements [#10594](https://github.com/rerun-io/rerun/pull/10594) - `rrd stats`: add transport-layer only fast path [#10605](https://github.com/rerun-io/rerun/pull/10605) - `rrd stats`: parallelize decompression [#10606](https://github.com/rerun-io/rerun/pull/10606) - Add documentation for all things compaction [#10674](https://github.com/rerun-io/rerun/pull/10674) #### ๐Ÿง‘โ€๐Ÿซ Examples - Fix custom view example not instantiating visualizer by default [#9762](https://github.com/rerun-io/rerun/pull/9762) - Improve custom visualizer example [#9994](https://github.com/rerun-io/rerun/pull/9994) - New example: log and animate a URDF file [#10210](https://github.com/rerun-io/rerun/pull/10210) - Add Python example snippet for `VideoStream` using `av` to encode numpy images [#10279](https://github.com/rerun-io/rerun/pull/10279) - Standalone example for compressed video streams [#10297](https://github.com/rerun-io/rerun/pull/10297) - Add snippet demonstrating re-muxing of `VideoStream` data [#10614](https://github.com/rerun-io/rerun/pull/10614) #### ๐Ÿ“š Docs - Fix errors in getting-started/data-in documentation [#10134](https://github.com/rerun-io/rerun/pull/10134) (thanks [@wyfo](https://github.com/wyfo)!) - Make Rust getting-started example more idiomatic [#10137](https://github.com/rerun-io/rerun/pull/10137) (thanks [@wyfo](https://github.com/wyfo)!) - Show help clicking the `?` as well as by just hovering it [#10160](https://github.com/rerun-io/rerun/pull/10160) - Provide descriptor-aware `AnyValues` example in snippets [#10225](https://github.com/rerun-io/rerun/pull/10225) - Update Video reference manual with information about `VideoStream` [#10423](https://github.com/rerun-io/rerun/pull/10423) - Publish JS docs [#10410](https://github.com/rerun-io/rerun/pull/10410) - Document changes to `VisualizerOverride` [#10486](https://github.com/rerun-io/rerun/pull/10486) - Improve documentation around `AnyValues` and custom data [#10589](https://github.com/rerun-io/rerun/pull/10589) - Add juxtaposition of `SeriesLines` and `SeriesPoints` to `visualizer-overrides` snippet [#10637](https://github.com/rerun-io/rerun/pull/10637) - Micro-batching snippets [#10662](https://github.com/rerun-io/rerun/pull/10662) #### ๐Ÿ–ผ UI improvements - Introduce a DataFusion-backed table widget [#9764](https://github.com/rerun-io/rerun/pull/9764) - Use `DataFusionTableWidget` for table entries [#9869](https://github.com/rerun-io/rerun/pull/9869) - Selection ui now handles different images on the same entity path [#9928](https://github.com/rerun-io/rerun/pull/9928) - Add a light mode theme [#9953](https://github.com/rerun-io/rerun/pull/9953) - Save all selected recordings [#9968](https://github.com/rerun-io/rerun/pull/9968) - Use archetype field name in ui instead of component name [#9983](https://github.com/rerun-io/rerun/pull/9983) - Add keyboard navigation to the blueprint and streams tree [#9960](https://github.com/rerun-io/rerun/pull/9960) - Allow selecting multiple recordings [#10004](https://github.com/rerun-io/rerun/pull/10004) - Remove `data_based_visualizability_filter` from `BarChart` and `EncodedImage` [#10029](https://github.com/rerun-io/rerun/pull/10029) - Add support for variant UIs in the DataFusion table widget and show a button in the partition table recording links [#10035](https://github.com/rerun-io/rerun/pull/10035) - Switch icons to .svg [#10055](https://github.com/rerun-io/rerun/pull/10055) - Improve button tooltip help text [#10103](https://github.com/rerun-io/rerun/pull/10103) - Group components by archetype in the streams panel [#10124](https://github.com/rerun-io/rerun/pull/10124) - Group components by archetype in selection panel [#10140](https://github.com/rerun-io/rerun/pull/10140) - Zoom X/Y axes individually, in time series and bar chart view [#10159](https://github.com/rerun-io/rerun/pull/10159) - Toggle maximized view with Ctrl+M [#10162](https://github.com/rerun-io/rerun/pull/10162) - Add option to link the X-axis of multiple time plots [#10146](https://github.com/rerun-io/rerun/pull/10146) - Animate the maximization of a view [#10163](https://github.com/rerun-io/rerun/pull/10163) - Group dataframe table by archetype and use new table design [#10149](https://github.com/rerun-io/rerun/pull/10149) - Add "deep inspection" selection ui for the new `VideoStream` archetype [#10239](https://github.com/rerun-io/rerun/pull/10239) - Add duration field to the recording UI [#10284](https://github.com/rerun-io/rerun/pull/10284) (thanks [@pweids](https://github.com/pweids)!) - Add catalog entry table [#10290](https://github.com/rerun-io/rerun/pull/10290) - Highlight help buttons until the user clicks one of them [#10301](https://github.com/rerun-io/rerun/pull/10301) - Highlight redap server list item if active [#10340](https://github.com/rerun-io/rerun/pull/10340) - Allow editing connection settings for an existing redap server [#10300](https://github.com/rerun-io/rerun/pull/10300) - Improved menu styling [#10357](https://github.com/rerun-io/rerun/pull/10357) - Disambiguate component entries in selection panel [#10368](https://github.com/rerun-io/rerun/pull/10368) - Display the partition ID in recording selection panel [#10387](https://github.com/rerun-io/rerun/pull/10387) - Show average FPS of selected video [#10479](https://github.com/rerun-io/rerun/pull/10479) - Rename the 'Welcome screen' option to 'Rerun examples' [#10503](https://github.com/rerun-io/rerun/pull/10503) - Show arrow data in header tooltips and ever more data when alt is down [#10526](https://github.com/rerun-io/rerun/pull/10526) - Add support for table entries in the redap browser [#10569](https://github.com/rerun-io/rerun/pull/10569) - Add a 'copy entry url' button next to the name of remote datasets and table [#10571](https://github.com/rerun-io/rerun/pull/10571) - Show loading screen when starting viewer with a URL [#10587](https://github.com/rerun-io/rerun/pull/10587) #### ๐Ÿ•ธ๏ธ Web - Support callbacks in React [#10518](https://github.com/rerun-io/rerun/pull/10518) - Introduce `RecordingOpen` viewer event [#10654](https://github.com/rerun-io/rerun/pull/10654) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Show stderr output of external dataloaders [#10087](https://github.com/rerun-io/rerun/pull/10087) - Dynamically Set Active Partition URL and Select Time Window [#10557](https://github.com/rerun-io/rerun/pull/10557) - Log a warning when starting the viewer from inside a Docker container [#10306](https://github.com/rerun-io/rerun/pull/10306) #### ๐Ÿ—ฃ Refactors - Add descriptors to all remaining blueprint components [#9908](https://github.com/rerun-io/rerun/pull/9908) - Require `ComponentDescriptor` in `ChunkBuilder::with_component_batch*` methods [#10026](https://github.com/rerun-io/rerun/pull/10026) - Make `archetype_field_name` mandatory in `ComponentDescriptor` [#10082](https://github.com/rerun-io/rerun/pull/10082) #### ๐Ÿ“ฆ Dependencies - Update to wgpu 0.25 [#10009](https://github.com/rerun-io/rerun/pull/10009) (thanks [@ThierryBerger](https://github.com/ThierryBerger)!) - Update Arrow and DataFusion dedpendencies [#10195](https://github.com/rerun-io/rerun/pull/10195) - Update egui to 0.32 [#10604](https://github.com/rerun-io/rerun/pull/10604) #### ๐Ÿคทโ€ Other - Add migration tool for legacy .rrd files [#9816](https://github.com/rerun-io/rerun/pull/9816) - Add support for remote dataset blueprints [#10128](https://github.com/rerun-io/rerun/pull/10128) - Use new column name in `blueprint::datatypes::ComponentColumnSelector` [#10215](https://github.com/rerun-io/rerun/pull/10215) - Support u16/u32/u64 wide Rerun `enum` types in data definition [#10252](https://github.com/rerun-io/rerun/pull/10252) - `rerun rrd route` command to manipulate `.rrd`s on transport level [#10607](https://github.com/rerun-io/rerun/pull/10607) ## [0.23.4](https://github.com/rerun-io/rerun/compare/0.23.3..0.23.4) - 2025-06-26 - Fix `rerun rrd migrate` tool [#10350](https://github.com/rerun-io/rerun/pull/10350) ## [0.23.3](https://github.com/rerun-io/rerun/compare/0.23.2...0.23.3) - 2025-05-26 ### ๐Ÿ”Ž Details #### ๐ŸŒŠ C++ API - Fix building with arrow 20.0.0 [#9966](https://github.com/rerun-io/rerun/pull/9966) (thanks [@adamreeve](https://github.com/adamreeve)!) - Fix MSVC C++20 compilation issues [#9951](https://github.com/rerun-io/rerun/pull/9951) #### ๐Ÿชณ Bug fixes - Add draw order to video (-frame-reference), fix 2d objects sometimes being behind videos [#9946](https://github.com/rerun-io/rerun/pull/9946) - Fix time series points querying extra points at start and end of time range (causing stuttering on playback in some scenes) [#9963](https://github.com/rerun-io/rerun/pull/9963) - Increase max size of gRPC messages [#10006](https://github.com/rerun-io/rerun/pull/10006) - Check TextEdit state before copying selection description [#10063](https://github.com/rerun-io/rerun/pull/10063) #### ๐ŸŒ Viewer improvements - Use recording name for file name when saving a file [#9982](https://github.com/rerun-io/rerun/pull/9982) - Improve error message for `QueryError` and `DataLoaderError` [#9998](https://github.com/rerun-io/rerun/pull/9998) #### ๐Ÿš€ Performance improvements - Series of build changes for web release to minimize generated wasm [#9870](https://github.com/rerun-io/rerun/pull/9870) #### ๐Ÿ“š Docs - Remove remaining mentions of `rr.connect` [#10016](https://github.com/rerun-io/rerun/pull/10016) - Update callbacks and custom_callbacks example docs to mention the other [#10062](https://github.com/rerun-io/rerun/pull/10062) - Fix missing reference to `Spatial3DView` in `Pinhole` docs [#9932](https://github.com/rerun-io/rerun/pull/9932) (thanks [@hu-po](https://github.com/hu-po)!) - Mention URL scheme in `connect_grpc` docs [#10018](https://github.com/rerun-io/rerun/pull/10018) #### ๐Ÿคทโ€ Other - LeRobot: Add support for List datatype [#9958](https://github.com/rerun-io/rerun/pull/9958) ## [0.23.2](https://github.com/rerun-io/rerun/compare/0.23.1...0.23.2) - 2025-05-06 - RRD migration and bugfixes ### โœจ Overview & highlights - New CLI tool to migrate `.rrd` files - Various bugfixes #### `.rrd` migration tool With `0.23`, we made several breaking changes that resulted in older `.rrd` files not being able to load at all anymore. To help smoothen the migration to `0.23`, we're introducing a `migrate` command to the Rerun CLI: ``` rerun rrd migrate colmap.rrd arkit.rrd rgbd.rrd ``` The command will copy the contents into a `.backup` file, and then migrate the file. Due to the incompatibility between `.rrd` files from `0.23` and those from earlier versions, this command likely won't be able to migrate every recording perfectly. We expect the migration to work on files between `0.20` and `0.22`, simpler recordings may work as far back as `0.18`. We plan to use this command future `.rrd` migrations as a way to fulfill our N+1 compatibility guarantee: * Viewers after `0.23` will always be able to load recordings from the previous version. * Recordings from `0.23` and beyond may be migrated to the next version. We currently have no plans for compatibility or migrations across multiple versions. #### ๐Ÿชต Log API - Improve and mitigate warnings around data loss when flushing [#9846](https://github.com/rerun-io/rerun/pull/9846) #### ๐Ÿ Python API - Add `ViewerClient` to `rerun.experimental` [#9828](https://github.com/rerun-io/rerun/pull/9828) - Improve `set_time` error handling for large Python integers [#9839](https://github.com/rerun-io/rerun/pull/9839) - Properly resolve component selectors in dataset index creation and search APIs [#9854](https://github.com/rerun-io/rerun/pull/9854) - Fix incorrectly advertised minimum supported `pyarrow` version (18.0.0 is required) [#9878](https://github.com/rerun-io/rerun/pull/9878) - Fix incorrectly advertised numpy 1.x support (numpy2 is required now) [#9880](https://github.com/rerun-io/rerun/pull/9880) #### ๐Ÿชณ Bug fixes - Fix world grid not scaling correctly when camera is below the grid [#9867](https://github.com/rerun-io/rerun/pull/9867) - Tensor view improvements [#9831](https://github.com/rerun-io/rerun/pull/9831) - Fix size check for NV12 & YUY2 formats in C++ and Rust [#9890](https://github.com/rerun-io/rerun/pull/9890) ## [0.23.1](https://github.com/rerun-io/rerun/compare/0.23.0...0.23.1) - 2025-04-25 - Fix notebooks #### ๐Ÿชณ Bug fixes - Use correct URL for `RERUN_NOTEBOOK_ASSET` [#9800](https://github.com/rerun-io/rerun/pull/9800) #### ๐ŸŒŠ C++ API - C++: Emit warnings when using deprecated Rerun types [#9801](https://github.com/rerun-io/rerun/pull/9801) #### ๐Ÿ Python API - Direct API for setting blueprint on a notebook-embedded viewer [#9804](https://github.com/rerun-io/rerun/pull/9804) #### ๐ŸŒ Viewer improvements - Fix doclinks to archetypes [#9791](https://github.com/rerun-io/rerun/pull/9791) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add link to Gradio annotation example [#9790](https://github.com/rerun-io/rerun/pull/9790) (thanks [@pablovela5620](https://github.com/pablovela5620)!) #### ๐Ÿ–ผ UI improvements - Show image format (resolution etc) of image blobs [#9792](https://github.com/rerun-io/rerun/pull/9792) ## [0.23.0](https://github.com/rerun-io/rerun/compare/0.22.1...0.23.0) - 2025-04-24 - Backwards compatible `.rrd` and multi-scalar logging * ๐Ÿ“– [Release blogpost](https://rerun.io/blog/release-0.23) * ๐Ÿงณ [Migration guide](https://rerun.io/docs/reference/migration/migration-0-23) ### โœจ Overview & highlights #### Viewer * โฉ [New .rrd format that will be backwards compatible](https://rerun.io/blog/release-0.23) * ๐Ÿ“ˆ Support for multiple scalars under a single entity * โ†ช๏ธ [Callbacks API for notebooks and JavaScript](https://rerun.io/docs/howto/callbacks) * โš™๏ธ [New APIs for attaching properties (metadata) to recordings](https://github.com/rerun-io/rerun/blob/0.23.0/docs/snippets/all/concepts/recording_properties.py) * ๐Ÿงฎ [Experimental support for tables and dataframes](https://rerun.io/docs/howto/logging/send-table) #### Multiple scalars under a single entity In this release we have added support for logging scalar data with multiple signals, under the same entity. This allow you to log data that inherently belongs together, such as the action values in a LeRobot dataset or gyroscope measurements, under the same entity path. As part of this update, we're deprecating the `SeriesLine/SeriesPoint/Scalar` archetypes in favor of the plural versions `SeriesLines/SeriesPoints/Scalars`, for consistent naming with the other archetypes. For example, the `x`, `y` and `z` component of a gyroscope measurement, previously would be logged as separate entities: ```py rr.log("gyroscope/x", rr.Scalar(measurement[0])) rr.log("gyroscope/y", rr.Scalar(measurement[1])) rr.log("gyroscope/z", rr.Scalar(measurement[2])) ``` Now can be logged under a single entity: ```py rr.log("gyroscope", rr.Scalars(measurement)) ```


See the new IMU signals example for more

The `SeriesLine` and `SeriesPoints` archetypes now include a `visible_series` component that lets you control which series appear in your visualizations. Unlike the regular entity visibility property, hidden series will still show up in the legend. ![Image](https://github.com/user-attachments/assets/8a645f6e-787b-4671-8534-40b97cfc77a3) #### Callbacks API for notebooks and JavaScript We've added a (limited) API with callbacks, useable from JavaScript and from Notebooks (but not yet from out logging SDKs). With this you can easily write simple annotations tools. We've created an example for this using [Gradio](https://www.gradio.app/) at . ![Annotation example](https://github.com/user-attachments/assets/0ca80087-4589-4bb1-b010-c1991478d25d) #### Recording properties For this release, we have improved Rerun's logging capabilities. There is a new _recording properties_ concept in all of our APIs. Recording properties allow you to attach metadata to a recording. For example, you can now change the name of your recording via `.send_recording_name("My episode")`, which will show up in the recording panel of the viewer as well. You can also log arbitrary data via the general `.send_property()` method. Properties are logged as static data and will therefore show up in the timeline as well. Also, the side-panel shows an overview of the properties when a recording is selected. Image Image Image Our snippets now contain examples for recording properties in all SDKs: * [๐Ÿ Python (`recording_properties.py`)](https://github.com/rerun-io/rerun/blob/main/docs/snippets/all/concepts/recording_properties.py) * [๐Ÿฆ€ Rust (`recording_properties.rs`)](https://github.com/rerun-io/rerun/blob/main/docs/snippets/all/concepts/recording_properties.rs) * [๐ŸŒŠ C++ (`recording_properties.cpp`)](https://github.com/rerun-io/rerun/blob/main/docs/snippets/all/concepts/recording_properties.cpp) #### Experimental `send_table` API We are also working on better support for tables and dataframes in Rerun, a feature that has been requested several times by our community. With this release, there is now an _experimental_ API `send_table` that can be used to send arbitrary Arrow record batches via the Python SDK and from notebooks. For now, while we evolve this feature, this API is separate from the rest of our logging APIs. [This tutorial](https://rerun.io/docs/howto/logging/send-table) shows how to use this APIs and also provides more details on the current implementation. In future releases, we plan to improve support for the table representation in the viewer to facility more advanced analysis tasks such as filtering, or showing summary statistics. Please note that this is distinct from our current `send_dataframe` API and dataframe query view. Image ### โš ๏ธ Breaking changes This release changes how the SDKs interact with the viewer, as Rerun now relies heavily on gRPC. Additionally, we have changed our file format and data model to be much more flexible in the future. These changes will improve our backwards-compatibility going forward, but this also means that this release introduces breaking changes to our `.rrd` format and how the SDKs communicate with the viewer. - `.rrd` files from previous releases cannot be loaded anymore - Removed unsupported connection methods from the SDKs - The connection URLs have changed and now require a `rerun://` (TLS) or `rerun+http://` (unencrypted) prefix - Several changes to our logging SDKs (timelines, time units, โ€ฆ) You can find more information in our ๐Ÿงณ [migration guide](https://rerun.io/docs/reference/migration/migration-0-23) ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Migrate file format to protobuf [#8995](https://github.com/rerun-io/rerun/pull/8995) - Move `rerun.components.blueprint.Visible` to `rerun.components.Visible` [#9067](https://github.com/rerun-io/rerun/pull/9067) - Infer column partition size from shape in `Scalar.columns()` [#9068](https://github.com/rerun-io/rerun/pull/9068) - Infer partition size for FixedSizeList-backed components [#9210](https://github.com/rerun-io/rerun/pull/9210) - Recording properties for naming recordings and adding information [#9249](https://github.com/rerun-io/rerun/pull/9249) - Provide APIs to log arbitrary data to recording properties [#9316](https://github.com/rerun-io/rerun/pull/9316) - Deprecate `SeriesLine`/`SeriesPoint`/`Scalar` in favor of `SeriesLines`/`SeriesPoints`/`Scalars` [#9338](https://github.com/rerun-io/rerun/pull/9338) - Add `serve_grpc` API [#9447](https://github.com/rerun-io/rerun/pull/9447) - Add experimental `send_recording` python api [#9148](https://github.com/rerun-io/rerun/pull/9148) - Implement `send_table` in `re_grpc_server` and `re_viewer` [#9510](https://github.com/rerun-io/rerun/pull/9510) - Example showcasing `send_table` from notebooks [#9522](https://github.com/rerun-io/rerun/pull/9522) - Add `rr.serve_web_viewer` [#9540](https://github.com/rerun-io/rerun/pull/9540) - Add experimental `send_table` to Python SDK [#9538](https://github.com/rerun-io/rerun/pull/9538) - Fix handling of custom indicator components [#9755](https://github.com/rerun-io/rerun/pull/9755) #### ๐ŸŒŠ C++ API - Migrate SDK comms to gRPC [#8838](https://github.com/rerun-io/rerun/pull/8838) - New C++ API for timestamp/duration indices [#9200](https://github.com/rerun-io/rerun/pull/9200) - Remove deprecated C++ `connect` APIs [#9212](https://github.com/rerun-io/rerun/pull/9212) - Add `detach_process` option to `spawn` [#9400](https://github.com/rerun-io/rerun/pull/9400) (thanks [@imstevenpmwork](https://github.com/imstevenpmwork)!) - Consistent constructor naming of `Asset3D` across C++ and Rust [#9239](https://github.com/rerun-io/rerun/pull/9239) (thanks [@abhishek47kashyap](https://github.com/abhishek47kashyap)!) - Use consistent time unit names for our API [#9343](https://github.com/rerun-io/rerun/pull/9343) - CMake: Use `find_dependency` for Arrow [#9548](https://github.com/rerun-io/rerun/pull/9548) (thanks [@BillyONeal](https://github.com/BillyONeal)!) - Set `RERUN_ARROW_LINK_SHARED_DEFAULT` based on found Arrow build [#9550](https://github.com/rerun-io/rerun/pull/9550) (thanks [@BillyONeal](https://github.com/BillyONeal)!) #### ๐Ÿ Python API - Migrate SDK comms to gRPC [#8838](https://github.com/rerun-io/rerun/pull/8838) - Update maturin to 1.8.1 and fix `pyproject.toml` [#9104](https://github.com/rerun-io/rerun/pull/9104) - Add `rr.set_index` to replace `rr.set_time_*` [#9166](https://github.com/rerun-io/rerun/pull/9166) - Fix support for numpy-2 [#9109](https://github.com/rerun-io/rerun/pull/9109) - Add `rr.IndexColumn` [#9179](https://github.com/rerun-io/rerun/pull/9179) - Python SDK spring cleaning: 3.9, no more monkey patching, more lints [#9182](https://github.com/rerun-io/rerun/pull/9182) - Enable a bunch of `ruff` lints [#9201](https://github.com/rerun-io/rerun/pull/9201) - Remove deprecated Python APIs: `log_components`, `connect`, `connect_tcp` [#9197](https://github.com/rerun-io/rerun/pull/9197) - Remove deprecated `rr.serve()` [#9207](https://github.com/rerun-io/rerun/pull/9207) - Deprecate `rr.new_recording()` in favor of `rr.RecordingStream()` and improve type checking of the Rust bindings [#9206](https://github.com/rerun-io/rerun/pull/9206) - Archetype based overrides & defaults [#9209](https://github.com/rerun-io/rerun/pull/9209) - Fix several typing annotations in the SDK and run mypy on snippets [#9260](https://github.com/rerun-io/rerun/pull/9260) - Correct truncation of AnyValues when using strings or bytes [#9269](https://github.com/rerun-io/rerun/pull/9269) - New `EntityBehavior` archetype for easy `visible`/`interactive` blueprint overrides [#9281](https://github.com/rerun-io/rerun/pull/9281) - Fix the string representation of archetypes [#9297](https://github.com/rerun-io/rerun/pull/9297) - Initial python wrapper for the new catalog API [#9301](https://github.com/rerun-io/rerun/pull/9301) - Change signature of `set_time_ctrl` to match `set_time` [#9342](https://github.com/rerun-io/rerun/pull/9342) - Add `detach_process` option to `spawn` [#9400](https://github.com/rerun-io/rerun/pull/9400) (thanks [@imstevenpmwork](https://github.com/imstevenpmwork)!) - Use consistent time unit names for our API [#9343](https://github.com/rerun-io/rerun/pull/9343) - Allow passing url to notebook viewer [#9493](https://github.com/rerun-io/rerun/pull/9493) - Import `rerun.notebook` lazily [#9557](https://github.com/rerun-io/rerun/pull/9557) - Fix `Mat3x3` shape inference in `.columns` api [#9569](https://github.com/rerun-io/rerun/pull/9569) - Cleanup `rerun.utilities` and remove unused utilities [#9759](https://github.com/rerun-io/rerun/pull/9759) #### ๐Ÿฆ€ Rust API - Migrate SDK comms to gRPC [#8838](https://github.com/rerun-io/rerun/pull/8838) - Document default-log level change [#8988](https://github.com/rerun-io/rerun/pull/8988) - Transposed `RecordBatch` formatter and other niceties [#9056](https://github.com/rerun-io/rerun/pull/9056) - Fix `insta` crate leaking into regular (non-testing) builds [#9092](https://github.com/rerun-io/rerun/pull/9092) - Update MSRV to 1.84 [#9216](https://github.com/rerun-io/rerun/pull/9216) - Remove deprecated Rust `connect` APIs [#9219](https://github.com/rerun-io/rerun/pull/9219) - Introduce `IndexCell` [#9226](https://github.com/rerun-io/rerun/pull/9226) - Add `RecordingStream::set_index` [#9236](https://github.com/rerun-io/rerun/pull/9236) - Add Rust Viewer Callbacks example [#9346](https://github.com/rerun-io/rerun/pull/9346) - Make `BinaryStream::read` produce full RRD files [#9352](https://github.com/rerun-io/rerun/pull/9352) - Add `detach_process` option to `spawn` [#9400](https://github.com/rerun-io/rerun/pull/9400) (thanks [@imstevenpmwork](https://github.com/imstevenpmwork)!) - Consistent constructor naming of `Asset3D` across C++ and Rust [#9239](https://github.com/rerun-io/rerun/pull/9239) (thanks [@abhishek47kashyap](https://github.com/abhishek47kashyap)!) - Use consistent time unit names for our API [#9343](https://github.com/rerun-io/rerun/pull/9343) #### ๐Ÿชณ Bug fixes - Fix time series marker sizes not being able to vary over time [#9035](https://github.com/rerun-io/rerun/pull/9035) - Fix shader compilation failure in Chrome 131 [#9152](https://github.com/rerun-io/rerun/pull/9152) (thanks [@yakunouyang](https://github.com/yakunouyang)!) - Fix setting visible time range from overrides [#9151](https://github.com/rerun-io/rerun/pull/9151) - Speed up 2d spawn heuristic for many entities & fix heuristic creating overlapping views for `EncodedImage` [#9308](https://github.com/rerun-io/rerun/pull/9308) - Fix time series display range being affected by invisible plots [#9353](https://github.com/rerun-io/rerun/pull/9353) - Improve `rerun.notebook.Viewer` constructor [#9495](https://github.com/rerun-io/rerun/pull/9495) #### ๐ŸŒ Viewer improvements - Make `SeriesLine` visualizer work with several scalars per time [#9033](https://github.com/rerun-io/rerun/pull/9033) - Load depth images from Le Robot datasets [#9049](https://github.com/rerun-io/rerun/pull/9049) - Fix inconsistencies in plot highlights [#9061](https://github.com/rerun-io/rerun/pull/9061) - Add command palette action for resetting to the default blueprint [#9088](https://github.com/rerun-io/rerun/pull/9088) - Plot series visibility separarate from entity visibility, handle multi-series visibility [#9079](https://github.com/rerun-io/rerun/pull/9079) - Support Unitree LeRobot dataset naming format [#9100](https://github.com/rerun-io/rerun/pull/9100) - Add context menu action to copy entity paths to clipboard [#9137](https://github.com/rerun-io/rerun/pull/9137) - Copy description of selection (entity path, store id, etc.) via `cmd/ctrl + c` [#9172](https://github.com/rerun-io/rerun/pull/9172) - Editable time control & time context menus [#9174](https://github.com/rerun-io/rerun/pull/9174) - Check dataset version when loading LeRobot dataset [#9233](https://github.com/rerun-io/rerun/pull/9233) - Enable scalar arrays per time point for scatter plots [#9327](https://github.com/rerun-io/rerun/pull/9327) - Double clicking plots focuses them now in other panels [#9333](https://github.com/rerun-io/rerun/pull/9333) - Use multi-dimensional scalar values when loading LeRobot dataset [#9402](https://github.com/rerun-io/rerun/pull/9402) - Infer image/video channel index from LeRobot metadata [#9435](https://github.com/rerun-io/rerun/pull/9435) - Improve view heuristics for time series plot [#9587](https://github.com/rerun-io/rerun/pull/9587) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add example for python notebook with partial & columnar updates [#8956](https://github.com/rerun-io/rerun/pull/8956) - IMU data example [#9102](https://github.com/rerun-io/rerun/pull/9102) - Add Mast3r_slam Example [#9242](https://github.com/rerun-io/rerun/pull/9242) (thanks [@pablovela5620](https://github.com/pablovela5620)!) #### ๐Ÿ“š Docs - Add link to Snap Store in Getting Started [#8972](https://github.com/rerun-io/rerun/pull/8972) (thanks [@artivis](https://github.com/artivis)!) - Document testing in Rerun [#8989](https://github.com/rerun-io/rerun/pull/8989) - Fix rustdocs for `re_video` [#9295](https://github.com/rerun-io/rerun/pull/9295) - Callbacks: Update APIs, improve docs [#9312](https://github.com/rerun-io/rerun/pull/9312) - Update `__` as reserved entity path in docs [#9387](https://github.com/rerun-io/rerun/pull/9387) - Update cpp/eigen_opencv README snippets [#9463](https://github.com/rerun-io/rerun/pull/9463) (thanks [@ExpertOfNil](https://github.com/ExpertOfNil)!) - Include field names in Archetype docs [#9563](https://github.com/rerun-io/rerun/pull/9563) - Unify viewer callbacks into a single `Event` interface [#9739](https://github.com/rerun-io/rerun/pull/9739) - Document `send_table` in the Python SDK [#9589](https://github.com/rerun-io/rerun/pull/9589) #### ๐Ÿ–ผ UI improvements - Improve `redap://` connection UX and error messages [#9045](https://github.com/rerun-io/rerun/pull/9045) - First iteration of a dedicated UI and communication for the Redap server/catalog/collection browser [#9018](https://github.com/rerun-io/rerun/pull/9018) - Persist servers and allow adding/removing them from the UI [#9086](https://github.com/rerun-io/rerun/pull/9086) - Show EXIF data for JPEG/TIFF images [#9153](https://github.com/rerun-io/rerun/pull/9153) - Add entity search to the add/remove entity modal [#9120](https://github.com/rerun-io/rerun/pull/9120) - Streamline the help view shortcuts with the shortcuts in the menu [#9268](https://github.com/rerun-io/rerun/pull/9268) - Group open recordings by origin, dataset/appid and examples [#9377](https://github.com/rerun-io/rerun/pull/9377) - Implement basic UI to display recording properties [#9381](https://github.com/rerun-io/rerun/pull/9381) - Better distinction and explanation of reserved namespaces in the UI [#9390](https://github.com/rerun-io/rerun/pull/9390) - Add `TableStore` for table/dataframe entries + basic UI [#9437](https://github.com/rerun-io/rerun/pull/9437) - Display thumbnail in tables by generating content-based hash for `Blob` components [#9500](https://github.com/rerun-io/rerun/pull/9500) - Do not hide all entities when the search is active but empty [#9734](https://github.com/rerun-io/rerun/pull/9734) #### ๐Ÿ•ธ๏ธ Web - Add selection change and time(line) change callbacks to Jupyter Notebook and JS APIs [#9147](https://github.com/rerun-io/rerun/pull/9147) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Run `mypy` on the contents of `scripts/` [#9214](https://github.com/rerun-io/rerun/pull/9214) - Fix Bazel build: shader reloading only on in Rerun workspace [#9414](https://github.com/rerun-io/rerun/pull/9414) #### ๐Ÿ“ฆ Dependencies - Update egui to 0.31.1 [#9186](https://github.com/rerun-io/rerun/pull/9186) - feat: update arrow to 54 [#9259](https://github.com/rerun-io/rerun/pull/9259) #### ๐Ÿคทโ€ Other - Identify timelines uniquely by name (ignore type) [#9097](https://github.com/rerun-io/rerun/pull/9097) - Revert log level to `info` for everything except Python sdk [#9231](https://github.com/rerun-io/rerun/pull/9231) - Split `TimeType::Time`; changing dataloader API [#9292](https://github.com/rerun-io/rerun/pull/9292) - Remove unreleased attribute [0ec699aef5a08695e337a581ee6a2a1ccd2d01a3](https://github.com/rerun-io/rerun/commit/0ec699aef5a08695e337a581ee6a2a1ccd2d01a3) - Remove speculative-links [b0ea95e9d09dd14ff70264afb4027d6b33cc14af](https://github.com/rerun-io/rerun/commit/b0ea95e9d09dd14ff70264afb4027d6b33cc14af) - Fix scalars docs [6b7bf5f98527cb9622759a2dbb64e247d55deeca](https://github.com/rerun-io/rerun/commit/6b7bf5f98527cb9622759a2dbb64e247d55deeca) ## [0.22.1](https://github.com/rerun-io/rerun/compare/0.21.0...0.22.0) - Bugfixes - 2025-02-20 A small release addressing bugs and polishing rough edges. ### ๐Ÿ› ๏ธ Note on 0.20.0 release An issue with the 0.20.0 release led to incorrect artifacts being published, causing a few minor changes to be missing from those artifacts. The correct version has always been available on crates.io, PyPI, Conda, and other distribution channels, so no action is needed if you installed from these sources. ### ๐Ÿค– Native loading for LeRobot datasets We're gradually rolling out support for native loading of LeRobot datasets. Itโ€™s not fully feature-complete yet, there are tons of variations in these datasets, so itโ€™ll take a bit of time to cover all the edge cases. More improvements and features are planned for the 0.23 release, so expect things to get smoother and more robust soon. If you run into any issues, let us know! Your feedback helps us iron out bugs and improve the experience faster. https://github.com/user-attachments/assets/4b6d7e8c-02c6-43c9-be66-dcdbcf782cbd ### ๐Ÿ”Ž Details #### ๐Ÿ Python API - Don't use `np.float_` since it was removed in numpy 2.0 [#9037](https://github.com/rerun-io/rerun/pull/9037) #### ๐Ÿชณ Bug fixes - Never drop blueprint data from the WS server's message buffer [#8977](https://github.com/rerun-io/rerun/pull/8977) (thanks [@DerpDays](https://github.com/DerpDays)!) - Fix bug leading to swizzled lerobot data in dataloader [#9000](https://github.com/rerun-io/rerun/pull/9000) - Fix Arrows2D draw order having no effect [#9054](https://github.com/rerun-io/rerun/pull/9054) - Fix non-final releases creating final-release git tags [#9085](https://github.com/rerun-io/rerun/pull/9085) #### ๐ŸŒ Viewer improvements - Infer entity paths from LeRobot dataset feature metadata [#8981](https://github.com/rerun-io/rerun/pull/8981) - Log task descriptions for each LeRobot dataset episode [#9028](https://github.com/rerun-io/rerun/pull/9028) - Load lerobot dataset on separate IO thread [#9027](https://github.com/rerun-io/rerun/pull/9027) #### ๐Ÿง‘โ€๐Ÿซ Examples - Improve `image_column_updates` python example [#9065](https://github.com/rerun-io/rerun/pull/9065) #### ๐Ÿ–ผ UI improvements - Fix link in text log view help text [#8963](https://github.com/rerun-io/rerun/pull/8963) ## [0.22.0](https://github.com/rerun-io/rerun/compare/0.21.0...0.22.0) - Entity filter & improved partial update API - 2025-02-06 The new entity filtering: https://github.com/user-attachments/assets/75ae114b-a55c-452e-9003-d8f447854d2a The new notification panel: ![notification-panel](https://github.com/user-attachments/assets/0fb651d7-256a-48d7-a78e-81776ec39ba8) Copy any view as screenshot with right-click (now works in web-viewer): ![image](https://github.com/user-attachments/assets/bf36ee0b-2f64-473e-af48-dfd22c887b9c) New help texts for all our views: ![image](https://github.com/user-attachments/assets/8b2546c7-c54f-4c25-8b82-fd9abdc6c31e) ๐Ÿ“– Release blogpost: https://rerun.io/blog/graphs ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-22 ### โœจ Overview & highlights #### Viewer * ๐Ÿ”Ž Added entity filtering/searching * ๐Ÿ”” Recent notifications show now in a dedicated panel * ๐Ÿ–ฑ๏ธ Entity ranges can now be selected with shift + click * โ“ Improved panel help * ๐Ÿ–ผ๏ธ Crisper UI rendering * ๐ŸงŠ Faster 3D transforms #### APIs * ๐Ÿ”„ [Much easier partial updates of archetypes](https://rerun.io/docs/howto/logging/send-partial-updates) * ๐Ÿ“Š [Greatly improved ease of use of `send_columns`](https://rerun.io/docs/howto/logging-and-ingestion/send-columns) * โฑ๏ธ Python notebooks & JS can now control the timeline and panel states (see last section of [this notebook](https://github.com/rerun-io/rerun/blob/0.22.0/examples/python/notebook/cube.ipynb)) * ๐Ÿ“ Lots of [new snippets](https://github.com/rerun-io/rerun/blob/0.22.0/docs/snippets/INDEX.md) for demonstrating partial updates & custom data logging in Python/C++/Rust The API & related under-the-hood changes pave the way for better support for multiple archetypes on the same entity and components with generic types in future releases. Stay tuned! ### โš ๏ธ Breaking changes Passing raw batches of components is no longer supported. Instead, use the partial update APIs (or in rare cases, explicitly serialize the components). Check the [๐Ÿงณ Migration guide](https://rerun.io/docs/reference/migration/migration-0-22) for before/after snippets for all languages for this and other smaller breaking changes. ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Tensor shape and dimension names are now separate arrow fields [#8376](https://github.com/rerun-io/rerun/pull/8376) - Remove deprecated `DisconnectedSpace` archetype & component [#8545](https://github.com/rerun-io/rerun/pull/8545) - Add `any_values` and `extra_values` snippets for rust [#8718](https://github.com/rerun-io/rerun/pull/8718) - Implement gRPC log sink [#8709](https://github.com/rerun-io/rerun/pull/8709) - Implement gRPC log stream [#8730](https://github.com/rerun-io/rerun/pull/8730) #### ๐ŸŒŠ C++ API - Fix compilation for GCC 13.3 (missing `cstdint` include) [#8609](https://github.com/rerun-io/rerun/pull/8609) (thanks [@plumonito](https://github.com/plumonito)!) - Introduce eager serialization & update/clear APIs in the C++ SDK [#8727](https://github.com/rerun-io/rerun/pull/8727) - Make all C++ archetypes eager serialized & provide generated update/clear APIs [#8779](https://github.com/rerun-io/rerun/pull/8779) - C++ `columns` method for convenient `send_columns` call through archetypes [#8828](https://github.com/rerun-io/rerun/pull/8828) - Add `with_many_` variants for C++ archetype mono fields & port remaining snippets [#8836](https://github.com/rerun-io/rerun/pull/8836) - Require descriptors to be provided on all log calls in C++ (either explicitly or implicitly via archetype) [#8853](https://github.com/rerun-io/rerun/pull/8853) - Deprecate C++ `TimeColumn::from_sequence_points` in favor of `TimeColumn::from_sequence` [#8882](https://github.com/rerun-io/rerun/pull/8882) - `AsComponents::serialize` is now `AsComponents::as_batches` and returns `Collection` [#8884](https://github.com/rerun-io/rerun/pull/8884) - Make it easy to log custom arrow data in C++ [#8880](https://github.com/rerun-io/rerun/pull/8880) - Rerun CMake dependency now automatically ensures C++17 or newer [#8898](https://github.com/rerun-io/rerun/pull/8898) #### ๐Ÿ Python API - Autogenerated partial updates APIs for Python [#8671](https://github.com/rerun-io/rerun/pull/8671) - Remove unused `num_instances()` method [#8702](https://github.com/rerun-io/rerun/pull/8702) - Tagged columnar updates: Python [#8792](https://github.com/rerun-io/rerun/pull/8792) - Include a python API for routing time control commands to the notebook instance [#8809](https://github.com/rerun-io/rerun/pull/8809) - Python: remove legacy `send_columns` and update everything left [#8799](https://github.com/rerun-io/rerun/pull/8799) - Deprecate Python's `log_components` [#8892](https://github.com/rerun-io/rerun/pull/8892) #### ๐Ÿฆ€ Rust API - Update MSRV to 1.81 [#8529](https://github.com/rerun-io/rerun/pull/8529) - Fix `RecordingStream::log` implicitly requiring `Sized` [#8587](https://github.com/rerun-io/rerun/pull/8587) - Add example for extending the viewer with custom callbacks [#8284](https://github.com/rerun-io/rerun/pull/8284) - `EntityPathFilter` variable substitutions are now delegated to (new) `ResolvedEntityPathFilter` [#8543](https://github.com/rerun-io/rerun/pull/8543) - Specify, test, and fix all broken `AsComponents`<>`ComponentBatch` interactions from blanket impls [#8591](https://github.com/rerun-io/rerun/pull/8591) - New types and traits for (co-existing!) eager serialization [#8642](https://github.com/rerun-io/rerun/pull/8642) - Autogenerate tagging-compliant descriptor methods for all archetypes [#8643](https://github.com/rerun-io/rerun/pull/8643) - Automatically generate partial update APIs for eager archetypes [#8647](https://github.com/rerun-io/rerun/pull/8647) - Tagged columnar updates: Rust [#8764](https://github.com/rerun-io/rerun/pull/8764) - Make `Box`/`AssetVideo`/`ViewCoordinates`/`Asset3D` eager serialized in Rust [#8785](https://github.com/rerun-io/rerun/pull/8785) - Make `Pinhole` archetype in Rust eager serialized [#8789](https://github.com/rerun-io/rerun/pull/8789) - Make `Image` & `Mesh3D` archetypes in Rust eager serialized [#8793](https://github.com/rerun-io/rerun/pull/8793) - Make rust `Tensor` archetype eager serialized [#8801](https://github.com/rerun-io/rerun/pull/8801) - Rust: remove legacy `send_columns` and update everything left [#8804](https://github.com/rerun-io/rerun/pull/8804) - `ComponentBatch` doesn't implement `AsComponents` anymore [#8820](https://github.com/rerun-io/rerun/pull/8820) - Set default log level in `re_log` to `warn` [#8918](https://github.com/rerun-io/rerun/pull/8918) #### ๐Ÿชณ Bug fixes - Fix WSL support, update troubleshooting guide [#8610](https://github.com/rerun-io/rerun/pull/8610) - Handle empty line strips in the viewer [#8653](https://github.com/rerun-io/rerun/pull/8653) - Fix clicking of links in markdown [#8794](https://github.com/rerun-io/rerun/pull/8794) - Fix CPU spike caused by hanging connection after socket closure (#8806) [#8810](https://github.com/rerun-io/rerun/pull/8810) (thanks [@goktug97](https://github.com/goktug97)!) - Make it possible to change the contents of a view multiple times per frame [#8854](https://github.com/rerun-io/rerun/pull/8854) - Fix playback issues with some h264 videos on native & Safari [#8850](https://github.com/rerun-io/rerun/pull/8850) - Fix handling null timestamps in the dataframe [#8897](https://github.com/rerun-io/rerun/pull/8897) #### ๐ŸŒ Viewer improvements - Remove all legacy Chunk iteration APIs [#8556](https://github.com/rerun-io/rerun/pull/8556) - Implement copy-screenshot-to-clipboard on Web [#8607](https://github.com/rerun-io/rerun/pull/8607) - Improve transform performance (by caching affine transforms resulting from transform components) [#8691](https://github.com/rerun-io/rerun/pull/8691) #### ๐Ÿง‘โ€๐Ÿซ Examples - add prompt depth anything example [#8888](https://github.com/rerun-io/rerun/pull/8888) (thanks [@pablovela5620](https://github.com/pablovela5620)!) #### ๐Ÿ“š Docs - Add new `Transform3D` partial updates snippet for all languages [#8690](https://github.com/rerun-io/rerun/pull/8690) - doc: Update `annotation-context.rs` to use correct API [#8708](https://github.com/rerun-io/rerun/pull/8708) (thanks [@OlivierLDff](https://github.com/OlivierLDff)!) #### ๐Ÿ–ผ UI improvements - Show the `GraphNode` as a label by default [#8542](https://github.com/rerun-io/rerun/pull/8542) - Short circuit graph simulation if all nodes are fixed [#8549](https://github.com/rerun-io/rerun/pull/8549) - Panel with recent notifications [#8465](https://github.com/rerun-io/rerun/pull/8465) - Fix tooltips being dragged along in graph view [#8573](https://github.com/rerun-io/rerun/pull/8573) - Restore the time panel help button [#8599](https://github.com/rerun-io/rerun/pull/8599) - Filter entities in the UI (part 0): Make `CustomContent` more useful [#8645](https://github.com/rerun-io/rerun/pull/8645) - Filter entities in the UI (part 1): Introduce a filter widget [#8652](https://github.com/rerun-io/rerun/pull/8652) - Filter entities in the UI (part 2): Introduce entity filtering in the time panel [#8654](https://github.com/rerun-io/rerun/pull/8654) - Filter entities in the UI (part 3): Move action to a menu in the blueprint panel and keep default blueprint when using heuristics [#8672](https://github.com/rerun-io/rerun/pull/8672) - Filter entities in the UI (part 4): Add entity filtering in the blueprint tree [#8706](https://github.com/rerun-io/rerun/pull/8706) - Draw nodes above edges in graph view [#8738](https://github.com/rerun-io/rerun/pull/8738) - Filter entities in the UI (part 5): Add snapshot tests for the blueprint tree [#8728](https://github.com/rerun-io/rerun/pull/8728) - Filter entities in the UI (part 6): Refactor `re_blueprint_tree` and add more tests [#8795](https://github.com/rerun-io/rerun/pull/8795) - Improve performance for Blueprint & Streams Panel for many entities [#8808](https://github.com/rerun-io/rerun/pull/8808) - The empty/full entity icon now reflects presence of component on the current timeline [#8839](https://github.com/rerun-io/rerun/pull/8839) - Show start of large arrow values instead of just their size [#8861](https://github.com/rerun-io/rerun/pull/8861) - Implement range selection with shift-click in the blueprint tree [#8852](https://github.com/rerun-io/rerun/pull/8852) - Filter entities in the UI (part 7): Refactor and optimize `re_time_panel` and add more tests [#8863](https://github.com/rerun-io/rerun/pull/8863) - Clickable URLs in named components / `AnyValues` [#8864](https://github.com/rerun-io/rerun/pull/8864) - Implement range selection with shift-click in the time panel [#8870](https://github.com/rerun-io/rerun/pull/8870) - Improve look of bar charts slightly [#8875](https://github.com/rerun-io/rerun/pull/8875) - Improved help view [#8947](https://github.com/rerun-io/rerun/pull/8947) #### ๐Ÿ•ธ๏ธ Web - Add JS timeline control and callback APIs [#8673](https://github.com/rerun-io/rerun/pull/8673) #### โœจ Other enhancement - Remove `Chunk::iter_component_arrays` [#8548](https://github.com/rerun-io/rerun/pull/8548) - Introduce new Chunk iteration APIs [#8553](https://github.com/rerun-io/rerun/pull/8553) #### ๐Ÿ“ˆ Analytics - Add analytics for wgpu backend and whether the viewer runs in WSL [#8612](https://github.com/rerun-io/rerun/pull/8612) #### ๐Ÿ“ฆ Dependencies - Update wgpu to 24.0.0 [#8743](https://github.com/rerun-io/rerun/pull/8743) #### ๐Ÿคทโ€ Other - Introduce snapshot unit tests for `re_component_ui` [#8546](https://github.com/rerun-io/rerun/pull/8546) ## [0.21.0](https://github.com/rerun-io/rerun/compare/0.20.3...0.21.0) - Graph view, 3D Grid & UI/UX improvements ๐Ÿ“– Release blogpost: https://rerun.io/blog/graphs ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-21 ### โœจ Overview & highlights #### Graph view We've added two new logging primitives: [`GraphNodes`](https://rerun.io/docs/reference/types/archetypes/graph_nodes) and [`GraphEdges`](https://rerun.io/docs/reference/types/archetypes/graph_edges) that can be used to visualize node-link diagrams. For this, we have implemented a new Graph View that uses force-based layouts to draw graphs. This video demonstrates the main features of the new graph view: https://github.com/user-attachments/assets/77db75c9-a8d8-401d-b90d-3daf08baf0ba You can also have a look at https://github.com/rerun-io/rerun/pull/7500 if you want to learn to more. #### UX improvements This video demonstrates the main UX improvements that went into this release: https://github.com/user-attachments/assets/bef071b5-0681-41b2-9ef0-1c6a557ff138 #### 3D grid The 3D view now offers an infinite 3D grid, enabled by default. Further controls and settings are available as usual through the blueprint API and/or the selection panel.

All the nitty gritty details in https://github.com/rerun-io/rerun/pull/8230 and https://github.com/rerun-io/rerun/pull/8234. #### Undo/Redo support & many more UI/UX improvements You can now undo/redo blueprint changes in the viewer! Watch [@emilk](https://github.com/emilk/) putting it to action and explains how it works: https://github.com/user-attachments/assets/a29c099d-35a3-4d32-8946-932b5a184943 #### Other UX improvements But that's not the only thing that improved in the viewer: * Breadcrumbs show up in the selection menu now ![image](https://github.com/user-attachments/assets/c1d20eb1-f259-4b43-89d4-b9fdc75dc88c) * Take screenshots of views from context menus ![image](https://github.com/user-attachments/assets/6c50e6f0-330f-43f7-a393-65dd47aa171b) * Entities can now be dragged from Blueprint & Streams panel into views ![image](https://github.com/user-attachments/assets/493d9711-c4d1-407e-ab41-eef2e4e51ba8) #### Index of code snippets We now have a new [index for all our code snippets](./docs/snippets/INDEX.md). You can use it to quickly find copy-pastable snippets of code for any Rerun feature you're interested in (API, Archetypes, Components, etc). No special tools required -- all you need is a keyword of interest, and plain old text search. It's still the early days so it is far from perfect, but we think it can already be quite helpful; feedback welcome. Most of it is auto-generated, so it will never get out of sync! ### โš ๏ธ Breaking changes * Near clip plane for `Spatial2D` views now defaults to `0.1` in 3D scene units. * Blueprint: types and fields got renamed from `.*space_view.*`/`.*SpaceView.*` to `.*view.*`/`.*View.*`. * 3D transform arrow visualization show up less often by default. * `DisconnectedSpace` archetype/component is deprecated in favor of implicit invalid transforms (like zero scale or zero rotation matrix). * `RotationAxisAngle` with zero rotation axis is no longer treated as identity. Read our ๐Ÿงณ migration guide for more detailed information: https://rerun.io/docs/reference/migration/migration-0-21. ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - End-to-end tagging: Rust [#8304](https://github.com/rerun-io/rerun/pull/8304) - Encode `LogMsg` using protobuf [#8347](https://github.com/rerun-io/rerun/pull/8347) #### ๐ŸŒŠ C++ API - End-to-end tagging: C++ [#8316](https://github.com/rerun-io/rerun/pull/8316) #### ๐Ÿ Python API - Never direct users towards using `rr.log_components` [#8151](https://github.com/rerun-io/rerun/pull/8151) - Make it possible to log custom components using `rr.send_columns` [#8163](https://github.com/rerun-io/rerun/pull/8163) - Lint and fix python SDK `(Py)RecordingStream` upcasting issues [#8184](https://github.com/rerun-io/rerun/pull/8184) - End-to-end tagging: Python [#8298](https://github.com/rerun-io/rerun/pull/8298) - Rename space view to view everywhere [#8396](https://github.com/rerun-io/rerun/pull/8396) - Fix broken notebook loading on firefox by compressing the encoded wasm payload [#8426](https://github.com/rerun-io/rerun/pull/8426) - Add utility to `rr.components.Color` to generate colors from any string (and use it in the air traffic data example) [#8458](https://github.com/rerun-io/rerun/pull/8458) - Introduce new API to send a dataframe to Rerun [#8461](https://github.com/rerun-io/rerun/pull/8461) #### ๐Ÿฆ€ Rust API - Update MSRV to 1.80 [#8178](https://github.com/rerun-io/rerun/pull/8178) - Remove `Loggable::NAME` -- Loggables do not have any semantics [#8082](https://github.com/rerun-io/rerun/pull/8082) - Never direct users towards using `RecordingStream::log_component_batches` [#8149](https://github.com/rerun-io/rerun/pull/8149) - Rust API: be explicit about when we're using the arrow2 crate [#8194](https://github.com/rerun-io/rerun/pull/8194) - Add `from_gray16` for `DepthImage` [#8213](https://github.com/rerun-io/rerun/pull/8213) (thanks [@fawdlstty](https://github.com/fawdlstty)!) - Rust: more `impl` helpers [#8401](https://github.com/rerun-io/rerun/pull/8401) #### ๐Ÿชณ Bug fixes - Fix outlines for lines having more perceived aliasing since 0.20 [#8317](https://github.com/rerun-io/rerun/pull/8317) - Fix handling unnormalized axis for (Pose)RotationAxisAngle [#8341](https://github.com/rerun-io/rerun/pull/8341) - Fix 2D/3D view artifacts on view's border when using fractional zoom [#8369](https://github.com/rerun-io/rerun/pull/8369) #### ๐ŸŒ Viewer improvements - World grid part 1/2: add world grid renderer to `re_renderer` [#8230](https://github.com/rerun-io/rerun/pull/8230) - World grid part 2/2: Integrate into Viewer [#8234](https://github.com/rerun-io/rerun/pull/8234) - Add Undo/Redo support in the viewer [#7546](https://github.com/rerun-io/rerun/pull/7546) - Space view screenshotting in native viewer [#8258](https://github.com/rerun-io/rerun/pull/8258) - Remove selection history [#8296](https://github.com/rerun-io/rerun/pull/8296) - Make the near clipping plane editable in 2D views [#8348](https://github.com/rerun-io/rerun/pull/8348) - Don't show transform arrows on all entities without any other visualizer [#8387](https://github.com/rerun-io/rerun/pull/8387) - Do query for default components only once per view [#8424](https://github.com/rerun-io/rerun/pull/8424) - Improve hovered order in 2D views [#8405](https://github.com/rerun-io/rerun/pull/8405) - Remove wait-time when opening settings panel [#8464](https://github.com/rerun-io/rerun/pull/8464) - Deprecate `DisconnectedSpace` archetype/component in favor of implicit invalid transforms [#8459](https://github.com/rerun-io/rerun/pull/8459) - Improve graphics device capability detection, warn on old devices, early error on unsupported render targets [#8476](https://github.com/rerun-io/rerun/pull/8476) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add a new "Air Traffic Data" example [#5449](https://github.com/rerun-io/rerun/pull/5449) - Use video logging api in `detect_and_track` example [#8261](https://github.com/rerun-io/rerun/pull/8261) (thanks [@oxkitsune](https://github.com/oxkitsune)!) - Add hloc_glomap example and update manifest [#8352](https://github.com/rerun-io/rerun/pull/8352) (thanks [@pablovela5620](https://github.com/pablovela5620)!) - Introduce the Snippet Index [#8383](https://github.com/rerun-io/rerun/pull/8383) - Implement complete Graph View example [#8421](https://github.com/rerun-io/rerun/pull/8421) #### ๐Ÿ“š Docs - Update wheel build instruction [#8235](https://github.com/rerun-io/rerun/pull/8235) - Fix various doc links in SDKs [#8331](https://github.com/rerun-io/rerun/pull/8331) #### ๐Ÿ–ผ UI improvements - Implement graph components and archetypes [#7500](https://github.com/rerun-io/rerun/pull/7500) - Add support for Bezier-curve multi (self-)edges [#8256](https://github.com/rerun-io/rerun/pull/8256) - Implement incremental graph layouts [#8308](https://github.com/rerun-io/rerun/pull/8308) - Revert label background color to that in 0.19 [#8337](https://github.com/rerun-io/rerun/pull/8337) - Add selection hierarchy breadcrumbs [#8319](https://github.com/rerun-io/rerun/pull/8319) - More compact selection panel when multiple items selected [#8351](https://github.com/rerun-io/rerun/pull/8351) - Make Position2D components editable in selection panel [#8357](https://github.com/rerun-io/rerun/pull/8357) - Dynamic configuration of graph layout forces through blueprints [#8299](https://github.com/rerun-io/rerun/pull/8299) - Document legend interaction in the timeseries view help text [#8406](https://github.com/rerun-io/rerun/pull/8406) - Allow drag-and-dropping multiple containers and views in the blueprint tree [#8334](https://github.com/rerun-io/rerun/pull/8334) - Improve picking in 2D views [#8404](https://github.com/rerun-io/rerun/pull/8404) - Make our collapsing triangle thinner for more consistency with our icons [#8408](https://github.com/rerun-io/rerun/pull/8408) - Entities can be dragged from the blueprint tree and streams tree to an existing view in the viewport [#8431](https://github.com/rerun-io/rerun/pull/8431) #### ๐ŸŽจ Renderer improvements - Update egui to latest, update wgpu to 23.0.0 [#8183](https://github.com/rerun-io/rerun/pull/8183) #### โœจ Other enhancement - Improve `rrd print`'s verbosity modes [#8392](https://github.com/rerun-io/rerun/pull/8392) - Miscellaneous improvements to archetype reflection [#8432](https://github.com/rerun-io/rerun/pull/8432) - Migration kernel for the blueprint space-view-related breaking changes [#8439](https://github.com/rerun-io/rerun/pull/8439) #### ๐Ÿ—ฃ Refactors - Add arrow(1)-interface on top of `Loggable` and `ArrowBuffer` [#8197](https://github.com/rerun-io/rerun/pull/8197) - `re_types_blueprint` -> `re_types::blueprint` [#8419](https://github.com/rerun-io/rerun/pull/8419) - `re_viewer::reflection` -> `re_types::reflection` [#8420](https://github.com/rerun-io/rerun/pull/8420) #### ๐Ÿ“ฆ Dependencies - Numpy 2.0 allowed in pyproject.toml [#8306](https://github.com/rerun-io/rerun/pull/8306) (thanks [@Ipuch](https://github.com/Ipuch)!) - Upgrade to egui 0.30 (+ ecosystem) [#8516](https://github.com/rerun-io/rerun/pull/8516) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Add `MainThreadToken` to ensure file-dialogs only run on the main thread [#8467](https://github.com/rerun-io/rerun/pull/8467) #### ๐Ÿคทโ€ Other - Deprecate `--serve`, add `--serve-web` [#8144](https://github.com/rerun-io/rerun/pull/8144) - Clean up pass over all superfluous hashing happening on the query path [#8207](https://github.com/rerun-io/rerun/pull/8207) - Improve performance of time panel [#8224](https://github.com/rerun-io/rerun/pull/8224) ## [0.20.3](https://github.com/rerun-io/rerun/compare/0.20.2...0.20.3) - Web viewer fix ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Fix web viewer feature flags [#8295](https://github.com/rerun-io/rerun/pull/8295) ## [0.20.2](https://github.com/rerun-io/rerun/compare/0.20.1...0.20.2) - Build fix ### ๐Ÿ”Ž Details #### ๐Ÿชณ Bug fixes - Fix a drag-and-drop display regression [#8228](https://github.com/rerun-io/rerun/pull/8228) #### ๐Ÿ“š Docs - Add `map_view` to the default features and improve how the `nasm` feature is handled and documented [#8243](https://github.com/rerun-io/rerun/pull/8243) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Gracefully handle `cargo-metadata` failures in users' environments [#8239](https://github.com/rerun-io/rerun/pull/8239) ## [0.20.1](https://github.com/rerun-io/rerun/compare/0.20.0...0.20.1) - Doc fix - Fix doc build - run `cargo metadata` with `--offline` & `--no-deps` [#8168](https://github.com/rerun-io/rerun/pull/8168) ## [0.20.0](https://github.com/rerun-io/rerun/compare/0.19.1...0.20.0) - Map view & native H.264 video support https://github.com/user-attachments/assets/553b6d88-143d-4cf9-a4bc-6b620534ab95 ๐Ÿ“– Release blogpost: https://rerun.io/blog/maps ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-20 ### โœจ Overview & highlights * ๐Ÿ—บ๏ธ There is now an map view! * ๐ŸŽฌ Native viewer now supports H.264 video if ffmpeg is installed. * ๐Ÿ“ฝ๏ธ Videos now load a lot faster use less RAM. * ๐Ÿ“‚ Improvements to the existing `Open` (Viewer) & `log_file` (SDK) workflows, and addition of a new `Import` workflow. * Blueprints can now easily be [re-used across different applications, recordings and SDKs](https://rerun.io/docs/concepts/visualization/blueprints) * The new `Import` feature allows you to drag-and-drop any data into an existing recording, directly in the viewer. * โ˜ฐ Dataframe queries are now streamed, reducing memory usage. * ๐Ÿ’Š Add [capsule archetype](https://rerun.io/docs/reference/types/archetypes/capsules3d). * ๐Ÿ“š Doc improvements * Arrow schemas are now documented for all types. * Better structure to the [how to](https://rerun.io/docs/howto) section and a few more pages ### โš ๏ธ Breaking changes & deprecations * ๐Ÿ Python 3.8 is being deprecated * ๐Ÿ”Œ `connect` & `serve` got deprecated in favor of `connect_tcp` & `serve_web` * ๐ŸŽจ In Python, lists of numbers without type information are now assumed to be packed integer color representations, unless the length is exactly 3 or 4 ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-20 ### ๐Ÿ”Ž Details #### ๐ŸŽฌ Video - Support H.264 video on native via user installed ffmpeg executable [#7962](https://github.com/rerun-io/rerun/pull/7962) - Make mp4 parsing **a lot** faster & tremendously lower memory overhead [#7860](https://github.com/rerun-io/rerun/pull/7860) - Fix playback of HDR AV1 videos in native viewer [#7978](https://github.com/rerun-io/rerun/pull/7978) - Show all samples/frames in a video in a nice table [#8102](https://github.com/rerun-io/rerun/pull/8102) - Calculate and show video frame number [#8112](https://github.com/rerun-io/rerun/pull/8112) - Expose basic information about group of pictures in video data in the selection panel [#8043](https://github.com/rerun-io/rerun/pull/8043) - Fix some videos having offsetted (incorrect) timestamps [#8029](https://github.com/rerun-io/rerun/pull/8029) - Fix video backward seeking / stepping back sometimes getting stuck (in the presence of b-frames) [#8053](https://github.com/rerun-io/rerun/pull/8053) - Make sure videos all end up in different space views [#8085](https://github.com/rerun-io/rerun/pull/8085) - Fix video on web sometimes not showing last few frames for some videos [#8117](https://github.com/rerun-io/rerun/pull/8117) - Fix issues with seeking in some H.264 videos on native & web [#8111](https://github.com/rerun-io/rerun/pull/8111) - Fix view creation heuristics for videos [#7869](https://github.com/rerun-io/rerun/pull/7869) - Improve video doc page [#8007](https://github.com/rerun-io/rerun/pull/8007) - Update re_mp4 to fix integer overflow bug [#8096](https://github.com/rerun-io/rerun/pull/8096) #### ๐Ÿชต Log API - Add `Capsules3D` archetype [#7574](https://github.com/rerun-io/rerun/pull/7574) (thanks [@kpreid](https://github.com/kpreid)!) - `rr.log_file_from_path` now defaults to the active app/recording ID [#7864](https://github.com/rerun-io/rerun/pull/7864) - Allow overriding albedo color on `Asset3D` [#7458](https://github.com/rerun-io/rerun/pull/7458) (thanks [@EtaLoop](https://github.com/EtaLoop)!) - `rr.serve` -> `rr.serve_web`, `rr.connect` -> `rr.connect_tcp` [#7906](https://github.com/rerun-io/rerun/pull/7906) #### ๐ŸŒŠ C++ API - C++: Improve error message when finding X11 macro `Unsorted` [#7855](https://github.com/rerun-io/rerun/pull/7855) - Forward `CMAKE_TOOLCHAIN_FILE` to arrow build for sdk cross-compilation [#7866](https://github.com/rerun-io/rerun/pull/7866) (thanks [@SunDoge](https://github.com/SunDoge)!) - Update the python package to support python 3.13, update C++ arrow to 18.0.0 [#7930](https://github.com/rerun-io/rerun/pull/7930) #### ๐Ÿ Python API - Allow passing seconds/nanoseconds to `VideoFrameReference` archetype [#7833](https://github.com/rerun-io/rerun/pull/7833) - Officially deprecate support for python 3.8 [#7933](https://github.com/rerun-io/rerun/pull/7933) - Update the python package to support python 3.13, update C++ arrow to 18.0.0 [#7930](https://github.com/rerun-io/rerun/pull/7930) - Remove the upper bound constraint on python version [#7949](https://github.com/rerun-io/rerun/pull/7949) - Enable dataframe streaming across Python FFI [#7935](https://github.com/rerun-io/rerun/pull/7935) - Fix python SDK's shutdown unsafely dropping cross-FFI resources [#8038](https://github.com/rerun-io/rerun/pull/8038) - Improve edge-cases and warn on ambiguity for Rgba32 datatype [#8054](https://github.com/rerun-io/rerun/pull/8054) - Check rerun notebook version on first import [#8030](https://github.com/rerun-io/rerun/pull/8030) #### ๐Ÿฆ€ Rust API - Allow logging individual components directly (Impl `AsComponents` for all `ObjectKind::Component`) [#7756](https://github.com/rerun-io/rerun/pull/7756) (thanks [@oxkitsune](https://github.com/oxkitsune)!) - `re_query::Caches` -> `re_query::QueryCache` [#7915](https://github.com/rerun-io/rerun/pull/7915) #### ๐Ÿชณ Bug fixes - [bugfix] Make sure blueprint gets sent to the notebook view being created [#7811](https://github.com/rerun-io/rerun/pull/7811) - Fix too short picking ray in pinhole-only scenarios [#7899](https://github.com/rerun-io/rerun/pull/7899) - Update zune-jpeg to fix crash on bad JPEGs [#7952](https://github.com/rerun-io/rerun/pull/7952) - Consistent open/import/log_file behaviors in all common scenarios [#7966](https://github.com/rerun-io/rerun/pull/7966) - ChunkStore: fix row-id computation when removing dangling static chunks [#8020](https://github.com/rerun-io/rerun/pull/8020) - `EntityTree`: only check for entity deletions when necessary [#8103](https://github.com/rerun-io/rerun/pull/8103) - WebSocket server now indefinitely keeps track of non-data RPC commands [#8146](https://github.com/rerun-io/rerun/pull/8146) #### ๐ŸŒ Viewer improvements - A Rerun Viewer session now matches 1:1 to a Rerun TCP server [#6951](https://github.com/rerun-io/rerun/pull/6951) (thanks [@petertheprocess](https://github.com/petertheprocess)!) - Implement support for in-place drag-n-drop [#7880](https://github.com/rerun-io/rerun/pull/7880) - Implement `Menu > Import` and associated command [#7882](https://github.com/rerun-io/rerun/pull/7882) - Expose additional information about decoded frames in the viewer [#7932](https://github.com/rerun-io/rerun/pull/7932) - Update crates, including `rfd` for better file dialogs [#7953](https://github.com/rerun-io/rerun/pull/7953) - Line strips are no longer a disconnected series of quads [#8065](https://github.com/rerun-io/rerun/pull/8065) - Show data density graph in collapsed time panel [#8137](https://github.com/rerun-io/rerun/pull/8137) - Show the root entity "/" in the streams panel [#8142](https://github.com/rerun-io/rerun/pull/8142) #### ๐Ÿš€ Performance improvements - Don't keep around additional CPU copy of loaded mesh files [#7824](https://github.com/rerun-io/rerun/pull/7824) - Make mp4 parsing **a lot** faster & tremendously lower memory overhead [#7860](https://github.com/rerun-io/rerun/pull/7860) - Fix slow receive when using native WebSocket [#7875](https://github.com/rerun-io/rerun/pull/7875) - Implement support for fully asynchronous `QueryHandle`s [#7964](https://github.com/rerun-io/rerun/pull/7964) #### ๐Ÿง‘โ€๐Ÿซ Examples - Fix Rust DNA sample writing to a temporary file [#7827](https://github.com/rerun-io/rerun/pull/7827) - Add `ml_depth_pro` example [#7832](https://github.com/rerun-io/rerun/pull/7832) (thanks [@oxkitsune](https://github.com/oxkitsune)!) - Add map view to nuscenes python example [#8034](https://github.com/rerun-io/rerun/pull/8034) (thanks [@tfoldi](https://github.com/tfoldi)!) - Add an example to display OpenStreetMap-sourced data on the map view [#8044](https://github.com/rerun-io/rerun/pull/8044) - Improve NuScenes example with more geo data & blueprint [#8130](https://github.com/rerun-io/rerun/pull/8130) #### ๐Ÿ“š Docs - Clarify viewport documentation and reference the type list for view classes [#7826](https://github.com/rerun-io/rerun/pull/7826) - Finish dataframe reference page [#7865](https://github.com/rerun-io/rerun/pull/7865) - Docs: static data [#7856](https://github.com/rerun-io/rerun/pull/7856) - Docs: concepts > recordings [#7896](https://github.com/rerun-io/rerun/pull/7896) - Docs: "How-to: reuse blueprints across languages" [#7886](https://github.com/rerun-io/rerun/pull/7886) - Docs: application model part 1: native workflows [#7905](https://github.com/rerun-io/rerun/pull/7905) - Document arrow datatypes [#7986](https://github.com/rerun-io/rerun/pull/7986) #### ๐Ÿ–ผ UI improvements - Map View and `GeoPoints` archetype [#6561](https://github.com/rerun-io/rerun/pull/6561) (thanks [@tfoldi](https://github.com/tfoldi)!) - Replace the "Options" submenu with a settings screen [#8001](https://github.com/rerun-io/rerun/pull/8001) - Improve error message style slightly [#8092](https://github.com/rerun-io/rerun/pull/8092) - Much nicer looking error and warning messages [#8127](https://github.com/rerun-io/rerun/pull/8127) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Show list of enabled features with `rerun --version` [#7885](https://github.com/rerun-io/rerun/pull/7885) [#8095](https://github.com/rerun-io/rerun/pull/8095) #### ๐Ÿ“ฆ Dependencies - Bump numpy -> 0.23, pyo3 -> 0.22.5, and arrow -> 53.1 [#7834](https://github.com/rerun-io/rerun/pull/7834) #### ๐Ÿคทโ€ Other - Implement safe storage handles [#7934](https://github.com/rerun-io/rerun/pull/7934) ## [0.19.1](https://github.com/rerun-io/rerun/compare/0.19.0..0.19.1) - Web viewer fix This release fixes an error thrown when the web viewer is closed. ### ๐Ÿ”Ž Details #### ๐Ÿ•ธ๏ธ Web - Fix wasm-bindgen patch [#7970](https://github.com/rerun-io/rerun/pull/7970) #### ๐Ÿ“ฆ Dependencies - Add wasm-bindgen version check to CI [#7983](https://github.com/rerun-io/rerun/pull/7983) ## [0.19.0](https://github.com/rerun-io/rerun/compare/0.18.2...0.19.0) - Dataframes & Video support ๐Ÿ“– Release blogpost: https://rerun.io/blog/dataframe ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-19 ### โœจ Overview & highlights This release introduces two powerful features: a dataframe API (and view), as well as video support. #### โ˜ฐ Dataframe API We now have an API for querying the contents of an .rrd file. This integrates with popular packages such as [Pandas](https://pandas.pydata.org), [Polars](https://pola.rs), and [DuckDB](https://duckdb.org). You can read more in [the Dataframe API how-to guide](https://rerun.io/docs/howto/query-and-transform/get-data-out). We have also added a matching dataframe view inside the Rerun Viewer. Read more [here](https://rerun.io/docs/reference/types/views/dataframe_view). #### ๐ŸŽฌ Video Rerun now supports logging MP4 videos using the new [`AssetVideo`](https://rerun.io/docs/reference/types/archetypes/asset_video) archetype. This can greatly reduce bandwidth and storage requirements. While the web viewer supports a variety of codecs, the native viewer supports only the AV1 codec for the moment, but we plan to support H.264 in the near future as well. Read more about our video supports (and its limits) [in our video docs](https://rerun.io/docs/concepts/logging-and-ingestion/video). ### โš ๏ธ Breaking changes * ๐Ÿ—พ Blueprint files (.rbl) from previous Rerun versions will no longer load _automatically_ * ๐Ÿง Linux: Rerun now requires glibc 2.17+ * ๐Ÿฆ€ Rust: The minimum supported Rust version is now 1.79 ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-19 ### ๐Ÿ”Ž Details ๐Ÿ“‘ Raw changelog: https://github.com/rerun-io/rerun/compare/0.18.2...0.19.0 #### ๐Ÿชต Log API - BGR(A) image format support [#7238](https://github.com/rerun-io/rerun/pull/7238) - Tensor & depth image value ranges can now be configured, from UI & code [#7549](https://github.com/rerun-io/rerun/pull/7549) - New planar pixel formats: `Y_U_V24`/`Y_U_V16`/`Y_U_V12` - `_LimitedRange`/`FullRange` [#7666](https://github.com/rerun-io/rerun/pull/7666) - Add `ShowLabels` component, which controls whether instancesโ€™ labels are shown [#7249](https://github.com/rerun-io/rerun/pull/7249) (thanks [@kpreid](https://github.com/kpreid)!) - Refactor `MediaType` guessing [#7326](https://github.com/rerun-io/rerun/pull/7326) #### ๐ŸŒŠ C++ API - Add `nullptr` check when forwarding from component to datatype [#7430](https://github.com/rerun-io/rerun/pull/7430) #### ๐Ÿ Python API - Add missing `show_labels` and `draw_order` arguments in Python API [#7363](https://github.com/rerun-io/rerun/pull/7363) (thanks [@kpreid](https://github.com/kpreid)!) - Allow logging to a recording without first calling `rr.init()` [#7698](https://github.com/rerun-io/rerun/pull/7698) - Add support for NumPy arrays to the arrow serializer for string datatypes [#7689](https://github.com/rerun-io/rerun/pull/7689) #### ๐Ÿฆ€ Rust API - Update MSRV to Rust 1.79 [#7563](https://github.com/rerun-io/rerun/pull/7563) - Update ndarray to 0.16 and ndarray-rand to 0.15 [#7358](https://github.com/rerun-io/rerun/pull/7358) (thanks [@benliepert](https://github.com/benliepert)!) - Replace `host_web_viewer` method with `WebViewerConfig::host_web_viewer` [#7553](https://github.com/rerun-io/rerun/pull/7553) - Fix Rust's `TimeColumn::new_seconds/new_nanos` creating sequence timelines [#7402](https://github.com/rerun-io/rerun/pull/7402) #### ๐Ÿชณ Bug fixes - Purge the query cache to prevent GC livelocks [#7370](https://github.com/rerun-io/rerun/pull/7370) - Bug fix: always show latest data in follow-mode [#7425](https://github.com/rerun-io/rerun/pull/7425) - Fix encoded image being suggested for non-image blobs (like video) [#7428](https://github.com/rerun-io/rerun/pull/7428) - Chunk store: support for overlapped range queries [#7586](https://github.com/rerun-io/rerun/pull/7586) - Fix image & video cache creating new entries when selecting data without explicit media type [#7590](https://github.com/rerun-io/rerun/pull/7590) #### ๐ŸŒ Viewer improvements - The viewer will tail an .rrd that's is being written to [#7475](https://github.com/rerun-io/rerun/pull/7475) - Native video support for AV1 [#7557](https://github.com/rerun-io/rerun/pull/7557) - Allow splitting entity path expressions with whitespace [#7782](https://github.com/rerun-io/rerun/pull/7782) #### ๐Ÿš€ Performance improvements - Improve performance for scenes with many entities & transforms [#7456](https://github.com/rerun-io/rerun/pull/7456) - `Caches` per recording [#7513](https://github.com/rerun-io/rerun/pull/7513) - Automatic removal of unreachable static chunks [#7518](https://github.com/rerun-io/rerun/pull/7518) - Invalidate hub-wide caches on deletions and overwrites [#7525](https://github.com/rerun-io/rerun/pull/7525) - Do not cache static entries in the query-time latest-at cache [#7654](https://github.com/rerun-io/rerun/pull/7654) - Make sure Arrow `filter` and `take` kernels early out where it makes sense [#7704](https://github.com/rerun-io/rerun/pull/7704) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add drone LiDAR example [#7336](https://github.com/rerun-io/rerun/pull/7336) - Add `instant_splat` example [#7751](https://github.com/rerun-io/rerun/pull/7751) (thanks [@pablovela5620](https://github.com/pablovela5620)!) #### ๐Ÿ“š Docs - Add video reference docs [#7533](https://github.com/rerun-io/rerun/pull/7533) - Document that Rerun does not support left-handed coords [#7690](https://github.com/rerun-io/rerun/pull/7690) - Add a How-to guide for the dataframe API [#7727](https://github.com/rerun-io/rerun/pull/7727) - Docs: move "roadmap" down to "development" [#7775](https://github.com/rerun-io/rerun/pull/7775) - Add a "Getting started" guide for the dataframe API [#7643](https://github.com/rerun-io/rerun/pull/7643) - Docs: clean up reference menu [#7776](https://github.com/rerun-io/rerun/pull/7776) - Updating "Navigating the viewer" [#7757](https://github.com/rerun-io/rerun/pull/7757) #### ๐Ÿ–ผ UI improvements - Add a hook for views to add additional UI in the tab title bar [#7438](https://github.com/rerun-io/rerun/pull/7438) - Text fields in the selection panel now span the available width [#7487](https://github.com/rerun-io/rerun/pull/7487) - Do not deselect on ESC when it was used to close some other UI element [#7548](https://github.com/rerun-io/rerun/pull/7548) - Add UI for precisely picking an exact sequence time [#7673](https://github.com/rerun-io/rerun/pull/7673) - Remove the feature flag for plot query clamping [#7664](https://github.com/rerun-io/rerun/pull/7664) #### ๐ŸŽจ Renderer improvements - Introduce image data conversion pipeline, taking over existing YUV conversions [#7640](https://github.com/rerun-io/rerun/pull/7640) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Add a command palette action to reset egui's memory (debug build only) [#7446](https://github.com/rerun-io/rerun/pull/7446) - Add NOLINT block to `lint.py` [#7720](https://github.com/rerun-io/rerun/pull/7720) ## [0.18.2](https://github.com/rerun-io/rerun/compare/0.18.1...0.18.2) - Even more bug fixes - Update `time` crate to 0.3.36, fixing compilation on newer Rust versions [#7308](https://github.com/rerun-io/rerun/pull/7308) ## [0.18.1](https://github.com/rerun-io/rerun/compare/0.18.0...0.18.1) - Bug fixes and performance improvements #### ๐ŸŒŠ C++ API - Install `sdk_info.h` even if `RERUN_INSTALL_RERUN_C` option is `OFF` [#7246](https://github.com/rerun-io/rerun/pull/7246) (thanks [@traversaro](https://github.com/traversaro)!) #### ๐Ÿ Python API - Fix `VisualizerOverrides` serializer and improved error handling [#7288](https://github.com/rerun-io/rerun/pull/7288) #### ๐Ÿฆ€ Rust API - Add `rerun::external::ndarray` [#7259](https://github.com/rerun-io/rerun/pull/7259) - Handle proper half-size splatting semantics in `from_mins_and_sizes` [#7291](https://github.com/rerun-io/rerun/pull/7291) #### ๐Ÿชณ Bug fixes - Fix error when trying to clear non-existent component [#7215](https://github.com/rerun-io/rerun/pull/7215) - Fix gamma (srgb EOTF) for GLTF via `Asset3D` embedded rgb(a) textures [#7251](https://github.com/rerun-io/rerun/pull/7251) - Fix `Chunk::component_batch_raw` not checking the bitmap first [#7286](https://github.com/rerun-io/rerun/pull/7286) - Fix and test all known `HybridResults` issues from 0.18 [#7297](https://github.com/rerun-io/rerun/pull/7297) - Fix secondary plot components ignoring blueprint defaults [#7302](https://github.com/rerun-io/rerun/pull/7302) - Fix relayout on tab background click [#7283](https://github.com/rerun-io/rerun/pull/7283) #### ๐Ÿš€ Performance improvements - Speed up data density graph by rendering them more coarsly [#7229](https://github.com/rerun-io/rerun/pull/7229) - Default `RERUN_CHUNK_MAX_BYTES` to 384kiB instead of 4MiB [#7263](https://github.com/rerun-io/rerun/pull/7263) - Speed up handling of large numbers of transform entities [#7300](https://github.com/rerun-io/rerun/pull/7300) - Fix memory leak by updating to `re_arrow2 0.17.5` [#7262](https://github.com/rerun-io/rerun/pull/7262) #### ๐Ÿ–ผ UI improvements - Hide time controls if there is only one time point on a timeline [#7241](https://github.com/rerun-io/rerun/pull/7241) #### ๐Ÿ“ฆ Dependencies - Correct dependency on `puffin` to 0.19.1, preventing a possible build failure [#7221](https://github.com/rerun-io/rerun/pull/7221) (thanks [@kpreid](https://github.com/kpreid)!) - Update `time` crate to 0.3.36, fixing compilation on newer Rust versions [#7228](https://github.com/rerun-io/rerun/pull/7228) ## [0.18.0](https://github.com/rerun-io/rerun/compare/0.17.0...0.18.0) - Ingestion speed and memory footprint https://github.com/user-attachments/assets/95380a64-df05-4f85-b40a-0c6b8ec8d5cf * ๐Ÿ“– Release blogpost: https://rerun.io/blog/column-chunks * ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-18 ### โœจ Overview & highlights Rerun 0.18 introduces new column-oriented APIs and internal storage datastructures (`Chunk` & `ChunkStore`) that can both simplify logging code as well as improve ingestion speeds and memory overhead by a couple orders of magnitude in many cases (timeseries-heavy workloads in particular). These improvements come in 3 broad categories: * a new `send` family of APIs, available in all 3 SDKs (Python, C++, Rust), * a new, configurable background compaction mechanism in the datastore, * new CLI tools to filter, prune and compact RRD files. Furthermore, we started cleaning up our data schema, leading to various changes in the way represent transforms & images. #### New `send` APIs Unlike the regular row-oriented `log` APIs, the new `send` APIs let you submit data in a columnar form, even if the data extends over multiple timestamps. This can both greatly simplify logging code and drastically improve performance for some workloads, in particular timeseries, [although we have already seen it used for other purposes](https://github.com/rerun-io/rerun/pull/7155)! API documentation: * ๐Ÿ [Python `send_columns` docs](https://ref.rerun.io/docs/python/stable/common/columnar_api/#rerun.send_columns) * ๐ŸŒŠ [C++ `send_columns` docs](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#ad17571d51185ce2fc2fc2f5c3070ad65) * ๐Ÿฆ€ [Rust `send_columns` docs](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.send_columns) API usage examples:
Python timeseries Using `log()` (slow, memory inefficient): ```python rr.init("rerun_example_scalar", spawn=True) for step in range(0, 64): rr.set_time_sequence("step", step) rr.log("scalar", rr.Scalars(math.sin(step / 10.0))) ``` Using `send()` (fast, memory efficient): ```python rr.init("rerun_example_send_columns", spawn=True) rr.send_columns( "scalars", indexes=[rr.TimeSequenceColumn("step", np.arange(0, 64))], components=[rr.components.ScalarBatch(np.sin(times / 10.0))], ) ```
C++ timeseries Using `log()` (slow, memory inefficient): ```c++ const auto rec = rerun::RecordingStream("rerun_example_scalar"); rec.spawn().exit_on_failure(); for (int step = 0; step < 64; ++step) { rec.set_time_sequence("step", step); rec.log("scalar", rerun::Scalar(std::sin(static_cast(step) / 10.0))); } ``` Using `send()` (fast, memory efficient): ```c++ const auto rec = rerun::RecordingStream("rerun_example_send_columns"); rec.spawn().exit_on_failure(); std::vector scalar_data(64); for (size_t i = 0; i < 64; ++i) { scalar_data[i] = sin(static_cast(i) / 10.0); } std::vector times(64); std::iota(times.begin(), times.end(), 0); auto time_column = rerun::TimeColumn::from_sequence_points("step", std::move(times)); auto scalar_data_collection = rerun::Collection(std::move(scalar_data)); rec.send_columns("scalars", time_column, scalar_data_collection); ```
Rust timeseries Using `log()` (slow, memory inefficient): ```rust let rec = rerun::RecordingStreamBuilder::new("rerun_example_scalar").spawn()?; for step in 0..64 { rec.set_time_sequence("step", step); rec.log("scalar", &rerun::Scalars::new((step as f64 / 10.0).sin()))?; } ``` Using `send()` (fast, memory efficient): ```rust let rec = rerun::RecordingStreamBuilder::new("rerun_example_send_columns").spawn()?; let timeline_values = (0..64).collect::>(); let scalar_data: Vec = timeline_values .iter() .map(|step| (*step as f64 / 10.0).sin()) .collect(); let timeline_values = TimeColumn::new_sequence("step", timeline_values); let scalar_data: Vec = scalar_data.into_iter().map(Into::into).collect(); rec.send_columns("scalars", [timeline_values], [&scalar_data as _])?; ```
#### Background compaction The Rerun datastore now continuously compacts data as it comes in, in order find a sweet spot between ingestion speed, query performance and memory overhead. This is very similar to, and has many parallels with, the [micro-batching mechanism running on the SDK side](https://rerun.io/docs/reference/sdk/micro-batching). You can read more about this in the [dedicated documentation entry](https://rerun.io/docs/reference/store-compaction). #### Post-processing of RRD files To help improve efficiency for completed recordings, Rerun 0.18 introduces some new commands for working with rrd files. Multiple files can be merged, whole entity paths can be dropped, and chunks can be compacted. You can read more about it [in the new CLI reference manual](https://rerun.io/docs/reference/cli), but to give a sense of how it works the below example merges all recordings in a folder and runs chunk compaction using the `max-rows` and `max-bytes` settings: ```sh rerun rrd compact --max-rows 4096 --max-bytes=1048576 /my/recordings/*.rrd > output.rrd ``` #### Overhauled 3D transforms & instancing As part of improving our arrow schema and in preparation for reading data back in the SDK, we've split up transforms into several parts. This makes it much more performant to log large number of transforms as it allows updating only the parts you're interested in, e.g. logging a translation is now as lightweight as logging a single position. There are now additionally [`InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d) which allow you to do two things: * all 3D entities: apply a transform to the entity without affecting its children * [`Mesh3D`](https://rerun.io/docs/reference/types/archetypes/mesh3d)/[`Asset3D`](https://rerun.io/docs/reference/types/archetypes/asset3d)/[`Boxes3D`](https://rerun.io/docs/reference/types/archetypes/boxes3d)/[`Ellipsoids3D`](https://rerun.io/docs/reference/types/archetypes/ellipsoids3d): instantiate objects several times with different poses, known as "instancing" * Support for instancing of other archetypes is coming in the future! ![instancing in action](https://static.rerun.io/mesh3d_leaf_transforms3d/c2d0ee033129da53168f5705625a9b033f3a3d61/1200w.png) _All four tetrahedron meshes on this screen share the same vertices and are instanced using an [`InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d) archetype with 4 different translations_ ### โš ๏ธ Breaking changes * `.rrd` files from older versions won't load correctly in Rerun 0.18 * `mesh_material: Material` has been renamed to `albedo_factor: AlbedoFactor` [#6841](https://github.com/rerun-io/rerun/pull/6841) * [`Transform3D`](https://rerun.io/docs/reference/types/archetypes/transform3d) is no longer a single component but split into its constituent parts. From this follow various smaller API changes * Python: `NV12/YUY2` are now logged with `Image` * `ImageEncoded` is deprecated and replaced with [`EncodedImage`](https://rerun.io/docs/reference/types/archetypes/encoded_image) (JPEG, PNG, โ€ฆ) and [`Image`](https://rerun.io/docs/reference/types/archetypes/image) (NV12, YUY2, โ€ฆ) * [`DepthImage`](https://rerun.io/docs/reference/types/archetypes/depth_image) and [`SegmentationImage`](https://rerun.io/docs/reference/types/archetypes/segmentation_image) are no longer encoded as a tensors, and expects its shape in `[width, height]` order ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-18 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Add `Ellipsoids3D` archetype [#6853](https://github.com/rerun-io/rerun/pull/6853) (thanks [@kpreid](https://github.com/kpreid)!) - Dont forward datatype extensions beyond the FFI barrier [#6777](https://github.com/rerun-io/rerun/pull/6777) - All components are now consistently implemented by a datatype [#6823](https://github.com/rerun-io/rerun/pull/6823) - Add new `archetypes.ImageEncoded` with PNG and JPEG support [#6874](https://github.com/rerun-io/rerun/pull/6874) - New transform components: `Translation3D` & `TransformMat3x3` [#6866](https://github.com/rerun-io/rerun/pull/6866) - Add Scale3D component [#6892](https://github.com/rerun-io/rerun/pull/6892) - Angle datatype stores now only radians [#6916](https://github.com/rerun-io/rerun/pull/6916) - New `DepthImage` archetype [#6915](https://github.com/rerun-io/rerun/pull/6915) - Port `SegmentationImage` to the new image archetype style [#6928](https://github.com/rerun-io/rerun/pull/6928) - Add components for `RotationAxisAngle` and `RotationQuat` [#6929](https://github.com/rerun-io/rerun/pull/6929) - Introduce `TransformRelation` component [#6944](https://github.com/rerun-io/rerun/pull/6944) - New `LeafTransform3D`, replacing `OutOfTreeTransform3D` [#7015](https://github.com/rerun-io/rerun/pull/7015) - Remove `Scale3D`/`Transform3D`/`TranslationRotationScale3D` datatypes, remove `Transform3D` component [#7000](https://github.com/rerun-io/rerun/pull/7000) - Rewrite `Image` archetype [#6942](https://github.com/rerun-io/rerun/pull/6942) - Use `LeafTranslation` (centers), `LeafRotationQuat` and `LeafRotationAxisAngle` directly on `Boxes3D`/`Ellipsoids3D` [#7029](https://github.com/rerun-io/rerun/pull/7029) - Removed now unused `Rotation3D` component & datatype [#7030](https://github.com/rerun-io/rerun/pull/7030) - Introduce new ImageFormat component [#7083](https://github.com/rerun-io/rerun/pull/7083) #### ๐ŸŒŠ C++ API - Fix resetting time destroying recording stream [#6914](https://github.com/rerun-io/rerun/pull/6914) - Improve usability of `rerun::Collection` by providing free functions for `borrow` & `take_ownership` [#7055](https://github.com/rerun-io/rerun/pull/7055) - Fix crash on shutdown when using global recording stream variables in C++ [#7063](https://github.com/rerun-io/rerun/pull/7063) - C++ API for `send_columns` [#7103](https://github.com/rerun-io/rerun/pull/7103) - Add numeric SDK version macros to C/C++ [#7127](https://github.com/rerun-io/rerun/pull/7127) #### ๐Ÿ Python API - New temporal batch APIs [#6587](https://github.com/rerun-io/rerun/pull/6587) - Python SDK: Rename `ImageEncoded` to `ImageEncodedHelper` [#6882](https://github.com/rerun-io/rerun/pull/6882) - Introduce `ImageChromaDownsampled` [#6883](https://github.com/rerun-io/rerun/pull/6883) - Allow logging batches of quaternions from numpy arrays [#7038](https://github.com/rerun-io/rerun/pull/7038) - Add `__version__` and `__version_info__` to rerun package [#7104](https://github.com/rerun-io/rerun/pull/7104) - Restore support for the legacy notebook mechanism from 0.16 [#7122](https://github.com/rerun-io/rerun/pull/7122) #### ๐Ÿฆ€ Rust API - Recommend install rerun-cli with `--locked` [#6868](https://github.com/rerun-io/rerun/pull/6868) - Remove `TensorBuffer::JPEG`, `DecodedTensor`, `TensorDecodeCache` [#6884](https://github.com/rerun-io/rerun/pull/6884) #### ๐Ÿชณ Bug fixes - Respect 0.0 for start and end boundaries of scalar axis [#6887](https://github.com/rerun-io/rerun/pull/6887) (thanks [@amidabucu](https://github.com/amidabucu)!) - Fix text log/document view icons [#6855](https://github.com/rerun-io/rerun/pull/6855) - Fix outdated use of view coordinates in `Spaces and Transforms` doc page [#6955](https://github.com/rerun-io/rerun/pull/6955) - Fix zero length transform axis having an effect bounding box used for heuristics etc [#6967](https://github.com/rerun-io/rerun/pull/6967) - Disambiguate plot labels with multiple entities ending with the same part [#7140](https://github.com/rerun-io/rerun/pull/7140) - `rerun rrd compact`: always put blueprints at the start of the recordings [#6998](https://github.com/rerun-io/rerun/pull/6998) - Fix 2D objects in 3D affecting bounding box and thus causing flickering of automatic pinhole plane distance [#7176](https://github.com/rerun-io/rerun/pull/7176) - Fix a UI issue where a visualiser would have both an override and default set for some component [#7206](https://github.com/rerun-io/rerun/pull/7206) #### ๐ŸŒ Viewer improvements - Add cyan to yellow colormap [#7001](https://github.com/rerun-io/rerun/pull/7001) (thanks [@rasmusgo](https://github.com/rasmusgo)!) - Add optional solid/filled (triangle mesh) rendering to `Boxes3D` and `Ellipsoids` [#6953](https://github.com/rerun-io/rerun/pull/6953) (thanks [@kpreid](https://github.com/kpreid)!) - Improve bounding box based heuristics [#6791](https://github.com/rerun-io/rerun/pull/6791) - Time panel chunkification [#6934](https://github.com/rerun-io/rerun/pull/6934) - Integrate new data APIs with EntityDb/UI/Blueprint things [#6994](https://github.com/rerun-io/rerun/pull/6994) - Chunkified text-log view with multi-timeline display [#7027](https://github.com/rerun-io/rerun/pull/7027) - Make the recordings panel resizable [#7180](https://github.com/rerun-io/rerun/pull/7180) #### ๐Ÿš€ Performance improvements - Optimize large point clouds [#6767](https://github.com/rerun-io/rerun/pull/6767) - Optimize data clamping in spatial view [#6870](https://github.com/rerun-io/rerun/pull/6870) - Add `--blueprint` to `plot_dashboard_stress` [#6996](https://github.com/rerun-io/rerun/pull/6996) - Add `Transformables` subscriber for improved `TransformContext` perf [#6997](https://github.com/rerun-io/rerun/pull/6997) - Optimize gap detector on dense timelines, like `log_tick` [#7082](https://github.com/rerun-io/rerun/pull/7082) - Re-enable per-series parallelism [#7110](https://github.com/rerun-io/rerun/pull/7110) - Query: configurable timeline|component eager slicing [#7112](https://github.com/rerun-io/rerun/pull/7112) - Optimize out unnecessary sorts in line series visualizer [#7129](https://github.com/rerun-io/rerun/pull/7129) - Implement timeseries query clamping [#7133](https://github.com/rerun-io/rerun/pull/7133) - Chunks: - Implement ChunkStore and integrate it everywhere [#6570](https://github.com/rerun-io/rerun/pull/6570) - `Chunk` concatenation primitives [#6857](https://github.com/rerun-io/rerun/pull/6857) - Implement on-write `Chunk` compaction [#6858](https://github.com/rerun-io/rerun/pull/6858) - CLI command for compacting recordings [#6860](https://github.com/rerun-io/rerun/pull/6860) - CLI command for merging recordings [#6862](https://github.com/rerun-io/rerun/pull/6862) - `ChunkStore`: implement new component-less indices and APIs [#6879](https://github.com/rerun-io/rerun/pull/6879) - Compaction-aware store events [#6940](https://github.com/rerun-io/rerun/pull/6940) - New and improved iteration APIs for `Chunk`s [#6989](https://github.com/rerun-io/rerun/pull/6989) - New chunkified latest-at APIs and caches [#6992](https://github.com/rerun-io/rerun/pull/6992) - New chunkified range APIs and caches [#6993](https://github.com/rerun-io/rerun/pull/6993) - New `Chunk`-based time-series views [#6995](https://github.com/rerun-io/rerun/pull/6995) - Chunkified, deserialization-free Point Cloud visualizers [#7011](https://github.com/rerun-io/rerun/pull/7011) - Chunkified, (almost)deserialization-free Mesh/Asset visualizers [#7016](https://github.com/rerun-io/rerun/pull/7016) - Chunkified, deserialization-free LineStrip visualizers [#7018](https://github.com/rerun-io/rerun/pull/7018) - Chunkified, deserialization-free visualizers for all standard shapes [#7020](https://github.com/rerun-io/rerun/pull/7020) - Chunkified image visualizers [#7023](https://github.com/rerun-io/rerun/pull/7023) - Chunkify everything left [#7032](https://github.com/rerun-io/rerun/pull/7032) - Higher compaction thresholds by default (x4) [#7113](https://github.com/rerun-io/rerun/pull/7113) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add LeRobot example link [#6873](https://github.com/rerun-io/rerun/pull/6873) (thanks [@02alexander](https://github.com/02alexander)!) - Add link to chess robot example [#6982](https://github.com/rerun-io/rerun/pull/6982) (thanks [@02alexander](https://github.com/02alexander)!) - add depth compare example [#6885](https://github.com/rerun-io/rerun/pull/6885) (thanks [@pablovela5620](https://github.com/pablovela5620)!) - Add mini NVS solver example [#6888](https://github.com/rerun-io/rerun/pull/6888) (thanks [@pablovela5620](https://github.com/pablovela5620)!) - Add link to GLOMAP example [#7097](https://github.com/rerun-io/rerun/pull/7097) (thanks [@02alexander](https://github.com/02alexander)!) - Add `send_columns` examples for images, fix rust `send_columns` handling of listarrays [#7172](https://github.com/rerun-io/rerun/pull/7172) #### ๐Ÿ“š Docs - New code snippet for Transform3D demonstrating an animated hierarchy [#6851](https://github.com/rerun-io/rerun/pull/6851) - Implement codegen of doclinks [#6850](https://github.com/rerun-io/rerun/pull/6850) - Add example for different data per timeline on `Events and Timelines` doc page [#6912](https://github.com/rerun-io/rerun/pull/6912) - Add troubleshooting section to pip install issues with outdated pip version [#6956](https://github.com/rerun-io/rerun/pull/6956) - Clarify in docs when ViewCoordinate is picked up by a 3D view [#7034](https://github.com/rerun-io/rerun/pull/7034) - CLI manual [#7149](https://github.com/rerun-io/rerun/pull/7149) #### ๐Ÿ–ผ UI improvements - Display compaction information in the recording UI [#6859](https://github.com/rerun-io/rerun/pull/6859) - Use markdown for the view help widget [#6878](https://github.com/rerun-io/rerun/pull/6878) - Improve navigation between entity and data results in the selection panel [#6871](https://github.com/rerun-io/rerun/pull/6871) - Add support for visible time range to the dataframe view [#6869](https://github.com/rerun-io/rerun/pull/6869) - Make clamped component data distinguishable in the "latest-at" table [#6894](https://github.com/rerun-io/rerun/pull/6894) - Scroll dataframe view to focused item [#6908](https://github.com/rerun-io/rerun/pull/6908) - Add an explicit "mode" view property to the dataframe view [#6927](https://github.com/rerun-io/rerun/pull/6927) - Introduce a "Selectable Toggle" widget and use it for the 3D view's camera kind [#7064](https://github.com/rerun-io/rerun/pull/7064) - Improve entity stats when hovered [#7074](https://github.com/rerun-io/rerun/pull/7074) - Update the UI colors to use our (blueish) ramp instead of pure grays [#7075](https://github.com/rerun-io/rerun/pull/7075) - Query editor for the dataframe view [#7071](https://github.com/rerun-io/rerun/pull/7071) - Better ui for `Blob`s, especially those representing images [#7128](https://github.com/rerun-io/rerun/pull/7128) - Add button for copying and saving images [#7156](https://github.com/rerun-io/rerun/pull/7156) #### ๐Ÿ•ธ๏ธ Web - Add missing props to React package [#6895](https://github.com/rerun-io/rerun/pull/6895) - Fix multi rrd on `app.rerun.io` [#6972](https://github.com/rerun-io/rerun/pull/6972) #### โœจ Other enhancement - Support decoding multiplexed RRD streams [#7091](https://github.com/rerun-io/rerun/pull/7091) - Query-time clears (latest-at only) [#6586](https://github.com/rerun-io/rerun/pull/6586) - Introduce `ChunkStore::drop_entity_path` [#6588](https://github.com/rerun-io/rerun/pull/6588) - Implement `Chunk::cell` [#6875](https://github.com/rerun-io/rerun/pull/6875) - Implement `Chunk::iter_indices` [#6877](https://github.com/rerun-io/rerun/pull/6877) - Drop, rather than clear, removed blueprint entities [#7120](https://github.com/rerun-io/rerun/pull/7120) - Implement support for `RangeQueryOptions::include_extended_bounds` [#7132](https://github.com/rerun-io/rerun/pull/7132) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Introduce `Chunk` component-level helpers and `UnitChunk` [#6990](https://github.com/rerun-io/rerun/pull/6990) - Vastly improved support for deserialized iteration [#7024](https://github.com/rerun-io/rerun/pull/7024) - Improved CLI: support wildcard inputs for all relevant `rerun rrd` subcommands [#7060](https://github.com/rerun-io/rerun/pull/7060) - Improved CLI: explicit CLI flags for compaction settings [#7061](https://github.com/rerun-io/rerun/pull/7061) - Improved CLI: stdin streaming support [#7092](https://github.com/rerun-io/rerun/pull/7092) - Improved CLI: stdout streaming support [#7094](https://github.com/rerun-io/rerun/pull/7094) - Improved CLI: implement `rerun rrd filter` [#7095](https://github.com/rerun-io/rerun/pull/7095) - Add support for `rerun rrd filter --drop-entity` [#7185](https://github.com/rerun-io/rerun/pull/7185) #### ๐Ÿ—ฃ Refactors - Forward Rust (de-)serialization of transparent datatypes [#6793](https://github.com/rerun-io/rerun/pull/6793) - CLI refactor: introduce `rerun rrd ` subscommand [#6861](https://github.com/rerun-io/rerun/pull/6861) - Remove legacy query engine and promises [#7033](https://github.com/rerun-io/rerun/pull/7033) - Implement `RangeQueryOptions` directly within `RangeQuery` [#7131](https://github.com/rerun-io/rerun/pull/7131) #### ๐Ÿ“ฆ Dependencies - Update to glam 0.28 & replace `macaw` with fork `re_math` [#6867](https://github.com/rerun-io/rerun/pull/6867) #### ๐Ÿคทโ€ Other - Fix linkchecker: proper allow-list of stackoverflow.com [#6838](https://github.com/rerun-io/rerun/pull/6838) - Don't lint comments inside `[metadata]` frontmatter [#6903](https://github.com/rerun-io/rerun/pull/6903) - Add basic checklist to test different 3D transform types & transform hierarchy propagation [#6968](https://github.com/rerun-io/rerun/pull/6968) ## [0.17.0](https://github.com/rerun-io/rerun/compare/0.16.1...0.17.0) - More Blueprint features and better notebooks - 2024-07-08 https://github.com/rerun-io/rerun/assets/49431240/1c75b816-7e3e-4882-9ee6-ba124c00d73c ๐Ÿ“– Release blogpost: https://rerun.io/blog/blueprint-overrides ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-17 ### โœจ Overview & highlights * ๐ŸŸฆ Blueprint component override & defaults, and visualizer override for all views * *Component defaults*: Configure default component value for an entire view, used when no values are logged to the data store (using `rr.log()`). * *Component overrides*: Specify a value to use regardless of the data-store & default values and use specified value instead. Can be set per view per entity. * *Visualizer overrides*: Specify a visualizer to use for a given entity in a given view. Previously only available for scalar data in timeseries views, now available for all view kinds. * All three are available from the (fully revamped) UI _and_ the Python blueprint APIs. * Everything that was editable per entity in a view now uses component overrides (e.g. camera plane distance, transform axis lengths, etc.) * Tip: Tooltips for each component in the UI include a link to the docs now! * ๐Ÿ•ธ๏ธ Improved notebook & website embedding support * Now you can stream data from the notebook cell to the embedded viewer. * Much improved support for having multiple viewers on the same web page. * More configuration options have been added to control the visibility of the Menu bar, time controls, etc. * Note: Use `pip install "rerun-sdk[notebook]"` to include the better notebook support. This includes the new [`rerun-notebook`](https://pypi.org/project/rerun-notebook/) package, which is used internally by [`rerun-sdk`]. * ๐Ÿง‘โ€๐Ÿซ New Examples * [Paddle OCR](https://rerun.io/examples/video-image/ocr) * [Vista driving world model](https://rerun.io/examples/generative-vision/vista) * [Stereo Vision SLAM](https://rerun.io/examples/3d-reconstruction/stereo_vision_slam) * [Neural field notebook](https://rerun.io/examples/integrations/notebook_neural_field_2d) * ๐Ÿ› ๏ธ Improved the logging API with many new and updated archetypes and components (see [migration guide](https://rerun.io/docs/reference/migration/migration-0-17)) * ๐Ÿ–ผ๏ธ `TensorView` is now fully configurable from blueprint code * ๐ŸŽ›๏ธ Revamped selection panel UI * ๐Ÿšš Much work is being done under-the-hood to migrate our data-store to "chunks" (aka units of batched data). More on this in the next release! * SDKs are already using chunks to transport data to the viewer, performance characteristics may have changed but should be largely the same for the moment. ### โš ๏ธ Breaking changes * `HalfSizes2D` has been renamed to [`HalfSize2D`](https://rerun.io/docs/reference/types/components/half_size2d) * `HalfSizes3D` has been renamed to [`HalfSize3D`](https://rerun.io/docs/reference/types/components/half_size3d) * `.rrd` files from older versions won't load in Rerun 0.17 ๐Ÿงณ Migration guide: https://rerun.io/docs/reference/migration/migration-0-17 ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Introduce chunks and use them on the client side: - Part 0: improved arrow chunk formatters [#6437](https://github.com/rerun-io/rerun/pull/6437) - Part 1: introduce `Chunk` and its suffle/sort routines [#6438](https://github.com/rerun-io/rerun/pull/6438) - Part 2: introduce `TransportChunk` [#6439](https://github.com/rerun-io/rerun/pull/6439) - Part 3: micro-batching [#6440](https://github.com/rerun-io/rerun/pull/6440) - Part 4: integrations [#6441](https://github.com/rerun-io/rerun/pull/6441) - Remove unused scalar scattering component [#6471](https://github.com/rerun-io/rerun/pull/6471) - Introduce `ImagePlaneDistance` Component [#6505](https://github.com/rerun-io/rerun/pull/6505) - Introduce new archetype for `Axes3D` [#6510](https://github.com/rerun-io/rerun/pull/6510) - Expose `Colormap` component for `DepthImage`, depth image colormap now used outside of reprojection [#6549](https://github.com/rerun-io/rerun/pull/6549) - `TimeSeriesAggregation` can now be set per `SeriesLine` (and as blueprint default per View) [#6558](https://github.com/rerun-io/rerun/pull/6558) - Expose `FillRatio` component to configure `DepthImage` back-projection radius scaling [#6566](https://github.com/rerun-io/rerun/pull/6566) - Expose image opacity component [#6635](https://github.com/rerun-io/rerun/pull/6635) - Make draw order editable & solve 2D flickering issues, add draw order to arrow2d archetype [#6644](https://github.com/rerun-io/rerun/pull/6644) - Remove `Axes3D` archetype and add `axis_length` to `Transform3D` [#6676](https://github.com/rerun-io/rerun/pull/6676) - Expose UI point radii to logging & blueprint, remove old default radius settings in favor of blueprint default components [#6678](https://github.com/rerun-io/rerun/pull/6678) - Rename `HalfSizes2D/3D` to `HalfSize2D/3D` [#6768](https://github.com/rerun-io/rerun/pull/6768) #### ๐ŸŒŠ C++ API - Add docs on how to install C++ SDK with conda-forge packages [#6381](https://github.com/rerun-io/rerun/pull/6381) (thanks [@traversaro](https://github.com/traversaro)!) #### ๐Ÿ Python API - Make barchart legend settable via blueprint [#6514](https://github.com/rerun-io/rerun/pull/6514) - Expose tensor slice selection to blueprint [#6590](https://github.com/rerun-io/rerun/pull/6590) - Use literal unions in Python enum codegen [#6408](https://github.com/rerun-io/rerun/pull/6408) - Allow hiding top panel via blueprint [#6409](https://github.com/rerun-io/rerun/pull/6409) - Improve the visibility of Python public APIs to type checkers [#6462](https://github.com/rerun-io/rerun/pull/6462) - Expose `Interactive` component [#6542](https://github.com/rerun-io/rerun/pull/6542) - Python components now implement the `ComponentBatchLike` interface [#6543](https://github.com/rerun-io/rerun/pull/6543) - Allow streaming to the viewer from the cell where it's created [#6640](https://github.com/rerun-io/rerun/pull/6640) - Introduce new Python API for setting overrides [#6650](https://github.com/rerun-io/rerun/pull/6650) - Publish `rerun_notebook` in CI [#6641](https://github.com/rerun-io/rerun/pull/6641) #### ๐Ÿฆ€ Rust API - All components implement the `Default` trait now in Rust [#6458](https://github.com/rerun-io/rerun/pull/6458) - Codegen `DerefMut` & `Deref` for all trivial components [#6470](https://github.com/rerun-io/rerun/pull/6470) #### ๐Ÿชณ Bug fixes - Allow removing blueprint entries even when they are invisible [#6503](https://github.com/rerun-io/rerun/pull/6503) - Fix wrong depth projection value on picking when depth meter was edited [#6551](https://github.com/rerun-io/rerun/pull/6551) - Always enable OpenGL fallback backend, fix `--renderer=gl` only working together with `WGPU_BACKEND` env-var [#6582](https://github.com/rerun-io/rerun/pull/6582) - Improve container selection panel UI [#6711](https://github.com/rerun-io/rerun/pull/6711) - Fix annotation context labels not showing in views [#6742](https://github.com/rerun-io/rerun/pull/6742) - Quiet the 'not a mono-batch' log spam when selecting keypoint with a batch class-id [#6359](https://github.com/rerun-io/rerun/pull/6359) - Fix incorrect label placement for 3D arrows with origins [#6779](https://github.com/rerun-io/rerun/pull/6779) - Don't pass RRD paths to other data-loaders [#6617](https://github.com/rerun-io/rerun/pull/6617) #### ๐ŸŒ Viewer improvements - Introduce a mechanism for blueprint-provided defaults [#6537](https://github.com/rerun-io/rerun/pull/6537) - Allow resetting view property components from GUI for all generically implemented property UI [#6417](https://github.com/rerun-io/rerun/pull/6417) - Don't log "SDK client connected" messages until after we have confirmed it's a client [#6456](https://github.com/rerun-io/rerun/pull/6456) - Background color settings uses new generic UI now [#6480](https://github.com/rerun-io/rerun/pull/6480) - TimeSeries y-range is now tightly synced with plot view & uses new generic UI [#6485](https://github.com/rerun-io/rerun/pull/6485) - Remove option to enable/disable depth projection from UI [#6550](https://github.com/rerun-io/rerun/pull/6550) - Expose tensor colormap/gamma/filter/scaling to blueprint [#6585](https://github.com/rerun-io/rerun/pull/6585) - Handle static text messages in TextLogView gracefully, handle overrides [#6712](https://github.com/rerun-io/rerun/pull/6712) - Multiple instances of points/arrows/boxes with single label display label now at the center [#6741](https://github.com/rerun-io/rerun/pull/6741) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add the OCR example [#6560](https://github.com/rerun-io/rerun/pull/6560) (thanks [@andreasnaoum](https://github.com/andreasnaoum)!) - Add the Vista example [#6664](https://github.com/rerun-io/rerun/pull/6664) (thanks [@roym899](https://github.com/roym899)!) - Add the Stereo Vision SLAM example [#6669](https://github.com/rerun-io/rerun/pull/6669) (thanks [@02alexander](https://github.com/02alexander)!) - Add 2D neural field notebook example [#6775](https://github.com/rerun-io/rerun/pull/6775) (thanks [@roym899](https://github.com/roym899)!) - Update the nuScenes example to use blueprint overrides and defaults [#6783](https://github.com/rerun-io/rerun/pull/6783) - Update the plots example to use blueprint overrides [#6781](https://github.com/rerun-io/rerun/pull/6781) #### ๐Ÿ“š Docs - Add links to our docs in component tooltips [#6482](https://github.com/rerun-io/rerun/pull/6482) - Show the first line of the docs when hovering a component name [#6609](https://github.com/rerun-io/rerun/pull/6609) - Improve docs for components [#6621](https://github.com/rerun-io/rerun/pull/6621) - Add a "Visualizers and Overrides" concept page [#6679](https://github.com/rerun-io/rerun/pull/6679) - Better document limited effect of `DepthMeter` & `FillRatio` in 2D views [#6745](https://github.com/rerun-io/rerun/pull/6745) - Update troubleshooting guide with graphics driver updating advice [#6756](https://github.com/rerun-io/rerun/pull/6756) - Update Pixi link to their new website [#6688](https://github.com/rerun-io/rerun/pull/6688) (thanks [@esteve](https://github.com/esteve)!) - Use "N-dimensional" instead of "rank-N" in docstrings and error messages [#6797](https://github.com/rerun-io/rerun/pull/6797) #### ๐Ÿ–ผ UI improvements - Update the UI for time series view properties using list item [#6390](https://github.com/rerun-io/rerun/pull/6390) - Fix welcome screen header jumping during load [#6389](https://github.com/rerun-io/rerun/pull/6389) - Add support for exact width to `PropertyContent` [#6325](https://github.com/rerun-io/rerun/pull/6325) - Migrate to `list_time2`: - Part 1: ensure background is painted on rounded pixels [#6376](https://github.com/rerun-io/rerun/pull/6376) - Part 2: convert all use of legacy list time to `list_item2` [#6377](https://github.com/rerun-io/rerun/pull/6377) - Part 3: rename `list_item2` to `list_item` [#6378](https://github.com/rerun-io/rerun/pull/6378) - Improve the colormap drop down menu [#6401](https://github.com/rerun-io/rerun/pull/6401) - Reduce height of top and bottom panels [#6397](https://github.com/rerun-io/rerun/pull/6397) - Allow hiding all TimePanel/BlueprintPanel/SelectionPanel [#6407](https://github.com/rerun-io/rerun/pull/6407) - Remove the ability to display multiple tensors in a single space view [#6392](https://github.com/rerun-io/rerun/pull/6392) - Smooth scrolling in 2D space views [#6422](https://github.com/rerun-io/rerun/pull/6422) - Improve welcome screen for small screens [#6421](https://github.com/rerun-io/rerun/pull/6421) - Use egui's `UiStack` to implement full span widgets [#6491](https://github.com/rerun-io/rerun/pull/6491) - Use `list_item` for the component list in `InstancePath::data_ui` [#6309](https://github.com/rerun-io/rerun/pull/6309) - Allow editing visual bounds from UI [#6492](https://github.com/rerun-io/rerun/pull/6492) - Allow manually setting full span scopes [#6509](https://github.com/rerun-io/rerun/pull/6509) - Make object hover & selection colors brighter and more pronounced [#6596](https://github.com/rerun-io/rerun/pull/6596) - Show outline around hovered/selected tiles in viewport [#6597](https://github.com/rerun-io/rerun/pull/6597) - Unified visualizer & override UI, enabled on all entities [#6599](https://github.com/rerun-io/rerun/pull/6599) - Introduce visualizer blueprint query stack UI [#6605](https://github.com/rerun-io/rerun/pull/6605) - Reorganize Selection Panel [#6637](https://github.com/rerun-io/rerun/pull/6637) - Rewrite the `ui.large_collapsing_header` into `re_ui::SectionCollapsingHeader` using `re_ui::ListItem` [#6657](https://github.com/rerun-io/rerun/pull/6657) - Move entity filter "edit" button to a section header icon [#6662](https://github.com/rerun-io/rerun/pull/6662) - Add help to several sections in the Selection Panel [#6668](https://github.com/rerun-io/rerun/pull/6668) - Introduce `ButtonContent` and use it in the selection panel [#6720](https://github.com/rerun-io/rerun/pull/6720) #### ๐Ÿ•ธ๏ธ Web - Allow overriding app blueprint from web [#6419](https://github.com/rerun-io/rerun/pull/6419) - Add fullscreen mode to web viewer [#6461](https://github.com/rerun-io/rerun/pull/6461) - Fix rerun-web canvas size [#6511](https://github.com/rerun-io/rerun/pull/6511) - JS: Make LogChannel public [#6529](https://github.com/rerun-io/rerun/pull/6529) - New notebook API [#6573](https://github.com/rerun-io/rerun/pull/6573) - Add width/height properties to web viewer [#6636](https://github.com/rerun-io/rerun/pull/6636) - Do not read query in embedded web viewer [#6515](https://github.com/rerun-io/rerun/pull/6515) #### ๐Ÿ—ฃ Refactors - Generic view property building, applied to `TimeSeriesView`'s `PlotLegend` [#6400](https://github.com/rerun-io/rerun/pull/6400) - Extracted several `re_viewer` parts into standalone crates: `re_viewport_blueprint` [#6405](https://github.com/rerun-io/rerun/pull/6405), `re_context_menu` [#6428](https://github.com/rerun-io/rerun/pull/6423), `re_blueprint_tree`[#6427](https://github.com/rerun-io/rerun/pull/6427), and `re_selection_panel` [#6431](https://github.com/rerun-io/rerun/pull/6431) #### ๐Ÿ“ฆ Dependencies - Update to egui 0.28.1 [#6752](https://github.com/rerun-io/rerun/pull/6752), [#6785](https://github.com/rerun-io/rerun/pull/6785) - Update ewebsock to 0.6.0 [#6394](https://github.com/rerun-io/rerun/pull/6394) - Update to `wgpu 0.20`, fixing crashes with some Linux setups [#6171](https://github.com/rerun-io/rerun/pull/6171) ## [0.16.1](https://github.com/rerun-io/rerun/compare/0.16.0...0.16.1) - Bug fix - 2024-05-29 - Don't log warnings when unknown clients connect over TCP [#6368](https://github.com/rerun-io/rerun/pull/6368) - Fix not being able to set time series' Y axis ranges from the UI [#6384](https://github.com/rerun-io/rerun/pull/6384) - Fix error when logging segmentation image [#6449](https://github.com/rerun-io/rerun/pull/6449) - Fix broken example source links in Viewer example list [#6451](https://github.com/rerun-io/rerun/pull/6451) ## [0.16.0](https://github.com/rerun-io/rerun/compare/0.15.1...0.16.0) - First configurable views - 2024-05-16 https://github.com/rerun-io/rerun/assets/3312232/475468bd-e012-4837-b2b4-b47fa9791e2c ### โœจ Overview & highlights * ๐ŸŸฆ Customize views in code: We started exposing some view properties in the blueprint! * ๐Ÿ“‹ Included are: * Visible time ranges * check [this new how-to guide](https://rerun.io/docs/howto/fixed-window-plot) & example that demonstrates this with plots * Time Series legend & y-axis configuration * 2D & 3D View background color * 2D View bounds * ๐Ÿ“š learn more on the [new view blueprint doc pages](https://rerun.io/docs/reference/types/views) * ๐Ÿš€ โ€ฆmore to come in the future! * ๐Ÿ•ฐ๏ธ Deprecated `timeless` in favor of new `static` logging * Except for the name change, they behave similarly in _most_ use cases. Unlike with timeless, static dataโ€ฆ * โ€ฆcan't be mixed with non-static data on the same component. * โ€ฆwill override previous static data and not keep old data in memory. * Check out our [migration guide](https://rerun.io/docs/reference/migration/migration-0-16). * ๐Ÿ–ผ๏ธ 2D View's pan & zoom got redone, it's now a free canvas without any scroll bar * ๐Ÿค– Added [an example](https://rerun.io/examples/robotics/ros2_bridge) to use Rerun with ROS2. As always there's a lot going on under the hood: * ๐Ÿšš We streamlined our development processes & CI and examples. * ๐Ÿ•ธ๏ธ Our web page is about to switch from React to Svelte, making it a lot snappier! * ๐Ÿ’ฟ Instance key removal in 0.15.0 opened the door to major simplifications in our data store, this will make it easier for us to improve performance and implement data streaming. * ๐Ÿค— We're making it easier to work with [HuggingFace](https://huggingface.co/)'s [Gradio API](https://www.gradio.app/). Stay tuned! Most things for this already landed in this release and we'll soon build more direct support on top. ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Sunset `MeshProperties`, introduce `TriangleIndices` and friends [#6169](https://github.com/rerun-io/rerun/pull/6169) - Add a new javascript API for submitting an RRD that is stored directly as bytes [#6189](https://github.com/rerun-io/rerun/pull/6189) - Keep Rerun viewer from dying on ctrl-c by setting `sid` on unix systems [#6260](https://github.com/rerun-io/rerun/pull/6260) - Add a new CLI option / spawn options to hide the welcome screen [#6262](https://github.com/rerun-io/rerun/pull/6262) - Make sure all log messages are sent when using `.serve()` [#6335](https://github.com/rerun-io/rerun/pull/6335) #### ๐ŸŒŠ C++ API - Static-aware C & C++ SDKs [#5537](https://github.com/rerun-io/rerun/pull/5537) - Support shared library building on Windows [#6053](https://github.com/rerun-io/rerun/pull/6053) (thanks [@traversaro](https://github.com/traversaro)!) #### ๐Ÿ Python API - Static-aware Python SDK [#5536](https://github.com/rerun-io/rerun/pull/5536) - Make rerun-py use an embedded rerun-cli executable [#5996](https://github.com/rerun-io/rerun/pull/5996) - Convert Python examples to proper packages [#5966](https://github.com/rerun-io/rerun/pull/5966) - Configurable background color from Python code (POC for space view properties from code) [#6068](https://github.com/rerun-io/rerun/pull/6068) - Codegen for space view Python blueprint classes [#6100](https://github.com/rerun-io/rerun/pull/6100) - Allow setting view visibility from blueprint API [#6108](https://github.com/rerun-io/rerun/pull/6108) - Expose `PlotLegend` and `ScalarAxis` (axis_y) properties on `TimeSeriesView` blueprint [#6114](https://github.com/rerun-io/rerun/pull/6114) - Change background of 2D space views from code and/or UI [#6116](https://github.com/rerun-io/rerun/pull/6116) - Set visual 2D bounds from code [#6127](https://github.com/rerun-io/rerun/pull/6127) - Make visual time range on views a view property that can be set from Python code [#6164](https://github.com/rerun-io/rerun/pull/6164) - Introduce new mechanism to incrementally drain from a memory_recording [#6187](https://github.com/rerun-io/rerun/pull/6187) - Work around some issues where recording streams leaking context when used with generators [#6240](https://github.com/rerun-io/rerun/pull/6240) - Introduce a new BinaryStreamSink that allows reading a stream of encoded bytes [#6242](https://github.com/rerun-io/rerun/pull/6242) - Improve new time_ranges property Python API & add snippet for time series view, explaining all its options [#6221](https://github.com/rerun-io/rerun/pull/6221) - Fix possible hang when using torch.multiprocessing [#6271](https://github.com/rerun-io/rerun/pull/6271) - Add code examples & screenshots for all blueprint view types [#6304](https://github.com/rerun-io/rerun/pull/6304) - Set a minimum version of pillow in `rerun_py/pyproject.toml` [#6327](https://github.com/rerun-io/rerun/pull/6327) - Respect the `RERUN_STRICT` environment variable if not specified in `rr.init` [#6341](https://github.com/rerun-io/rerun/pull/6341) #### ๐Ÿฆ€ Rust API - Static-aware Rust SDK [#5540](https://github.com/rerun-io/rerun/pull/5540) - Remove need for tokio runtime for supporting `serve` [#6043](https://github.com/rerun-io/rerun/pull/6043) - Add `TextDocument::from_markdown` constructor [#6109](https://github.com/rerun-io/rerun/pull/6109) - Document all public item in `re_types` [#6146](https://github.com/rerun-io/rerun/pull/6146) - Fix crash on `i32` overflow during arrow serialization [#6285](https://github.com/rerun-io/rerun/pull/6285) - Revamped `TimeInt` [#5534](https://github.com/rerun-io/rerun/pull/5534) #### ๐Ÿชณ Bug fixes - Fix silently interpreting zero time range as latest-at query [#6172](https://github.com/rerun-io/rerun/pull/6172) - Fix not being able to click suggestions in space origin selection dropdown [#6200](https://github.com/rerun-io/rerun/pull/6200) - Fix bug in origin selection UI [#6199](https://github.com/rerun-io/rerun/pull/6199) - Fix out-of-bounds crash in origin selection popup [#6202](https://github.com/rerun-io/rerun/pull/6202) - Fix rare crash [#6251](https://github.com/rerun-io/rerun/pull/6251) - Fix visual glitch when extending the time panel [#6255](https://github.com/rerun-io/rerun/pull/6255) - Don't automatically fall back to automatic port if web socket port is already in use, only recommend using 0 instead [#6296](https://github.com/rerun-io/rerun/pull/6296) #### ๐ŸŒ Viewer improvements - Request attention when Rerun Viewer is sent new recording in background [#5780](https://github.com/rerun-io/rerun/pull/5780) - New data APIs 11: port all range-only views (plots, logsโ€ฆ) [#5992](https://github.com/rerun-io/rerun/pull/5992) - New data APIs 12: port all spatial views [#5993](https://github.com/rerun-io/rerun/pull/5993) - New data APIs 14: port everything that used to be uncached [#6035](https://github.com/rerun-io/rerun/pull/6035) - Make visible time range UI aware of latest-at & `QueryRange` [#6176](https://github.com/rerun-io/rerun/pull/6176) - Visible time ranges are now specified per timeline, not per timeline type [#6204](https://github.com/rerun-io/rerun/pull/6204) - Send TCP protocol header to ignore non-rerun clients [#6253](https://github.com/rerun-io/rerun/pull/6253) (thanks [@gurry](https://github.com/gurry)!) #### ๐Ÿš€ Performance improvements - New data APIs 4: cached latest-at mono helpers everywhere [#5606](https://github.com/rerun-io/rerun/pull/5606) - New data APIs 5: port data UIs to new APIs [#5633](https://github.com/rerun-io/rerun/pull/5633) - New data APIs 9: cached range queries [#5755](https://github.com/rerun-io/rerun/pull/5755) - New data APIs 16: introduce non-cacheable components [#6037](https://github.com/rerun-io/rerun/pull/6037) - Remove instance keys and explicit splatting everywhere [#6104](https://github.com/rerun-io/rerun/pull/6104) #### ๐Ÿง‘โ€๐Ÿซ Examples - Update depth-guided stable diffusion example to diffusers 0.27.2 [#5985](https://github.com/rerun-io/rerun/pull/5985) (thanks [@roym899](https://github.com/roym899)!) - Add ROS 2 bridge example [#6163](https://github.com/rerun-io/rerun/pull/6163) (thanks [@roym899](https://github.com/roym899)!) - Add DROID dataset example [#6149](https://github.com/rerun-io/rerun/pull/6149) (thanks [@02alexander](https://github.com/02alexander)!) - New example and tutorial showing how to create a live scrolling plot [#6314](https://github.com/rerun-io/rerun/pull/6314) - Update the example in configure-viewer-through-code.md to use subclasses of `SpaceView` [#6092](https://github.com/rerun-io/rerun/pull/6092) (thanks [@m-decoster](https://github.com/m-decoster)!) #### ๐Ÿ“š Docs - Update Python readme and add `py-wheel` command [#5912](https://github.com/rerun-io/rerun/pull/5912) - Update Python API links to getting-started and tutorial [#5923](https://github.com/rerun-io/rerun/pull/5923) (thanks [@Mxbonn](https://github.com/Mxbonn)!) - Fix various links in Rust, Python and toml files [#5986](https://github.com/rerun-io/rerun/pull/5986) - Improve type index pages, codegen now knows about doc categories [#5978](https://github.com/rerun-io/rerun/pull/5978) - Generate doc pages for blueprint views [#6121](https://github.com/rerun-io/rerun/pull/6121) - Clarify docs on GH release install & C++ source build, remove redundant rerun_cpp_sdk artifact [#6144](https://github.com/rerun-io/rerun/pull/6144) - Documentation for archetype and views references each other [#6319](https://github.com/rerun-io/rerun/pull/6319) #### ๐Ÿ–ผ UI improvements - Update `egui_commonmark` [#5864](https://github.com/rerun-io/rerun/pull/5864) - Update UI for static components [#6101](https://github.com/rerun-io/rerun/pull/6101) - Allow any pan/zoom in 2D spatial views [#6089](https://github.com/rerun-io/rerun/pull/6089) - `ListItem`2.0 (part 1): introduce content-generic `ListItem` and `LabelContent` legacy back-port [#6161](https://github.com/rerun-io/rerun/pull/6161) - `ListItem` 2.0 (part 2): introduce `PropertyContent` for two-column, property-like list items [#6174](https://github.com/rerun-io/rerun/pull/6174) - `ListItem` 2.0 (part 3): `PropertyContent` column auto-sizing [#6182](https://github.com/rerun-io/rerun/pull/6182) - `ListItem` 2.0 (part 4): only allocate space for property action buttons when needed [#6183](https://github.com/rerun-io/rerun/pull/6183) - `ListItem` 2.0 (part 5): deploy to the Visualizers and Overrides UIs [#6184](https://github.com/rerun-io/rerun/pull/6184) - `ListItem` 2.0 (part 6): split full-span range management to a dedicated module [#6211](https://github.com/rerun-io/rerun/pull/6211) - Add button to equalize the size of the children of a container [#6194](https://github.com/rerun-io/rerun/pull/6194) - Use thousands separators when formatting seconds [#6212](https://github.com/rerun-io/rerun/pull/6212) - Add space view icons to various context menus [#6235](https://github.com/rerun-io/rerun/pull/6235) - Migrate all full-span widgets to `re_ui::full_span` [#6248](https://github.com/rerun-io/rerun/pull/6248) - Improve error message when using an under-powered GPU [#6252](https://github.com/rerun-io/rerun/pull/6252) - Improve the default UI when the welcome screen is hidden [#6287](https://github.com/rerun-io/rerun/pull/6287) - Improve UI of various components in the selection panel [#6297](https://github.com/rerun-io/rerun/pull/6297) #### ๐Ÿ•ธ๏ธ Web - Rewrite `re_ws_comms` to work without `async` & `tokio` runtime [#6005](https://github.com/rerun-io/rerun/pull/6005) - Fix: Preserve history state [#6302](https://github.com/rerun-io/rerun/pull/6302) - Make it possible to open http-streamed RRDs in follow mode via JS API [#6326](https://github.com/rerun-io/rerun/pull/6326) #### ๐Ÿ“ˆ Analytics - Transmit url analytics correctly for rerun.io domains [#6322](https://github.com/rerun-io/rerun/pull/6322) - Keep track of the RRD protocol version and display it where relevant [#6324](https://github.com/rerun-io/rerun/pull/6324) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - New data APIs 6: cached archetype queries [#5673](https://github.com/rerun-io/rerun/pull/5673) - Remove justfile & fully replace remaining commands with Pixi [#5892](https://github.com/rerun-io/rerun/pull/5892) - Replace requirements-docs.txt with a Python doc Pixi environment [#5909](https://github.com/rerun-io/rerun/pull/5909) - Update to Rust 1.76 [#5908](https://github.com/rerun-io/rerun/pull/5908) - Remove all dev/ci requirements.txt and fully replace with Pixi [#5939](https://github.com/rerun-io/rerun/pull/5939) - Markdown linter [#6181](https://github.com/rerun-io/rerun/pull/6181) #### ๐Ÿ—ฃ Refactors - `re_web_viewer_server` no longer needs tokio, split out sync code path [#6030](https://github.com/rerun-io/rerun/pull/6030) - Replace hyper with tiny_http to serve http files for `serve` functionality [#6042](https://github.com/rerun-io/rerun/pull/6042) - New data APIs 13: sunset legacy cache crate [#5994](https://github.com/rerun-io/rerun/pull/5994) - New data APIs 15: one query crate to rule them all [#6036](https://github.com/rerun-io/rerun/pull/6036) - `ListItem` 2.0 (part 0): `re_ui_example` refactor [#6148](https://github.com/rerun-io/rerun/pull/6148) - Fix: `re_sdk` no longer depends on `rustls` [#6210](https://github.com/rerun-io/rerun/pull/6210) - Reduce number of unwrap calls and make clippy warning for it opt-out per crate [#6311](https://github.com/rerun-io/rerun/pull/6311) (thanks [@Artxiom](https://github.com/Artxiom)!) #### ๐Ÿ“ฆ Dependencies - Wgpu update (0.19.3 -> 0.19.4) [#6044](https://github.com/rerun-io/rerun/pull/6044) #### ๐Ÿคทโ€ Other - Static data 1: static-aware datastore, caches and queries [#5535](https://github.com/rerun-io/rerun/pull/5535) - New data APIs 0: `ClampedZip` iterator machinery [#5573](https://github.com/rerun-io/rerun/pull/5573) - New data APIs 1: uncached latest-at queries [#5574](https://github.com/rerun-io/rerun/pull/5574) - New data APIs 2: cached latest-at queries [#5581](https://github.com/rerun-io/rerun/pull/5581) - New data APIs 3: Send/Sync/'static `Component`, once and for all [#5605](https://github.com/rerun-io/rerun/pull/5605) - New data APIs 7: `RangeZip` iterator machinery [#5679](https://github.com/rerun-io/rerun/pull/5679) - New data APIs 8: uncached range queries [#5687](https://github.com/rerun-io/rerun/pull/5687) - New data APIs 10: stats and debug tools for new caches [#5990](https://github.com/rerun-io/rerun/pull/5990) - Validate the blueprint schema when we try to activate a blueprint sent from SDK [#6283](https://github.com/rerun-io/rerun/pull/6283) ## [0.15.1](https://github.com/rerun-io/rerun/compare/0.15.0...0.15.1) - Bug fix for notebooks - 2024-04-11 - Fix timeout in notebooks by making the `app_url` correctly point to `app.rerun.io` [#5877](https://github.com/rerun-io/rerun/pull/5877) - CMake: Allow to call `find_package(rerun_sdk)` two or more times [#5886](https://github.com/rerun-io/rerun/pull/5886) (thanks [@traversaro](https://github.com/traversaro)!) ## [0.15.0](https://github.com/rerun-io/rerun/compare/0.14.1...0.15.0) - Blueprints from Python - 2024-04-09 The biggest news is the ability to create a _blueprint_ via the Python logging API. Check out our [associated blog post](https://rerun.io/blog/blueprint-part-one) for more information. ```py import rerun.blueprint as rrb blueprint = rrb.Blueprint( rrb.Vertical( rrb.Spatial3DView(name="3D", origin="/"), rrb.Horizontal( rrb.TextDocumentView(name="README", origin="/description"), rrb.Spatial2DView(name="Camera", origin="/camera/image"), rrb.TimeSeriesView(origin="/plot"), ), row_shares=[3, 2], ) rrb.BlueprintPanel(expanded=True), rrb.SelectionPanel(expanded=False), rrb.TimePanel(expanded=False), ) ``` The blueprint can then be sent to the Viewer with ```py rr.send_blueprint(blueprint) ``` Or stored to a file, and then later opened in the viewer: ```py blueprint.save("my_nice_dashboard.rbl") ``` In this case, the results looks something like this: Blueprints are currently only supported in the Python API, with C++ and Rust support coming later. ### โœจ Overview & highlights - ๐ŸŸฆ Configure the layout and content of space views from Python [(docs)](https://rerun.io/docs/howto/configure-viewer-through-code) - ๐Ÿ–ง More powerful and flexible data loaders [(docs)](https://rerun.io/docs/reference/data-loaders) - ๐Ÿ–ต Improved UI for managing recordings and applications - ๐Ÿ’พ Save and load blueprint files in the viewer - ๐ŸŽจ Configurable background color for 3D Space Views [#5443](https://github.com/rerun-io/rerun/pull/5443) - ๐Ÿ’ช Linux ARM64 support [#5489](https://github.com/rerun-io/rerun/pull/5489) [#5503](https://github.com/rerun-io/rerun/pull/5503) [#5511](https://github.com/rerun-io/rerun/pull/5511) - ๐Ÿ–ผ๏ธ Show examples in the welcome page - ๐Ÿ–ฑ๏ธ Improve context-menu when right-clicking items in the blueprint panel and streams tree - โŒ Remove `InstanceKey` from our logging APIs [#5395](https://github.com/rerun-io/rerun/pull/5395) ([migration guide](https://rerun.io/docs/reference/migration/migration-0-15)) - โŒ Remove groups from blueprints panel [#5326](https://github.com/rerun-io/rerun/pull/5326) ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Replace `MarkerShape` with code-generated `enum` type [#5336](https://github.com/rerun-io/rerun/pull/5336) - Key-less data model 1: scrap `InstanceKey` from public logging APIs [#5395](https://github.com/rerun-io/rerun/pull/5395) - Remove the check for `WrongNumberOfInstances` [#5399](https://github.com/rerun-io/rerun/pull/5399) - Control panel expanded state via blueprint APIs [#5484](https://github.com/rerun-io/rerun/pull/5484) - Remove deprecated `TimeSeriesScalar` [#5604](https://github.com/rerun-io/rerun/pull/5604) - Customizable data loaders [#5327](https://github.com/rerun-io/rerun/pull/5327) [#5328](https://github.com/rerun-io/rerun/pull/5328) [#5330](https://github.com/rerun-io/rerun/pull/5330) [#5337](https://github.com/rerun-io/rerun/pull/5337) [#5351](https://github.com/rerun-io/rerun/pull/5351) [#5355](https://github.com/rerun-io/rerun/pull/5355) [#5379](https://github.com/rerun-io/rerun/pull/5379) [#5361](https://github.com/rerun-io/rerun/pull/5361) [#5388](https://github.com/rerun-io/rerun/pull/5388) #### ๐ŸŒŠ C++ API - Fix Arrow libraries from download & build not being found in some cases [#5366](https://github.com/rerun-io/rerun/pull/5366) - CMake: Add `RERUN_INSTALL_RERUN_C` option to disable installation of `rerun_c` library [#5374](https://github.com/rerun-io/rerun/pull/5374) (thanks [@traversaro](https://github.com/traversaro)!) - CMake: Fix `install` not finding external `arrow` for dynamic linking [#5375](https://github.com/rerun-io/rerun/pull/5375) (thanks [@traversaro](https://github.com/traversaro)!) - Make `pinhole.hpp` robust against `min/max` preprocessor macros (typically from `windows.h`) [#5432](https://github.com/rerun-io/rerun/pull/5432) - Build C++ SDK for Linux ARM64 [#5489](https://github.com/rerun-io/rerun/pull/5489) - Generate fewer `.cpp` files: Inline forward serialization of transparent components to their respective datatypes [#5544](https://github.com/rerun-io/rerun/pull/5544) - Fix `RERUN_C_BUILD_ARTIFACT` path value if `CARGO_BUILD_TARGET` env variable is set [#5547](https://github.com/rerun-io/rerun/pull/5547) (thanks [@traversaro](https://github.com/traversaro)!) #### ๐Ÿ Python API - All Python components that wrap a `bool` now implement `__bool__` [#5400](https://github.com/rerun-io/rerun/pull/5400) - Add the remaining space views and name them consistently [#5498](https://github.com/rerun-io/rerun/pull/5498) - Add option to include blueprint in an `.rrd` when calling `.save(โ€ฆ)` [#5572](https://github.com/rerun-io/rerun/pull/5572) - Allow naming space view containers [#5626](https://github.com/rerun-io/rerun/pull/5626) #### ๐Ÿฆ€ Rust API #### ๐Ÿชณ Bug fixes - Sort text log space view on currently selected timeline [#5348](https://github.com/rerun-io/rerun/pull/5348) - Fix parents of queried paths getting visualized, fix 2D objects not showing at all in 3D if their camera parent is not included [#5424](https://github.com/rerun-io/rerun/pull/5424) - Fix: allow creating 3D space views for pinhole-only 3D scenes [#5563](https://github.com/rerun-io/rerun/pull/5563) - Fix depth cloud bounding boxes for depth cloud visualizations with transforms [#5578](https://github.com/rerun-io/rerun/pull/5578) - Fix image view not handling images with extra leading dimensions of size `1` [#5579](https://github.com/rerun-io/rerun/pull/5579) - Fix web viewer crash on invalid url parameter [#5631](https://github.com/rerun-io/rerun/pull/5631) - Be consistent in how items are removed from selection [#5643](https://github.com/rerun-io/rerun/pull/5643) - Fix layout issue on welcome screen for narrow window, triggering debug assertion [#5650](https://github.com/rerun-io/rerun/pull/5650) - Fix broken 2D space view heuristics in Python Notebooks [#5674](https://github.com/rerun-io/rerun/pull/5674) - Avoid a hang on Linux by always create the renderer, even when we have no store_view [#5724](https://github.com/rerun-io/rerun/pull/5724) - Fix crash/freeze when zooming out too far in a plot [#5737](https://github.com/rerun-io/rerun/pull/5737) - Fix `draw_order` not working [#5794](https://github.com/rerun-io/rerun/pull/5794) #### ๐ŸŒ Viewer improvements - Remove groups from blueprints panel [#5326](https://github.com/rerun-io/rerun/pull/5326) - Improved tracking of which space views were generated by a heuristic [#5419](https://github.com/rerun-io/rerun/pull/5419) - Configurable background color for 3D Space Views [#5443](https://github.com/rerun-io/rerun/pull/5443) - Save recordings from web viewer [#5488](https://github.com/rerun-io/rerun/pull/5488) - Support loading `.rbl` blueprint files [#5513](https://github.com/rerun-io/rerun/pull/5513) - Tensor space view can now show images [#5567](https://github.com/rerun-io/rerun/pull/5567) - Entity path query now shows simple statistics and warns if nothing is displayed [#5693](https://github.com/rerun-io/rerun/pull/5693) - Go back to example page with browser Back-button [#5750](https://github.com/rerun-io/rerun/pull/5750) - On Web, implement navigating back/forward with mouse buttons [#5792](https://github.com/rerun-io/rerun/pull/5792) - Support displaying 1D tensors [#5837](https://github.com/rerun-io/rerun/pull/5837) #### ๐Ÿง‘โ€๐Ÿซ Examples - New `incremental_logging` example [#5462](https://github.com/rerun-io/rerun/pull/5462) - New standalone example showing blueprint configuration of some stock [#5603](https://github.com/rerun-io/rerun/pull/5603) - New example visualizing KISS-ICP [#5546](https://github.com/rerun-io/rerun/pull/5546) (thanks [@02alexander](https://github.com/02alexander)!) - Remove car example [#5576](https://github.com/rerun-io/rerun/pull/5576) - Add blueprint to `arkit_scenes` example, leveraging the viewer's ability to re-project 3D->2D [#5510](https://github.com/rerun-io/rerun/pull/5510) - Add blueprint to `nuscenes` example [#5556](https://github.com/rerun-io/rerun/pull/5556) - Add blueprint to Face Tracking example [#5616](https://github.com/rerun-io/rerun/pull/5616) - Add blueprint to Gesture Detection example [#5619](https://github.com/rerun-io/rerun/pull/5619) - Add blueprint to Human Pose Tracking example [#5612](https://github.com/rerun-io/rerun/pull/5612) - Add blueprint to Live Camera Edge Detection example [#5613](https://github.com/rerun-io/rerun/pull/5613) - Add blueprint to LLM Embedding Ner example [#5614](https://github.com/rerun-io/rerun/pull/5614) - Add blueprint to Objectron example [#5617](https://github.com/rerun-io/rerun/pull/5617) - Add blueprint to Signed Distance Fields example [#5635](https://github.com/rerun-io/rerun/pull/5635) - Add blueprint to the RGBD example [#5623](https://github.com/rerun-io/rerun/pull/5623) - ARFlow Example Page [#5320](https://github.com/rerun-io/rerun/pull/5320) (thanks [@YiqinZhao](https://github.com/YiqinZhao)!) - Fix controlnet example for current `controlnet` package version and add blueprint [#5634](https://github.com/rerun-io/rerun/pull/5634) - Fix RRT-Star example not showing up on website or rerun.io/viewer [#5628](https://github.com/rerun-io/rerun/pull/5628) - Fix not logging 3D gesture z component correctly in Gesture Detection example [#5630](https://github.com/rerun-io/rerun/pull/5630) (thanks [@andreasnaoum](https://github.com/andreasnaoum)!) - Updated READMEs for examples: LLM Embedding-Based Named Entity Recognition, nuScenes, Objectron, Open Photogrammetry Format, Raw Mesh [#5653](https://github.com/rerun-io/rerun/pull/5653) (thanks [@andreasnaoum](https://github.com/andreasnaoum)!) - Updated READMEs for the examples - Batch 1 [#5620](https://github.com/rerun-io/rerun/pull/5620) (thanks [@andreasnaoum](https://github.com/andreasnaoum)!) #### ๐Ÿ“š Docs - Docs: improve discoverability of image compression [#5675](https://github.com/rerun-io/rerun/pull/5675) - Improve getting started doc section [#5689](https://github.com/rerun-io/rerun/pull/5689) - Update web viewer links [#5738](https://github.com/rerun-io/rerun/pull/5738) - Update docs with guides and tutorials for blueprint [#5641](https://github.com/rerun-io/rerun/pull/5641) - Update README and description of `arkit_scenes` example [#5711](https://github.com/rerun-io/rerun/pull/5711) (thanks [@BirgerMoell](https://github.com/BirgerMoell)!) - Improve readme of `depth_guided_stable_diffusion` example [#5593](https://github.com/rerun-io/rerun/pull/5593) (thanks [@BirgerMoell](https://github.com/BirgerMoell)!) #### ๐Ÿ–ผ UI improvements - New timezone option: seconds since unix epoch [#5450](https://github.com/rerun-io/rerun/pull/5450) (thanks [@murgeljm](https://github.com/murgeljm)!) - Always enable entity path filter editor [#5331](https://github.com/rerun-io/rerun/pull/5331) - Add icons for entities and components, and use them everywhere [#5318](https://github.com/rerun-io/rerun/pull/5318) - Add support for context menu for viewport tab title and selected container's children list [#5321](https://github.com/rerun-io/rerun/pull/5321) - Fix `ListItem` indentation so icons are properly aligned [#5340](https://github.com/rerun-io/rerun/pull/5340) - Blueprint tree always starts at the origin now, "projected" paths are called out explicitly [#5342](https://github.com/rerun-io/rerun/pull/5342) - Merge example page into welcome screen [#5329](https://github.com/rerun-io/rerun/pull/5329) - `ListItem`'s collapsing triangle is now styled consistently with the rest of the item [#5354](https://github.com/rerun-io/rerun/pull/5354) - Add helpers to enable stable and controllable collapsed state in hierarchical lists [#5362](https://github.com/rerun-io/rerun/pull/5362) - Different icon for empty entity paths [#5338](https://github.com/rerun-io/rerun/pull/5338) - Merge quick start guides [#5378](https://github.com/rerun-io/rerun/pull/5378) - Update welcome screen panel illustrations [#5394](https://github.com/rerun-io/rerun/pull/5394) - More context menu in blueprint and streams tree: - Refactor [#5392](https://github.com/rerun-io/rerun/pull/5392) - Add support to show/hide `DataResult`s [#5397](https://github.com/rerun-io/rerun/pull/5397) - Add support for removing `DataResult` from a space view [#5407](https://github.com/rerun-io/rerun/pull/5407) - Create a new space view with selected entities [#5411](https://github.com/rerun-io/rerun/pull/5411) - Add context menu to streams tree [#5422](https://github.com/rerun-io/rerun/pull/5422) - Add "Expand/Collapse all" actions [#5433](https://github.com/rerun-io/rerun/pull/5433) - Cleanup [#5456](https://github.com/rerun-io/rerun/pull/5456) - Automatically expand and scroll the blueprint tree when focusing on an item [#5482](https://github.com/rerun-io/rerun/pull/5482) - Save blueprint to file [#5491](https://github.com/rerun-io/rerun/pull/5491) - Add new design guidelines for title casing etc [#5501](https://github.com/rerun-io/rerun/pull/5501) - Automatically expand and scroll the streams tree when focusing on an item [#5494](https://github.com/rerun-io/rerun/pull/5494) - Reduce the height of the tab bars and side panel titles [#5609](https://github.com/rerun-io/rerun/pull/5609) - Support toggling item visibility on touch screens [#5624](https://github.com/rerun-io/rerun/pull/5624) - Select active recording if nothing else is selected [#5627](https://github.com/rerun-io/rerun/pull/5627) - Enable selecting data sources and blueprints and recordings in them [#5646](https://github.com/rerun-io/rerun/pull/5646) - Warn user when a software rasterizer is used [#5655](https://github.com/rerun-io/rerun/pull/5655) - Improve spacing and alignment of menus [#5680](https://github.com/rerun-io/rerun/pull/5680) - Simplify Welcome Screen and use card-based layout for examples [#5699](https://github.com/rerun-io/rerun/pull/5699) - Make selection history global instead of per recordings [#5739](https://github.com/rerun-io/rerun/pull/5739) - Improve formatting of numbers on plot Y axis [#5753](https://github.com/rerun-io/rerun/pull/5753) - Show all loaded applications in recordings panel [#5766](https://github.com/rerun-io/rerun/pull/5766) - Wider selection panel by default [#5777](https://github.com/rerun-io/rerun/pull/5777) - Tighter UI for tensor, annotation-context, view coordinates, recording [#5782](https://github.com/rerun-io/rerun/pull/5782) - Always show welcome screen, but sometimes fade it in [#5787](https://github.com/rerun-io/rerun/pull/5787) #### ๐Ÿ•ธ๏ธ Web - Support loading multiple recordings and/or blueprints in web-viewer [#5548](https://github.com/rerun-io/rerun/pull/5548) - Build release `.wasm` with debug symbols [#5708](https://github.com/rerun-io/rerun/pull/5708) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Build wheels for Linux ARM64 [#5511](https://github.com/rerun-io/rerun/pull/5511) #### ๐Ÿ“ฆ Dependencies - Update wgpu to 0.19.3 [#5409](https://github.com/rerun-io/rerun/pull/5409) - Update h2 to 0.3.26 to address RUSTSEC-2024-0332 [#5775](https://github.com/rerun-io/rerun/pull/5775) #### ๐Ÿคทโ€ Other - Build CLI for Linux ARM64 [#5503](https://github.com/rerun-io/rerun/pull/5503) - Allow hiding/showing entity subtrees under shown/hidden parent tree [#5508](https://github.com/rerun-io/rerun/pull/5508) - Introduce basic support for `$origin` substitution in `EntityPathFilter` [#5517](https://github.com/rerun-io/rerun/pull/5517) - Introduce `rr.notebook_show()` to simplify notebook experience [#5715](https://github.com/rerun-io/rerun/pull/5715) - Also remove nested inclusions when removing a subtree [#5720](https://github.com/rerun-io/rerun/pull/5720) - Prevent gratuitous blueprint saves by not garbage collecting when the blueprint hasn't changed [#5793](https://github.com/rerun-io/rerun/pull/5793) - Refactor `Selection` using `IndexMap` and make it more encapsulated [#5569](https://github.com/rerun-io/rerun/pull/5569) ## [0.14.1](https://github.com/rerun-io/rerun/compare/0.14.0...0.14.1) - C++ build artifact fix - 2024-02-29 This release is identical to 0.14.0 and merely fixes an issue in the build artifacts for C++: 0.14.0 only contained binaries for Linux x64, this release has the full set for Linux x64, Windows x64, Mac x64 & Mac Arm64. ## [0.14.0](https://github.com/rerun-io/rerun/compare/0.13.0...0.14.0) - "Unlimited" point clouds & lines, quality of life improvements, bugfixes - 2024-02-28 https://github.com/rerun-io/rerun/assets/1220815/beb50081-2dff-4535-b133-4dc4a5a24be0 ### โœจ Overview & highlights Originally, we planned to do only a bugfix release, but we got an unexpected amount of goodies amassed already. We're still ramping up for programmable blueprints (soon!), but meanwhile enjoy these improvements in 0.14! - ๐Ÿ“ˆ Limits for number of points & lines per space view lifted. - ๐Ÿ–ฑ๏ธ Added context menu (right-click) actions for items on the Blueprint panel. (Only getting started on this, more actions in future releases!) - ๐Ÿš€ Speed improvements for scenes with many transforms and large point clouds. - ๐Ÿ”บ Built-in STL mesh support. - ๐ŸŽฅ First-person camera. - ๐Ÿ› Fixes regressions in Space View spawn heuristics from 0.13, and many more bugfixes. - ๐Ÿง‘โ€๐Ÿซ Two new examples: [Gesture Recognition](https://github.com/rerun-io/rerun/tree/0.14.0/examples/python/gesture_detection) & [RRT* Pathfinding](https://github.com/rerun-io/rerun/tree/0.14.0/examples/python/rrt-star) ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Add helpers for perspective cameras [#5238](https://github.com/rerun-io/rerun/pull/5238) - Fix `spawn` starting the Viewer even if logging is disabled [#5284](https://github.com/rerun-io/rerun/pull/5284) #### ๐Ÿ Python API - Add missing Python docs for `disable_timeline` & `reset_time` [#5269](https://github.com/rerun-io/rerun/pull/5269) - Fix missing error message when passing `from_parent` + Rerun transform type to `rerun.Transform3D` [#5270](https://github.com/rerun-io/rerun/pull/5270) #### ๐Ÿฆ€ Rust API - Fix using `rerun` crate as a dependency on CI [#5170](https://github.com/rerun-io/rerun/pull/5170) #### ๐Ÿชณ Bug fixes - Enforce the rule: heuristics should never add a new view that would be completely covered by an existing view [#5164](https://github.com/rerun-io/rerun/pull/5164) - Remove log spam when quickly resizing the Viewer [#5189](https://github.com/rerun-io/rerun/pull/5189) - Fix incorrect minimum supported Rust version mentioned in docs and examples [#5195](https://github.com/rerun-io/rerun/pull/5195) - Less restrictive visualizability constraints of 2D entities, improved space view generation heuristics [#5188](https://github.com/rerun-io/rerun/pull/5188) - Fix ugly UI for some Arrow data [#5235](https://github.com/rerun-io/rerun/pull/5235) - Fix missing redraw upon resetting blueprint [#5262](https://github.com/rerun-io/rerun/pull/5262) - Fix non-deterministic redundancy check for space view spawning heuristic [#5266](https://github.com/rerun-io/rerun/pull/5266) - Fix resetting vertical axis when using non-uniform zoom on Time Series [#5287](https://github.com/rerun-io/rerun/pull/5287) #### ๐ŸŒ Viewer improvements - Clear all blueprints in RAM and on disk when clicking "Reset Viewer" [#5199](https://github.com/rerun-io/rerun/pull/5199) - Improve the orbit eye to always maintain an up-axis [#5193](https://github.com/rerun-io/rerun/pull/5193) - Focus on current bounding-box when resetting camera-eye on a 3D space view (double click it) [#5209](https://github.com/rerun-io/rerun/pull/5209) - Add STL mesh support [#5244](https://github.com/rerun-io/rerun/pull/5244) - Add first person 3D eye-camera [#5249](https://github.com/rerun-io/rerun/pull/5249) #### ๐Ÿš€ Performance improvements - More robust handling of maximum texture size for non-color data, slight perf improvements for large point clouds [#5229](https://github.com/rerun-io/rerun/pull/5229) - Cached transforms & disconnected spaces for faster scenes with many transforms [#5221](https://github.com/rerun-io/rerun/pull/5221) - Optimized cpu time for 3D point clouds (once again!) [#5273](https://github.com/rerun-io/rerun/pull/5273) - Only compute store/caching stats when the memory panel is opened [#5274](https://github.com/rerun-io/rerun/pull/5274) - Increase the max WebSocket frame limit for the native client [#5282](https://github.com/rerun-io/rerun/pull/5282) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add Gesture Recognition example [#5241](https://github.com/rerun-io/rerun/pull/5241) (thanks [@andreasnaoum](https://github.com/andreasnaoum)!) - Add example visualizing RRT* [#5214](https://github.com/rerun-io/rerun/pull/5214) (thanks [@02alexander](https://github.com/02alexander)!) #### ๐Ÿ“š Docs - Fix broken link in the installing-viewer documentation [#5236](https://github.com/rerun-io/rerun/pull/5236) (thanks [@BirgerMoell](https://github.com/BirgerMoell)!) #### ๐Ÿ–ผ UI improvements - Context Menu 1: Basic scaffolding and simple actions [#5163](https://github.com/rerun-io/rerun/pull/5163) - Context menu 2: add support for multiple selection [#5205](https://github.com/rerun-io/rerun/pull/5205) - Context menu 3: add "Move to new container" context menu action [#5210](https://github.com/rerun-io/rerun/pull/5210) - Context menu 4: add "Clone space view" action [#5265](https://github.com/rerun-io/rerun/pull/5265) - Context menu 5: refactor into multiple files [#5289](https://github.com/rerun-io/rerun/pull/5289) - Clickable path parts in selection-panel [#5220](https://github.com/rerun-io/rerun/pull/5220) - Don't show the blueprint section when selecting recordings [#5245](https://github.com/rerun-io/rerun/pull/5245) - Use the same icon for recordings everywhere [#5246](https://github.com/rerun-io/rerun/pull/5246) #### ๐ŸŽจ Renderer improvements - Lift point cloud size limitations [#5192](https://github.com/rerun-io/rerun/pull/5192) - Lift line vertex/strip count limitations [#5207](https://github.com/rerun-io/rerun/pull/5207) - Fix banding artifacts of 3D space view's skybox [#5279](https://github.com/rerun-io/rerun/pull/5279) #### ๐Ÿ“ฆ Dependencies - Bump maturin to 1.14.0 [#5197](https://github.com/rerun-io/rerun/pull/5197) - Update `tungstenite` to remove RUSTSEC warning [#5200](https://github.com/rerun-io/rerun/pull/5200) - Lock the web-sys version to 0.3.67 [#5211](https://github.com/rerun-io/rerun/pull/5211) ## [0.13.0](https://github.com/rerun-io/rerun/compare/0.12.1...0.13.0) - Fast time series, improved layout editing & UI overrides - 2024-02-12

### โœจ Overview & highlights This release focuses on scalar time series -- both from a performance and UI perspectives. Check out our [associated blog post](https://rerun.io/blog/fast-plots) for more information. - ๐Ÿ“ˆ Rerun can now visualize many time series in the kHz range in real-time: - The new query cache optimizes data access, improving query performance by 20-50x - Sub-pixel aggregation prevents unnecessary overdraw when rendering plots, improving rendering time by 30-120x - [Points](https://rerun.io/docs/reference/types/archetypes/points3d), [lines](https://rerun.io/docs/reference/types/archetypes/line_strips3d), [arrows](https://rerun.io/docs/reference/types/archetypes/arrows3d) and [boxes](https://rerun.io/docs/reference/types/archetypes/boxes3d) all benefit from query caching too to a lesser extent, yielding 2-5x performance improvements - ๐Ÿ–ผ UI overrides: - The new `Scalar`, `SeriesLine` & `SeriesPoint` archetypes allow for customizing plots both at logging and visualization time - Customize marker shapes, marker sizes, etc from code or directly through the UI - Specify axis labels, lock axes, etc from code or directly through the UI - ๐ŸŒ Viewer: - The number of compute threads can now be controlled using the `--threads`/`-j` flag - Added support YUY2-encoded images (thanks [@oxkitsune](https://github.com/oxkitsune)!) - Space views can now be drag-and-dropped directly from the blueprint tree - Scenes with 100+ entities are now up to 5x faster. - ๐Ÿšš New Space View and Container creation workflow: - When selected, containers have a children list in the Selection Panel, where new Space Views and Containers may be added. - New modal dialog to add Space Views and Containers. - The same dialog is also available from the `+` button of the Blueprint tree UI. - The Space View's origin can now be edited in the Selection Panel. - The container hierarchy can now be cleaned up with the new `Simplify Hierarchy` button in the Selection Panel for containers. - ๐Ÿฆ€ The Rust SDK now exposes an optional integration with the `mint` crate - ๐Ÿ•ธ๏ธ The web UI SDK now supports loading multiple `.rrd` URLs - ๐Ÿ”บ The web viewer now renders using WebGPU by default (when available), leading to lower memory usage on Chrome. You can override this behavior using `?renderer=webgl`/`?renderer=webgpu` url parameter, or restart with WebGL/WebGPU respectively from the options menu. As well as a lot of miscellaneous bug fixes and usability improvements: see details below. Check out our [migration guide](https://rerun.io/docs/reference/migration/migration-0-13). ### ๐Ÿ”Ž Details #### ๐Ÿชต Log API - Mark TimeSeriesScalar as deprecated in all SDKs and documentation [#5102](https://github.com/rerun-io/rerun/pull/5102) #### ๐ŸŒŠ C++ API - Document that in C++ PinholeProjection::from_mat3x3 is column major [#4843](https://github.com/rerun-io/rerun/pull/4843) - Include LICENSE files into C++ SDK Assets [#4870](https://github.com/rerun-io/rerun/pull/4870) (thanks [@rgolovanov](https://github.com/rgolovanov)!) - Fix C++ Arrow build flag forwarding [#4921](https://github.com/rerun-io/rerun/pull/4921) (thanks [@rgolovanov](https://github.com/rgolovanov)!) #### ๐Ÿฆ€ Rust API - Add integration with the `mint` crate [#4753](https://github.com/rerun-io/rerun/pull/4753) #### ๐Ÿ Python API - Fix support for compressing mono images by respecting mode to determine depth [#4847](https://github.com/rerun-io/rerun/pull/4847) #### ๐Ÿชณ Bug fixes - External loader: don't do process IO on compute thread-pool [#4942](https://github.com/rerun-io/rerun/pull/4942) - Fix a Visible Time Range UI issue where the summary string would display the wrong data range [#5034](https://github.com/rerun-io/rerun/pull/5034) - Clear empty containers after tile drag-and-drop [#5044](https://github.com/rerun-io/rerun/pull/5044) - Allow for very large meshes & plots by always picking the largest available GPU buffer size [#5053](https://github.com/rerun-io/rerun/pull/5053) - Fix forever repaint of big scenes [#5071](https://github.com/rerun-io/rerun/pull/5071) - Fix `RERUN_FLUSH_NUM_BYTES` and data size estimations [#5086](https://github.com/rerun-io/rerun/pull/5086) - Make `rectangle_fs.wgsl` compile on chrome despite angle/mesa bug (#3931) [#5074](https://github.com/rerun-io/rerun/pull/5074) #### ๐ŸŒ Viewer improvements - Introduce Scalar, SeriesLine, and SeriesPoint archetypes with their own visualizers [#4875](https://github.com/rerun-io/rerun/pull/4875) - Support modifying the plot style by introducing a generic framework for overriding components [#4914](https://github.com/rerun-io/rerun/pull/4914) - Introduce a new blueprint archetype for AxisY configuration in a plot [#5028](https://github.com/rerun-io/rerun/pull/5028) - Improve the selection/hover behavior for plots [#5096](https://github.com/rerun-io/rerun/pull/5096) - Click a spatial space view background to select the space view itself [#4796](https://github.com/rerun-io/rerun/pull/4796) - Double-clicking an entity in the blueprint & time panels focuses the 3D camera on it [#4799](https://github.com/rerun-io/rerun/pull/4799) - When loading a .ply file, warn about ignored properties [#4934](https://github.com/rerun-io/rerun/pull/4934) - Make it easier to position 3D eye-camera center [#4943](https://github.com/rerun-io/rerun/pull/4943) - Include tessellation and rendering in CPU time shown in top bar [#4951](https://github.com/rerun-io/rerun/pull/4951) - Allow selection of entities directly in the plot space view [#4959](https://github.com/rerun-io/rerun/pull/4959) - Texture support for raw `Mesh3D` logging [#4894](https://github.com/rerun-io/rerun/pull/4894) #### ๐Ÿš€ Performance improvements - Add `--threads` / `-j` to control number of compute threads [#5021](https://github.com/rerun-io/rerun/pull/5021) - Introduce the query cache: - Primary caching 3: bare-bone latest-at caching [#4659](https://github.com/rerun-io/rerun/pull/4659) - Primary caching 4: runtime toggle support [#4680](https://github.com/rerun-io/rerun/pull/4680) - Primary caching 5: 2D & 3D point clouds [#4681](https://github.com/rerun-io/rerun/pull/4681) - Primary caching 6: TextLogs & TimeSeries [#4698](https://github.com/rerun-io/rerun/pull/4698) - Primary caching 7: Always expose the data time in query responses [#4711](https://github.com/rerun-io/rerun/pull/4711) - Primary caching 8: implement latest-at data-time cache entry deduplication [#4712](https://github.com/rerun-io/rerun/pull/4712) - Primary caching 9: timeless latest-at support [#4721](https://github.com/rerun-io/rerun/pull/4721) - Primary caching 10: latest-at cache invalidation [#4726](https://github.com/rerun-io/rerun/pull/4726) - Primary caching 11: cache stats and integration with memory panel [#4773](https://github.com/rerun-io/rerun/pull/4773) - Primary caching 12: bare-bone range support [#4784](https://github.com/rerun-io/rerun/pull/4784) - Primary caching 13: stats & memory panel integration for range queries [#4785](https://github.com/rerun-io/rerun/pull/4785) - Primary caching 14: don't bake `LatestAt(T-1)` results into low-level range queries [#4793](https://github.com/rerun-io/rerun/pull/4793) - Primary caching 15: range read performance optimization [#4800](https://github.com/rerun-io/rerun/pull/4800) - Primary caching 16: context-free range semantics [#4851](https://github.com/rerun-io/rerun/pull/4851) - Primary caching 17: timeless range [#4852](https://github.com/rerun-io/rerun/pull/4852) - Primary caching 18: range invalidation (ENABLED BY DEFAULT :confetti_ball:) [#4853](https://github.com/rerun-io/rerun/pull/4853) - Primary caching 19 (final): make cache globals non-static [#4856](https://github.com/rerun-io/rerun/pull/4856) - Integrate query caching with more primitives: - Cached 2D & 3D box clouds [#5000](https://github.com/rerun-io/rerun/pull/5000) - Cached 2D & 3D line clouds [#5083](https://github.com/rerun-io/rerun/pull/5083) - Cached 2D & 3D arrow clouds [#5088](https://github.com/rerun-io/rerun/pull/5088) - Configurable dynamic plot aggregation based on zoom-level [#4865](https://github.com/rerun-io/rerun/pull/4865) - Improved automatic view creation heuristic, major speedup for scenes with many entities [#4874](https://github.com/rerun-io/rerun/pull/4874) - Optimize point clouds [#4932](https://github.com/rerun-io/rerun/pull/4932) #### ๐Ÿง‘โ€๐Ÿซ Examples - Update all examples that use `TimeSeriesScalar` to use `Scalar` instead [#5042](https://github.com/rerun-io/rerun/pull/5042) #### ๐Ÿ“š Docs - Improve documentation of the `Clear` archetype [#4760](https://github.com/rerun-io/rerun/pull/4760) - `DisconnectedSpace` now only applies to spatial space views [#4935](https://github.com/rerun-io/rerun/pull/4935) - Fill gaps in image encoding documentation, fix how Python documents union variants [#4988](https://github.com/rerun-io/rerun/pull/4988) #### ๐Ÿ–ผ UI improvements - Improve timeseries Space Views: - Introduce a new component for MarkerShape and use it in SeriesPoint [#5004](https://github.com/rerun-io/rerun/pull/5004) - Introduce a new StrokeWidth component and use it for SeriesLine [#5025](https://github.com/rerun-io/rerun/pull/5025) - Break up plot charts when there's a `Clear` [#4957](https://github.com/rerun-io/rerun/pull/4957) - Only show the LegacyVisualizer if a user logs with TimeSeriesScalar archetype [#5023](https://github.com/rerun-io/rerun/pull/5023) - Fix lagging time cursor when panning a time series plot [#4972](https://github.com/rerun-io/rerun/pull/4972) - New Space View and Container creation workflow: - Use the "Add space view/container" modal for the `+` button of the blueprint tree [#5012](https://github.com/rerun-io/rerun/pull/5012) - Add support for removing container children from the selection panel [#4930](https://github.com/rerun-io/rerun/pull/4930) - Add support for full span highlighting to modal and use it in the "Add space view or container" modal [#4822](https://github.com/rerun-io/rerun/pull/4822) - Remove the "+" icon from the "Add SV/Container" modal and close on click [#4927](https://github.com/rerun-io/rerun/pull/4927) - New empty space view defaults to uncollapsed in blueprint tree [#4982](https://github.com/rerun-io/rerun/pull/4982) - Do not allow adding Horizontal/Vertical containers inside of containers with the same type [#5091](https://github.com/rerun-io/rerun/pull/5091) - Selection improvements: - Click a recording to select it [#4761](https://github.com/rerun-io/rerun/pull/4761) - Press the escape key to clear the current selection [#5103](https://github.com/rerun-io/rerun/pull/5103) - Clear selection when clicking blank space in the Blueprint View [#4831](https://github.com/rerun-io/rerun/pull/4831) - Selecting/hovering components now highlights their parent entity [#4748](https://github.com/rerun-io/rerun/pull/4748) - Add support for drag-and-drop in blueprint tree [#4910](https://github.com/rerun-io/rerun/pull/4910) - Add support for editing a space view's space origin [#4848](https://github.com/rerun-io/rerun/pull/4848) - Add Help and Discord to command palette [#4752](https://github.com/rerun-io/rerun/pull/4752) - Syntax highlighting of entity paths and instance paths [#4803](https://github.com/rerun-io/rerun/pull/4803) - Update container (and a couple other) icons [#4814](https://github.com/rerun-io/rerun/pull/4814) - Make space view names optional and subdue placeholder view label in the UI [#4682](https://github.com/rerun-io/rerun/pull/4682) - Show download sizes of in the example page [#4841](https://github.com/rerun-io/rerun/pull/4841) - Style container's label as unnamed [#4975](https://github.com/rerun-io/rerun/pull/4975) - Fix space view cloning to also copy entity properties (visible time range, etc.) [#4978](https://github.com/rerun-io/rerun/pull/4978) - Improve how the root container is displayed and handled in the blueprint tree [#4989](https://github.com/rerun-io/rerun/pull/4989) - Improve the UI for the entity query [#5022](https://github.com/rerun-io/rerun/pull/5022) - Don't show the Blueprint header when on the welcome screen [#5046](https://github.com/rerun-io/rerun/pull/5046) - Move Visible Time Range higher in the Selection Panel [#5036](https://github.com/rerun-io/rerun/pull/5036) - Clean up time range UI [#5089](https://github.com/rerun-io/rerun/pull/5089) - Improve preview UI for Component data [#5093](https://github.com/rerun-io/rerun/pull/5093) - Paint closest labels on top of labels further away [#5124](https://github.com/rerun-io/rerun/pull/5124) #### ๐Ÿ•ธ๏ธ Web - Web: Support multiple `.rrd` URLs [#4740](https://github.com/rerun-io/rerun/pull/4740) - Unify `web_viewer/index.html` and `index_bundled.html` [#4720](https://github.com/rerun-io/rerun/pull/4720) - Allow forcing WebGPU/WebGL on the web player, new command line argument to force graphics backend [#4981](https://github.com/rerun-io/rerun/pull/4981) #### ๐ŸŽจ Renderer improvements - Update to wgpu 0.19 and latest `egui` trunk [#4885](https://github.com/rerun-io/rerun/pull/4885) - Support YUY2-encoded images [#4877](https://github.com/rerun-io/rerun/pull/4877) (thanks [@oxkitsune](https://github.com/oxkitsune)!) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Default to DEBUG log level in debug builds [#4749](https://github.com/rerun-io/rerun/pull/4749) - New debug option to show an actual timeline for the Blueprint [#4609](https://github.com/rerun-io/rerun/pull/4609) - Primary cache: basic debug tools via command palette [#4948](https://github.com/rerun-io/rerun/pull/4948) #### ๐Ÿ—ฃ Refactors - Migrate from `egui_Tile::TileId` to proper blueprint IDs in `ViewportBlueprint` API [#4900](https://github.com/rerun-io/rerun/pull/4900) #### ๐Ÿ“ฆ Dependencies - Remove `egui_plot` as dependency from `re_sdk` [#5099](https://github.com/rerun-io/rerun/pull/5099) - Update to egui 0.25 and winit 0.29 [#4732](https://github.com/rerun-io/rerun/pull/4732) - Prune dependencies from `rerun` and `re_sdk` [#4824](https://github.com/rerun-io/rerun/pull/4824) - Relax pyarrow dependency to `>=14.0.2` [#5054](https://github.com/rerun-io/rerun/pull/5054) - Update egui_tiles to 0.7.2 [#5107](https://github.com/rerun-io/rerun/pull/5107) #### ๐Ÿคท Other #### ๐Ÿคท Other - Add `rerun --serve` and improve `--help` [#4834](https://github.com/rerun-io/rerun/pull/4834) - `rerun print`: print just summary, unless given `--verbose` [#5079](https://github.com/rerun-io/rerun/pull/5079) ## [0.12.1](https://github.com/rerun-io/rerun/compare/0.12.0...0.12.1) - Data loader bug fixes - 2024-01-17 #### ๐ŸŒŠ C++ API - Fix CMake trying to pick up test folders outside of the Rerun project/zip [#4770](https://github.com/rerun-io/rerun/pull/4770) (thanks [@KevinGliewe](https://github.com/KevinGliewe)!) - Document that `Mat3x3` and `Mat4x4` constructors are column major [#4842](https://github.com/rerun-io/rerun/pull/4842) #### ๐Ÿฆ€ Rust API - Fix `entity_path_vec!` and `entity_path!` depending on `ToString` being in scope [#4766](https://github.com/rerun-io/rerun/pull/4766) (thanks [@kpreid](https://github.com/kpreid)!) #### ๐Ÿชณ Bug fixes - Fix external data loader plugins on Windows [#4840](https://github.com/rerun-io/rerun/pull/4840) - Reduce latency when loading data from external loaders [#4797](https://github.com/rerun-io/rerun/pull/4797) - Always point to versioned manifest when building a versioned binary [#4781](https://github.com/rerun-io/rerun/pull/4781) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - External loaders: remove warnings on duplicated binary on `$PATH` [#4833](https://github.com/rerun-io/rerun/pull/4833) #### ๐Ÿคท Other #### ๐Ÿคท Other - Include `Cargo.lock` in `rerun-cli` crate [#4750](https://github.com/rerun-io/rerun/pull/4750) - Replace `atty` dependency with `std::io::IsTerminal` [#4790](https://github.com/rerun-io/rerun/pull/4790) (thanks [@kpreid](https://github.com/kpreid)!) ## [0.12.0](https://github.com/rerun-io/rerun/compare/0.11.0...0.12.0) - Data Loaders, Container-editing, Python-3.12 - 2024-01-09

### โœจ Overview & highlights - ๐ŸŒ The Rerun Viewer now supports a plugin system for creating [arbitrary external data loaders](https://rerun.io/docs/concepts/logging-and-ingestion/data-loaders/overview). - ๐Ÿ•ธ๏ธ More built-in examples are now available in the viewer. - ๐Ÿ The Python SDK now works with Python-3.12. - ๐Ÿ“˜ Blueprint containers can now be selected and modified. - ๐Ÿš€ In the native viewer, space views are now evaluated in parallel for improved performance. - ๐Ÿง‘โ€๐Ÿซ Support and guide for [sharing a recording across multiple processes](https://rerun.io/docs/howto/shared-recordings). - ๐Ÿ“ Entity-paths allowed characters and escaping are now more file-like [#4476](https://github.com/rerun-io/rerun/pull/4476): - There is no need for " quotes around path parts, instead we now use \ to escape special characters. - You need to escape any character that isn't alphabetical, numeric, ., -, or _. ### ๐Ÿ”Ž Details #### ๐ŸŒŠ C++ API - Exposing `recording_id` in C and C++ SDKs [#4384](https://github.com/rerun-io/rerun/pull/4384) - All C++ preprocessor macros start now with RR_ (instead of a mix of RR_ and RERUN_) [#4371](https://github.com/rerun-io/rerun/pull/4371) - C++ & Python API: add helpers for constructing an entity path [#4595](https://github.com/rerun-io/rerun/pull/4595) #### ๐Ÿ Python API - Add `--stdout`/`-o` to our CLI helper library [#4544](https://github.com/rerun-io/rerun/pull/4544) - C++ & Python API: add helpers for constructing an entity path [#4595](https://github.com/rerun-io/rerun/pull/4595) - Python SDK: introduce deferred garbage collection queue [#4583](https://github.com/rerun-io/rerun/pull/4583) - Add support for Python 3.12 [#4146](https://github.com/rerun-io/rerun/pull/4146) #### ๐Ÿฆ€ Rust API - Exposing `recording_id` in Rust SDK [#4383](https://github.com/rerun-io/rerun/pull/4383) - Add `--stdout`/`-o` to our CLI helper library [#4544](https://github.com/rerun-io/rerun/pull/4544) - Document how to construct an entity path for the Rust logging API [#4584](https://github.com/rerun-io/rerun/pull/4584) #### ๐Ÿชณ Bug fixes - Bugfix: show labels on segmentation images with trivial dimensions [#4368](https://github.com/rerun-io/rerun/pull/4368) - Datastore: don't eagerly sort in bucket split routine on ingestion path [#4417](https://github.com/rerun-io/rerun/pull/4417) - Resolve spurious blueprint panel group collapsing [#4548](https://github.com/rerun-io/rerun/pull/4548) - Fix rectangle that indicates the zoomed pixel area on hover being one pixel to small [#4590](https://github.com/rerun-io/rerun/pull/4590) - Fix wrong RowId order of logged data [#4658](https://github.com/rerun-io/rerun/pull/4658) - Make scroll-to-zoom a lot more responsive in 3D views [#4668](https://github.com/rerun-io/rerun/pull/4668) - Fix heuristic object properties being broken in some cases / fix DepthMeter being ignored sometimes [#4679](https://github.com/rerun-io/rerun/pull/4679) #### ๐ŸŒ Viewer improvements - Make Viewer contexts's render context reference non-mutable [#4430](https://github.com/rerun-io/rerun/pull/4430) - The Rerun Viewer can now consume from stdin: - Standard input/output support 1: stream RRD data from stdin [#4511](https://github.com/rerun-io/rerun/pull/4511) - Standard input/output support 2: Rust SDK stdout impl/examples/docs [#4512](https://github.com/rerun-io/rerun/pull/4512) - Standard input/output support 3: Python SDK stdout impl/examples/docs [#4513](https://github.com/rerun-io/rerun/pull/4513) - Standard input/output support 4: C++ SDK stdout impl/examples/docs [#4514](https://github.com/rerun-io/rerun/pull/4514) - Support for custom DataLoaders: - `DataLoader`s 0: utility for hierarchical `EntityPath` from file path [#4516](https://github.com/rerun-io/rerun/pull/4516) - `DataLoader`s 1: introduce, and migrate to, `DataLoader`s [#4517](https://github.com/rerun-io/rerun/pull/4517) - `DataLoader`s 2: add text-based `DataLoader` (`.txt`, `.md`) [#4518](https://github.com/rerun-io/rerun/pull/4518) - `DataLoader`s 3: add 3D point cloud `DataLoader` (`.ply`) [#4519](https://github.com/rerun-io/rerun/pull/4519) - `DataLoader`s 4: add generic folder `DataLoader` [#4520](https://github.com/rerun-io/rerun/pull/4520) - `DataLoader`s 5: add support for external binary `DataLoader`s (PATH) [#4521](https://github.com/rerun-io/rerun/pull/4521) - `DataLoader`s 6: first-class support for `Incompatible` [#4565](https://github.com/rerun-io/rerun/pull/4565) - `DataLoader`s 7: support for custom `DataLoader`s [#4566](https://github.com/rerun-io/rerun/pull/4566) - 3D->2D & 2D->3D selection visualizations stick now around on selection [#4587](https://github.com/rerun-io/rerun/pull/4587) - The Viewer now supports segmentation images logged natively as floats [#4585](https://github.com/rerun-io/rerun/pull/4585) - Fix incorrect bounding box calculation for camera view parts [#4640](https://github.com/rerun-io/rerun/pull/4640) #### ๐Ÿš€ Performance improvements - Parallelize Space View system evaluation [#4460](https://github.com/rerun-io/rerun/pull/4460) - Limit server memory [#4636](https://github.com/rerun-io/rerun/pull/4636) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add nuScenes-based lidar examples [#4407](https://github.com/rerun-io/rerun/pull/4407) (thanks [@roym899](https://github.com/roym899)!) - Nightly builds [#4505](https://github.com/rerun-io/rerun/pull/4505) - Add LLM token classification example [#4541](https://github.com/rerun-io/rerun/pull/4541) (thanks [@roym899](https://github.com/roym899)!) #### ๐Ÿ“š Docs - Shared recordings 3: add how-to guide [#4385](https://github.com/rerun-io/rerun/pull/4385) - Document our crate organization in ARCHITECTURE.md [#4458](https://github.com/rerun-io/rerun/pull/4458) #### ๐Ÿ–ผ UI improvements - Plot legend visibility and position control (part 1): route `EntityProperties` to `SpaceViewClass` methods [#4363](https://github.com/rerun-io/rerun/pull/4363) - Plot legend visibility and position control (part 2): minor UI spacing improvement [#4364](https://github.com/rerun-io/rerun/pull/4364) - Reset accumulated bounding box when resetting camera [#4369](https://github.com/rerun-io/rerun/pull/4369) - Plot legend visibility and position control (part 3): legend UI added for both timeseries and bar charts space views [#4365](https://github.com/rerun-io/rerun/pull/4365) - Improve component data table UI in the selection panel [#4370](https://github.com/rerun-io/rerun/pull/4370) - Add optional color component to BarChart archetype [#4372](https://github.com/rerun-io/rerun/pull/4372) - Resolve unexpected view-partitioning by only bucket images when creating a new 2D view [#4361](https://github.com/rerun-io/rerun/pull/4361) - Restore `egui_plot` auto-bounds state after dragging the time cursor in timeseries space views [#4270](https://github.com/rerun-io/rerun/pull/4270) - Make Space View containers selectable and editable [#4403](https://github.com/rerun-io/rerun/pull/4403) - Improve selection and hover behavior of viewport's tabs [#4424](https://github.com/rerun-io/rerun/pull/4424) - Improve the Selection Panel UI for components when a single item is selected [#4416](https://github.com/rerun-io/rerun/pull/4416) - Show connection status in top bar [#4443](https://github.com/rerun-io/rerun/pull/4443) - Add the possibility to add empty space views of all registered types [#4467](https://github.com/rerun-io/rerun/pull/4467) - Add experimental Dataframe Space View [#4468](https://github.com/rerun-io/rerun/pull/4468) - Show e2e latency in metric UI in top panel [#4502](https://github.com/rerun-io/rerun/pull/4502) - Show leading slash when formatting entity paths [#4537](https://github.com/rerun-io/rerun/pull/4537) - Improve entity size stats: include whole subtree [#4542](https://github.com/rerun-io/rerun/pull/4542) - Add support for modal Windows to `re_ui` and use it for the Space View entity picker [#4577](https://github.com/rerun-io/rerun/pull/4577) - Show entity path parts (entity "folder" names) unescaped in UI [#4603](https://github.com/rerun-io/rerun/pull/4603) - Improve Rerun Menu with link to Rerun Discord [#4661](https://github.com/rerun-io/rerun/pull/4661) - Introduce container icons and update space views and UI icons [#4663](https://github.com/rerun-io/rerun/pull/4663) - Initial support for manually adding container and space view in the hierarchy [#4616](https://github.com/rerun-io/rerun/pull/4616) - Change modal position to a fixed vertical distance from the top of the window [#4700](https://github.com/rerun-io/rerun/pull/4700) #### ๐Ÿ•ธ๏ธ Web - Load examples manifest via HTTP [#4391](https://github.com/rerun-io/rerun/pull/4391) - Remove builds and usage of `demo.rerun.io` [#4418](https://github.com/rerun-io/rerun/pull/4418) - Open all links in a new tab [#4582](https://github.com/rerun-io/rerun/pull/4582) #### ๐ŸŽจ Renderer improvements - Log wgpu adapter on web [#4414](https://github.com/rerun-io/rerun/pull/4414) - Interior mutability for re_renderer's static resource pools (RenderPipeline/Shader/Layouts/etc.) [#4421](https://github.com/rerun-io/rerun/pull/4421) - Make draw data creation no longer require a mutable re_renderer context [#4422](https://github.com/rerun-io/rerun/pull/4422) - Move re_renderer examples to its own crate in order to make workspace level examples less confusing [#4472](https://github.com/rerun-io/rerun/pull/4472) - Improved wgpu error handling, no more crashes through wgpu validation errors [#4509](https://github.com/rerun-io/rerun/pull/4509) - Expose `wgpu` profiling scopes to puffin [#4581](https://github.com/rerun-io/rerun/pull/4581) - Improve shading with two lights instead of one [#4648](https://github.com/rerun-io/rerun/pull/4648) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Fix not tracking wgsl file changes for web build [#4374](https://github.com/rerun-io/rerun/pull/4374) - Auto format all the things [#4373](https://github.com/rerun-io/rerun/pull/4373) - Refactor naming of `SpaceViewClass` and changed `TextSpaceView` name to "Text Log" [#4386](https://github.com/rerun-io/rerun/pull/4386) - Local-first wheel publishing [#4454](https://github.com/rerun-io/rerun/pull/4454) - Remove backtraces on error when running `rerun` binary [#4746](https://github.com/rerun-io/rerun/pull/4746) #### ๐Ÿ—ฃ Refactors - Selection state is now fully double buffered and has interior mutability [#4387](https://github.com/rerun-io/rerun/pull/4387) - Time control is now behind a RwLock, making recording config access non-mutable everywhere [#4389](https://github.com/rerun-io/rerun/pull/4389) - Enable (selected) new cargo clippy lints [#4404](https://github.com/rerun-io/rerun/pull/4404) - Add lint for builder pattern functions and deref impls to be marked `#[inline]` [#4435](https://github.com/rerun-io/rerun/pull/4435) - Pass viewer context always non-mutable [#4438](https://github.com/rerun-io/rerun/pull/4438) - RenderContext usage cleanup [#4446](https://github.com/rerun-io/rerun/pull/4446) - Integrate re_tensor_ops crate into re_space_view_tensor [#4450](https://github.com/rerun-io/rerun/pull/4450) - Use TOML for example readme front-matter [#4553](https://github.com/rerun-io/rerun/pull/4553) - Rename `StoreDb` to `EntityDb`, `re_data_store` -> `re_entity_db` [#4670](https://github.com/rerun-io/rerun/pull/4670) - Rename `re_arrow_store` to `re_data_store` [#4672](https://github.com/rerun-io/rerun/pull/4672) #### ๐Ÿ“ฆ Dependencies - Update egui and wgpu [#4111](https://github.com/rerun-io/rerun/pull/4111) - Update Rust to 1.76.0 [#4390](https://github.com/rerun-io/rerun/pull/4390) #### ๐Ÿคท Other #### ๐Ÿคท Other - Use `:` instead of `.` as the entity:component separator in paths [#4471](https://github.com/rerun-io/rerun/pull/4471) - File-like entity paths [#4476](https://github.com/rerun-io/rerun/pull/4476) - Make the new container blueprints the default behavior [#4642](https://github.com/rerun-io/rerun/pull/4642) ## [0.11.0](https://github.com/rerun-io/rerun/compare/0.10.1...0.11.0) - C++ improvements & better Visible History - 2023-11-28 https://github.com/rerun-io/rerun/assets/1220815/9099b81d-626f-4974-87d7-0e974361a9f0 ### โœจ Overview & highlights - ๐ŸŒŠ C++ SDK improvements - [Reference docs are live!](https://ref.rerun.io/docs/cpp/) - 2x-5x faster logging - CMake install support and other CMake setup improvements - Support for custom components & archetypes - Zero copy logging for images, various API improvements - ๐Ÿ“ˆ Visual History -> Visual Time Range - Time series plots can now limit its query to a range - Much more powerful UI, allowing query ranges relative to time cursor - ๐Ÿ•ธ๏ธ The Viewer can now be easily embedded in your web apps via our [npm package](https://www.npmjs.com/package/@rerun-io/web-viewer) - ๐Ÿ โš ๏ธ Legacy Python API now removed, check the [migration guide](https://github.com/rerun-io/rerun/issues/723) if you're not using `rr.log` yet - ๐Ÿฆ€ The new `StoreSubscriber` trait allows to be notified of all changes in the datastore. This can be used to build custom indices and trigger systems, and serves as a foundation for upcoming performance improvements. Check out [our example](examples/rust/custom_store_subscriber/README.md) for more information. โš ๏ธ Known issues on Visual Time Range: - Time cursor [sometimes stops scrolling correctly](https://github.com/rerun-io/rerun/issues/4246) on plot window - Still [doesn't work with transforms](https://github.com/rerun-io/rerun/issues/723) Special thanks to @dvad & @dangush for contributing! ### ๐Ÿ”Ž Details #### ๐ŸŒŠ C++ SDK - Support std::chrono types for `set_time` on `rerun::RecordingStream` [#4134](https://github.com/rerun-io/rerun/pull/4134) - Improve rerun_cpp readme & CMakeLists.txt [#4126](https://github.com/rerun-io/rerun/pull/4126) - Replace the many parameters of `rerun::spawn` / `rerun::RecordingStream::spawn` with a `struct` [#4149](https://github.com/rerun-io/rerun/pull/4149) - Make on TextLogLevel PascalCase (instead of SCREAMING CASE) to avoid clashes with preprocessor defines [#4152](https://github.com/rerun-io/rerun/pull/4152) - Reduce rerun_c library size (by depending on fewer unnecessary crates) [#4147](https://github.com/rerun-io/rerun/pull/4147) - Fix unnecessary includes in code generated headers [#4132](https://github.com/rerun-io/rerun/pull/4132) - Doxygen documentation & many doc improvements [#4191](https://github.com/rerun-io/rerun/pull/4191) - Rename `rerun::ComponentBatch` to `rerun::Collection` (and related constructs) [#4236](https://github.com/rerun-io/rerun/pull/4236) - Use `rerun::Collection` almost everywhere we'd use `std::vector` before [#4247](https://github.com/rerun-io/rerun/pull/4247) - Significantly improve C++ logging performance by using C FFI instead of Arrow IPC [#4273](https://github.com/rerun-io/rerun/pull/4273) - Further improve C++ logging for many individual log calls by introducing a component type registry [#4296](https://github.com/rerun-io/rerun/pull/4296) - All C++ datatypes & components now implement a new Loggable trait [#4305](https://github.com/rerun-io/rerun/pull/4305) - Add C++ Custom Component example [#4309](https://github.com/rerun-io/rerun/pull/4309) - Expose Rerun source/include dir in CMakeLists.txt (`RERUN_CPP_SOURCE_DIR`) [#4313](https://github.com/rerun-io/rerun/pull/4313) - Support cmake install [#4326](https://github.com/rerun-io/rerun/pull/4326) - Export TensorBuffer & TensorDimension to Rerun namespace [#4331](https://github.com/rerun-io/rerun/pull/4331) - C++ SDK sanity checks now header/source version against rerun_c binary version [#4330](https://github.com/rerun-io/rerun/pull/4330) - Allow creating Image/Tensor/DepthImage/SegmentationImage directly from shape & pointer [#4345](https://github.com/rerun-io/rerun/pull/4345) #### ๐Ÿ Python SDK - Python: remove legacy APIs [#4037](https://github.com/rerun-io/rerun/pull/4037) - Remove deprecated `rerun_demo` package [#4293](https://github.com/rerun-io/rerun/pull/4293) - Python: don't catch `KeyboardInterrupt` and `SystemExit` [#4333](https://github.com/rerun-io/rerun/pull/4333) (thanks [@Dvad](https://github.com/Dvad)!) #### ๐Ÿชณ Bug fixes - Fix line & points (& depth clouds points) radii being unaffected by scale & projection via Pinhole [#4199](https://github.com/rerun-io/rerun/pull/4199) - Fix inaccessible entities being incorrectly added to space view [#4226](https://github.com/rerun-io/rerun/pull/4226) - Silence spammy blueprint warnings and validate blueprint on load [#4303](https://github.com/rerun-io/rerun/pull/4303) - Fix markdown heading size [#4178](https://github.com/rerun-io/rerun/pull/4178) #### ๐ŸŒ Viewer improvements - Add command to copy direct link to fully qualified URL [#4165](https://github.com/rerun-io/rerun/pull/4165) - Implement recording/last-modified-at aware garbage collection [#4183](https://github.com/rerun-io/rerun/pull/4183) #### ๐Ÿ–ผ UI improvements - Improve Visible History to support more general time queries [#4123](https://github.com/rerun-io/rerun/pull/4123) - Add support for Visible History to time series space views [#4179](https://github.com/rerun-io/rerun/pull/4179) - Make Visible History UI more ergonomic and show inherited values [#4222](https://github.com/rerun-io/rerun/pull/4222) - Display Visible History on timeline when the mouse hovers the UI [#4259](https://github.com/rerun-io/rerun/pull/4259) - Improve the Selection Panel with better title, context, and Space View key properties [#4324](https://github.com/rerun-io/rerun/pull/4324) #### ๐Ÿ•ธ๏ธ Web - Put web viewer on `npm` [#4003](https://github.com/rerun-io/rerun/pull/4003) - Auto-switch port when getting AddrInUse error [#4314](https://github.com/rerun-io/rerun/pull/4314) (thanks [@dangush](https://github.com/dangush)!) - Generate per-PR web apps [#4341](https://github.com/rerun-io/rerun/pull/4341) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Simple logging benchmarks for C++ & Rust [#4181](https://github.com/rerun-io/rerun/pull/4181) - New debug option to show the blueprint in the streams view [#4189](https://github.com/rerun-io/rerun/pull/4189) - Use Pixi over setup scripts on CI + local dev [#4302](https://github.com/rerun-io/rerun/pull/4302) - Run deploy docs jobs serially [#4232](https://github.com/rerun-io/rerun/pull/4232) - fix Windows test config on main [#4242](https://github.com/rerun-io/rerun/pull/4242) #### ๐Ÿ—ฃ Refactors - `StoreView` -> `StoreSubscriber` [#4234](https://github.com/rerun-io/rerun/pull/4234) - `DataStore` introduce `StoreEvent`s [#4203](https://github.com/rerun-io/rerun/pull/4203) - `DataStore` introduce `StoreView`s [#4205](https://github.com/rerun-io/rerun/pull/4205) ## [0.10.1](https://github.com/rerun-io/rerun/compare/0.10.0...0.10.1) - 2023-11-02 ### โœจ Overview & highlights This is a small release primarily to tie up some loose ends for our C++ SDK. #### ๐ŸŒŠ C++ SDK - Avoid possible link/symbol errors but defaulting all OSes to static linking of Arrow [#4101](https://github.com/rerun-io/rerun/pull/4101) - Fix compilation errors with C++20 [#4098](https://github.com/rerun-io/rerun/pull/4098) - Improve C++ SDK perf 5x by respecting CMAKE_BUILD_TYPE and enabling mimalloc [#4094](https://github.com/rerun-io/rerun/pull/4094) - Reduce amount of cmake log from building & downloading libArrow [#4103](https://github.com/rerun-io/rerun/pull/4103) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - C++ Windows CI [#4110](https://github.com/rerun-io/rerun/pull/4110) - Add macOS C++ CI, add Linux C++20 CI [#4120](https://github.com/rerun-io/rerun/pull/4120) ## [0.10.0](https://github.com/rerun-io/rerun/compare/0.9.1...0.10.0) - C++ SDK - 2023-10-30 [Rerun](https://rerun.io/) is an easy-to-use visualization toolbox for computer vision and robotics. * Python: `pip install rerun-sdk` * Rust: `cargo add rerun` and `cargo install rerun-cli --locked` * Online demo: Release blog post: ### โœจ Overview & highlights * The C++ SDK is finally here! ```cpp #include int main() { const auto rec = rerun::RecordingStream("rerun_example_points3d_simple"); rec.spawn().exit_on_failure(); rec.log("points", rerun::Points3D({{0.0f, 0.0f, 0.0f}, {1.0f, 1.0f, 1.0f}})); } ``` * Add an integrated getting-started guide into the Viewer splash screen * Add a new and improved `spawn` method in the Rust SDK * Add support for NV12-encoded images [#3541](https://github.com/rerun-io/rerun/pull/3541) (thanks [@zrezke](https://github.com/zrezke)!) * We now publish pre-built binaries for each release at ### ๐Ÿ”Ž Details #### ๐ŸŒŠ C++ SDK - Has all the features of the Python and C++ SDK:s #### ๐Ÿ Python SDK - Add `RERUN_STRICT` environment variable [#3861](https://github.com/rerun-io/rerun/pull/3861) - Fix potential deadlock when saving to file after logging at the end of a Python program [#3920](https://github.com/rerun-io/rerun/pull/3920) - Warn if no resolution provided to Pinhole [#3923](https://github.com/rerun-io/rerun/pull/3923) - Python: remove unconditional sleep on `spawn` [#4010](https://github.com/rerun-io/rerun/pull/4010) - Support `pathlib.Path` for `rr.save` [#4036](https://github.com/rerun-io/rerun/pull/4036) - Add `disable_timeline` function [#4068](https://github.com/rerun-io/rerun/pull/4068) - Support fast install of the Rerun Viewer with `cargo binstall rerun-cli` thanks to [`cargo binstall`](https://github.com/cargo-bins/cargo-binstall) #### ๐Ÿฆ€ Rust SDK - Introduce `re_types_core` [#3878](https://github.com/rerun-io/rerun/pull/3878) - Fix crash when using `RecordingStream::set_thread_local` on macOS [#3929](https://github.com/rerun-io/rerun/pull/3929) - Add improved `spawn` function [#3996](https://github.com/rerun-io/rerun/pull/3996) [#4031](https://github.com/rerun-io/rerun/pull/4031) - Redesign `clap` integration [#3997](https://github.com/rerun-io/rerun/pull/3997) [#4040](https://github.com/rerun-io/rerun/pull/4040) - `RecordingStream`: introduce `connect_opts` [#4042](https://github.com/rerun-io/rerun/pull/4042) - Add `disable_timeline` function [#4068](https://github.com/rerun-io/rerun/pull/4068) #### ๐Ÿชณ Bug fixes - Fix grayscale images being too dark [#3999](https://github.com/rerun-io/rerun/pull/3999) - Prevent badly sized tensors from crashing the Viewer [#4005](https://github.com/rerun-io/rerun/pull/4005) - Fix selection history right-click menu not working [#3819](https://github.com/rerun-io/rerun/pull/3819) #### ๐ŸŒ Viewer improvements - Replace `--strict` flag with `RERUN_PANIC_ON_WARN` env-var [#3872](https://github.com/rerun-io/rerun/pull/3872) - Support NV12-encoded images [#3541](https://github.com/rerun-io/rerun/pull/3541) (thanks [@zrezke](https://github.com/zrezke)!) #### ๐Ÿง‘โ€๐Ÿซ Examples - `--max-frame` support for tracking examples [#3835](https://github.com/rerun-io/rerun/pull/3835) #### ๐Ÿ“š Docs - Synchronize code examples and their screenshots [#3954](https://github.com/rerun-io/rerun/pull/3954) - Improve docs for `TextDocument` example [#4008](https://github.com/rerun-io/rerun/pull/4008) - Fix typos in documentation and code comments [#4061](https://github.com/rerun-io/rerun/pull/4061) (thanks [@omahs](https://github.com/omahs)!) #### ๐Ÿ–ผ UI improvements - Add basic support for in-app "Quick Start" guides [#3813](https://github.com/rerun-io/rerun/pull/3813) [#3912](https://github.com/rerun-io/rerun/pull/3912) - Add copy-button to markdown code blocks [#3882](https://github.com/rerun-io/rerun/pull/3882) - Add warning in the Quick Start guides about Safari breaking Copy to Clipboard [#3898](https://github.com/rerun-io/rerun/pull/3898) #### ๐ŸŽจ Renderer improvements - Add easy way to dump out final wgsl shader [#3947](https://github.com/rerun-io/rerun/pull/3947) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Approve all workflow runs for a specific contributor PR [#3876](https://github.com/rerun-io/rerun/pull/3876) - Make codegen I/O-free and agnostic to output location [#3888](https://github.com/rerun-io/rerun/pull/3888) - Configure pytest to fail on warnings [#3903](https://github.com/rerun-io/rerun/pull/3903) - Improve `taplo` output on failure [#3909](https://github.com/rerun-io/rerun/pull/3909) - Automatically synchronize build.rerun.io & release assets [#3945](https://github.com/rerun-io/rerun/pull/3945) - New helper script to run fast lints and pre-push hook that runs it [#3949](https://github.com/rerun-io/rerun/pull/3949) - CI: Rerun CLI as a release asset [#3959](https://github.com/rerun-io/rerun/pull/3959) - Add script to generate RRD vs. screenshots comparisons [#3946](https://github.com/rerun-io/rerun/pull/3946) - Add a new build Environment option for CondaBuild to improve conda-built artifacts [#4015](https://github.com/rerun-io/rerun/pull/4015) - Lock Python in CI to 3.11 [#4033](https://github.com/rerun-io/rerun/pull/4033) - Changed `spawn()` and the `rerun` script to call into `rerun_bindings` (12x startup time improvement) [#4053](https://github.com/rerun-io/rerun/pull/4053) ## [0.9.1](https://github.com/rerun-io/rerun/compare/0.9.0...0.9.1) - Bug fixes and performance improvements - 2023-10-12 [Rerun](https://rerun.io/) is an easy-to-use visualization toolbox for computer vision and robotics. * Python: `pip install rerun-sdk` * Rust: `cargo add rerun` and `cargo install rerun-cli` * Online demo: ### โœจ Overview & highlights - A bunch of bug fixes - Fix big performance regression when hovering images - The Rerun Viewer should now be visible to the system accessibility system #### ๐Ÿ Python SDK - Added support for PyTorch array to `Boxes2D`'s `array` convenience argument [#3719](https://github.com/rerun-io/rerun/pull/3719) - Fix default stroke width handling in `log_line_strip_Xd` and `log_obbs` [#3720](https://github.com/rerun-io/rerun/pull/3720) - Warn/raise when passing incompatible objects to `log` [#3727](https://github.com/rerun-io/rerun/pull/3727) - Refactor `rerun.AnyValues` to handle `None` input more gracefully [#3725](https://github.com/rerun-io/rerun/pull/3725) - Default `DisconnectedSpaces` boolean to `true` in Python [#3760](https://github.com/rerun-io/rerun/pull/3760) #### ๐Ÿฆ€ Rust SDK - Fix return type of `entity_path!()` and `entity_path_vec!()` on empty input [#3734](https://github.com/rerun-io/rerun/pull/3734) (thanks [@kpreid](https://github.com/kpreid)!) - Export `RecordingStreamError` [#3777](https://github.com/rerun-io/rerun/pull/3777) #### ๐Ÿชณ Bug fixes - Fix bug when joining cleared optional components [#3726](https://github.com/rerun-io/rerun/pull/3726) - Update `winit` to 0.28.7 to fix UI glitch on macOS Sonoma [#3763](https://github.com/rerun-io/rerun/pull/3763) - Show 1D-tensors as bar charts [#3769](https://github.com/rerun-io/rerun/pull/3769) - Fix loading of `.obj` mesh files [#3772](https://github.com/rerun-io/rerun/pull/3772) - Fix crash when loading huge image [#3775](https://github.com/rerun-io/rerun/pull/3775) - Fix performance regression when viewing images and tensors [#3767](https://github.com/rerun-io/rerun/pull/3767) #### ๐ŸŒ Viewer improvements - Turn on `AccessKit` accessibility integration [#3732](https://github.com/rerun-io/rerun/pull/3732) - Display space views using `ViewCoordinates` from closest ancestor [#3748](https://github.com/rerun-io/rerun/pull/3748) - Improve 3D view bounds handling of camera frustums [#3749](https://github.com/rerun-io/rerun/pull/3749) [#3815](https://github.com/rerun-io/rerun/pull/3815) [#3811](https://github.com/rerun-io/rerun/pull/3811) - Improve heuristics around 2D vs 3D space-view creation [#3822](https://github.com/rerun-io/rerun/pull/3822) #### ๐Ÿš€ Performance improvements - Optimize gathering of point cloud colors [#3730](https://github.com/rerun-io/rerun/pull/3730) #### ๐Ÿง‘โ€๐Ÿซ Examples - Fix open photogrammetry example not working on Windows [#3705](https://github.com/rerun-io/rerun/pull/3705) #### ๐Ÿ“š Docs - Document that entity-path `rerun/` is reserved [#3747](https://github.com/rerun-io/rerun/pull/3747) #### ๐Ÿ–ผ UI improvements - Show all entities/components in the Streams UI, even if empty for the selected timeline [#3779](https://github.com/rerun-io/rerun/pull/3779) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Less automatic `build.rs` shenanigans [#3814](https://github.com/rerun-io/rerun/pull/3814) #### ๐Ÿ—ฃ Refactors - Refactor our `build.rs` files [#3789](https://github.com/rerun-io/rerun/pull/3789) #### ๐Ÿ“ฆ Dependencies - Update `ewebsock` to 0.4.0 [#3729](https://github.com/rerun-io/rerun/pull/3729) - Update `winit` to 0.28.7 [#3763](https://github.com/rerun-io/rerun/pull/3763) ## [0.9.0](https://github.com/rerun-io/rerun/compare/0.8.2...0.9.0) - New logging API - 2023-10-05 [Rerun](https://rerun.io/) is an easy-to-use visualization toolbox for computer vision and robotics. * Python: `pip install rerun-sdk` * Rust: `cargo add rerun` and `cargo install rerun-cli` * Online demo: ### โœจ Overview & highlights Rerun 0.9.0 is a big release, that introduces a brand new logging API. This API is code-generated from a common definition, meaning the Python and Rust SDKs are very similar now. This will let us more easily extend and improve the API going forward. It is also the basis for our C++ API, which is coming in Rerun 0.10.0. Read [the migration guide](https://rerun.io/docs/reference/migration-0-9) for details! 0.9.0 Welcome Screen Other highlights: * ๐Ÿƒโ€โ™€๏ธ Large point clouds are up to 3x faster now * ๐Ÿ“š Markdown view support * ๐Ÿ”— with easy to use in-viewer entity & component links * ๐Ÿ“บ New startup screen * ๐Ÿ› Lots and lots of bugfixes * ๐Ÿ‘ทโ€โ™€๏ธ Internally we have now way more automated testing for the new API surfaces * โœจ drag & drop for images & meshes (even on web!), time display in local time (thanks @jparismorgan!), .obj mesh support, default enabled memory limit, new how-to guide for custom dataโ€ฆ and many more smaller features! ### Some select details #### ๐Ÿ Python SDK - Handle older Numpy versions / py 3.8 in `VecND` extensions [#2896](https://github.com/rerun-io/rerun/pull/2896) - Add default value for `info` argument of `ClassDescription` [#3017](https://github.com/rerun-io/rerun/pull/3017) - Run all Python doc examples in CI [#3172](https://github.com/rerun-io/rerun/pull/3172) - Create objects for delegating components [#3303](https://github.com/rerun-io/rerun/pull/3303) - Allow any string as an entity path [#3443](https://github.com/rerun-io/rerun/pull/3443) - Check if another process is already listening on the port before trying to spawn [#3501](https://github.com/rerun-io/rerun/pull/3501) - Force kw-args on more Python functions [#3515](https://github.com/rerun-io/rerun/pull/3515) - Deprecate all of the legacy `log_` prefixed APIs. [#3564](https://github.com/rerun-io/rerun/pull/3564) - Introduce AnyValues as an alternative to extension_components [#3561](https://github.com/rerun-io/rerun/pull/3561) #### ๐Ÿฆ€ Rust SDK - Introduce versioned `EntityPath` & refactor mesh/tensor caching [#3230](https://github.com/rerun-io/rerun/pull/3230) - Make `FileSink` actually flush its data when asked to [#3525](https://github.com/rerun-io/rerun/pull/3525) - `TextLog` integrations with native loggers [#3522](https://github.com/rerun-io/rerun/pull/3522) #### ๐Ÿชณ Bug fixes - Fix bug in size estimation of array buffers [#2991](https://github.com/rerun-io/rerun/pull/2991) - Fix the Streams UI when the recording is empty [#3027](https://github.com/rerun-io/rerun/pull/3027) - Clamp time panel height to avoid visual glitches [#3169](https://github.com/rerun-io/rerun/pull/3169) - Allow user to edit colormap for depth images [#3241](https://github.com/rerun-io/rerun/pull/3241) - Fix lurking bug in datastore bucket sorting routines [#3281](https://github.com/rerun-io/rerun/pull/3281) - Fix row ordering flakiness when using clear APIs [#3288](https://github.com/rerun-io/rerun/pull/3288) - Fix incorrect propagation of field's nullability into its inner list [#3352](https://github.com/rerun-io/rerun/pull/3352) - Fix post-GC purging of streams view time histogram [#3364](https://github.com/rerun-io/rerun/pull/3364) - Fix color grayscale colormap not being even [#3391](https://github.com/rerun-io/rerun/pull/3391) - Fix depth point cloud not taking transformation at its path into account [#3514](https://github.com/rerun-io/rerun/pull/3514) - Fix infinite recursion when putting a container inside a Viewer tab [#3534](https://github.com/rerun-io/rerun/pull/3534) - Fix failing to preview small images [#3520](https://github.com/rerun-io/rerun/pull/3520) #### ๐ŸŒ Viewer improvements - Open image and mesh files with drag-drop and File->Open [#3116](https://github.com/rerun-io/rerun/pull/3116) - Support loading images and meshes on web [#3131](https://github.com/rerun-io/rerun/pull/3131) - Add `rerun reset` command [#3145](https://github.com/rerun-io/rerun/pull/3145) - Show picking position when hovering something in the spatial view [#3227](https://github.com/rerun-io/rerun/pull/3227) - Rethink view selection & filtering + make all views opt-in [#3323](https://github.com/rerun-io/rerun/pull/3323) - Markdown support in `TextDocument` [#3343](https://github.com/rerun-io/rerun/pull/3343) - Click `recording://entity/path` links in markdown [#3442](https://github.com/rerun-io/rerun/pull/3442) - Allow showing image shaped tensors in the tensor view [#3583](https://github.com/rerun-io/rerun/pull/3583) - Add option to display timestamps in the local system timezone [#3530](https://github.com/rerun-io/rerun/pull/3530) (thanks [@jparismorgan](https://github.com/jparismorgan)!) - Add obj mesh support to Viewer [#3670](https://github.com/rerun-io/rerun/pull/3670) #### ๐Ÿš€ Performance improvements - Pass through strings using arrow2::Buffers [#2931](https://github.com/rerun-io/rerun/pull/2931) - Introduce codegen optimizations for primitives and fixed-sized-arrays [#2970](https://github.com/rerun-io/rerun/pull/2970) - Optimize big point clouds by ~20% [#3108](https://github.com/rerun-io/rerun/pull/3108) - A nice speed up of 3D points clouds by ~69% [#3114](https://github.com/rerun-io/rerun/pull/3114) - Improve performance for many entities [#3078](https://github.com/rerun-io/rerun/pull/3078) - Turn on garbage-collection (`--memory-limit`) by default [#3161](https://github.com/rerun-io/rerun/pull/3161) - Optimize out unnecessary joins when querying archetypes [#3377](https://github.com/rerun-io/rerun/pull/3377) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add "rerun_example_" prefix to all our user-visible app-ids [#3112](https://github.com/rerun-io/rerun/pull/3112) - Add paper visualizations to examples [#3020](https://github.com/rerun-io/rerun/pull/3020) (thanks [@roym899](https://github.com/roym899)!) - API examples overhaul & roundtrip tests [#3204](https://github.com/rerun-io/rerun/pull/3204) - Generate manifest for examples page in Viewer [#3332](https://github.com/rerun-io/rerun/pull/3332) - Fix `transform3d_simple` and reenable roundtrip test [#3401](https://github.com/rerun-io/rerun/pull/3401) - Update import path for HuggingFace's `randn_tensor` [#3506](https://github.com/rerun-io/rerun/pull/3506) (thanks [@hu-po](https://github.com/hu-po)!) - Add ControlNet example [#3568](https://github.com/rerun-io/rerun/pull/3568) (thanks [@roym899](https://github.com/roym899)!) #### ๐Ÿ“š Docs - Fix outdated links in docs [#2854](https://github.com/rerun-io/rerun/pull/2854) - Add how-to guide for clearing entities [#3211](https://github.com/rerun-io/rerun/pull/3211) - Support `\example` in codegen [#3378](https://github.com/rerun-io/rerun/pull/3378) - Docs codegen [#3445](https://github.com/rerun-io/rerun/pull/3445) - Generate component/datatype docs [#3535](https://github.com/rerun-io/rerun/pull/3535) - Update the Python API docs site for the new APIs [#3565](https://github.com/rerun-io/rerun/pull/3565) - Add a how-to guide for using Rerun with custom data [#3634](https://github.com/rerun-io/rerun/pull/3634) #### ๐Ÿ–ผ UI improvements - Migrate to custom checkbox/radio_value UI [#2851](https://github.com/rerun-io/rerun/pull/2851) - Remove expansion effect from time panel toolbar [#2863](https://github.com/rerun-io/rerun/pull/2863) - Remove expansion effect from the large collapsing headers [#2864](https://github.com/rerun-io/rerun/pull/2864) - Change the styling and behavior of hyperlinks [#2872](https://github.com/rerun-io/rerun/pull/2872) - Improve space view tab design [#2879](https://github.com/rerun-io/rerun/pull/2879) - Improve drag tab UI [#2893](https://github.com/rerun-io/rerun/pull/2893) - Normalize various text string in UI [#2902](https://github.com/rerun-io/rerun/pull/2902) - Add (debug-only) style panel [#2914](https://github.com/rerun-io/rerun/pull/2914) - Add clip rect in panels and use them for large collapsing headers [#2936](https://github.com/rerun-io/rerun/pull/2936) - Add Recordings section to the left panel [#2938](https://github.com/rerun-io/rerun/pull/2938) - New triangle collapse arrow for large collapsible header [#2920](https://github.com/rerun-io/rerun/pull/2920) - Add support for tree to `ListItem` [#2968](https://github.com/rerun-io/rerun/pull/2968) - Add hierarchical display in recordings panel [#2971](https://github.com/rerun-io/rerun/pull/2971) - Add support to close a recording [#2972](https://github.com/rerun-io/rerun/pull/2972) - Show RAM use and data rate when hovering an entity in stream view [#2997](https://github.com/rerun-io/rerun/pull/2997) - Don't select the spaceview when maximizing it [#2988](https://github.com/rerun-io/rerun/pull/2988) - Add delete buttons in the Recordings UI [#2976](https://github.com/rerun-io/rerun/pull/2976) - Introduce a welcome screen when no recording is loaded [#2982](https://github.com/rerun-io/rerun/pull/2982) - Remove the limitation to a single dropped file [#3030](https://github.com/rerun-io/rerun/pull/3030) - Uniform icon, pointer, and tooltip for external links [#3026](https://github.com/rerun-io/rerun/pull/3026) - Improve styling of demo header [#3022](https://github.com/rerun-io/rerun/pull/3022) - Implement "Open file" dialog on Web [#3068](https://github.com/rerun-io/rerun/pull/3068) - Show Welcome Screen after closing recording even with `--skip-welcome-screen` [#3035](https://github.com/rerun-io/rerun/pull/3035) - Fix the 3D space view's tooltip help text [#3132](https://github.com/rerun-io/rerun/pull/3132) - Use `ListItem` in blueprint tree UI [#3118](https://github.com/rerun-io/rerun/pull/3118) - Use `ListItem` in Stream Tree UI [#3153](https://github.com/rerun-io/rerun/pull/3153) - Limit the size of component tooltips with `UiVerbosity::Reduced` [#3171](https://github.com/rerun-io/rerun/pull/3171) - Smaller AnnotationContext tooltip [#3217](https://github.com/rerun-io/rerun/pull/3217) - Add Examples page to the Welcome Screen [#3191](https://github.com/rerun-io/rerun/pull/3191) - `Welcome Page` refresh [#3219](https://github.com/rerun-io/rerun/pull/3219) - Show currently loading recordings in Recordings menu [#3307](https://github.com/rerun-io/rerun/pull/3307) - Update to latest egui + use new Image API [#3311](https://github.com/rerun-io/rerun/pull/3311) - Hide stream view and selection view in welcome app [#3333](https://github.com/rerun-io/rerun/pull/3333) - Tighter UI for Pinhole and when hovering images [#3579](https://github.com/rerun-io/rerun/pull/3579) - Improve viewport tile behavior [#3295](https://github.com/rerun-io/rerun/pull/3295) - Show color map preview for depth point clouds as well [#3373](https://github.com/rerun-io/rerun/pull/3373) #### ๐Ÿ•ธ๏ธ Web - Move example description to README frontmatter [#3201](https://github.com/rerun-io/rerun/pull/3201) - Fix instantiateStreaming usage on web [#3209](https://github.com/rerun-io/rerun/pull/3209) - Web-Viewer: Don't auto-connect to `wss://hostname` when an `?url=` is missing [#3345](https://github.com/rerun-io/rerun/pull/3345) #### ๐Ÿ“ˆ Analytics - Recreate the analytics state directory if necessary before creating pipeline [#2878](https://github.com/rerun-io/rerun/pull/2878) - Update resolved analytics URL [#3101](https://github.com/rerun-io/rerun/pull/3101) - Use `ehttp` in `re_analytics` [#3155](https://github.com/rerun-io/rerun/pull/3155) - Web analytics [#3166](https://github.com/rerun-io/rerun/pull/3166) - Keep track of how files are sourced for analytics and UI [#3371](https://github.com/rerun-io/rerun/pull/3371) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Make `cargo codegen` work irrelevant of CWD [#2913](https://github.com/rerun-io/rerun/pull/2913) - `scripts/highlight_issues.py`: print issues with no comments [#2939](https://github.com/rerun-io/rerun/pull/2939) - Use `prettyplease` to improve formatting of generated Rust code [#2949](https://github.com/rerun-io/rerun/pull/2949) - Enable debug symbols in build scripts (`build.rs`) in dev mode [#2962](https://github.com/rerun-io/rerun/pull/2962) - Update egui via a `[patch]` [#2969](https://github.com/rerun-io/rerun/pull/2969) - Track file sizes [#3037](https://github.com/rerun-io/rerun/pull/3037) - Fix docs previews [#3066](https://github.com/rerun-io/rerun/pull/3066) - Name the rayon threads [#3060](https://github.com/rerun-io/rerun/pull/3060) - Improve size tracking table [#3117](https://github.com/rerun-io/rerun/pull/3117) - Remove `setup-rust` from toml lint job [#3143](https://github.com/rerun-io/rerun/pull/3143) - Render demo manifest [#3151](https://github.com/rerun-io/rerun/pull/3151) - Fix update PR body script [#3181](https://github.com/rerun-io/rerun/pull/3181) - Update CI `actions/checkout@v4` [#3208](https://github.com/rerun-io/rerun/pull/3208) - Update all uses of `actions/checkout` to use explicit `ref` [#3322](https://github.com/rerun-io/rerun/pull/3322) - Make 'Print datastore' viable with real world data [#3452](https://github.com/rerun-io/rerun/pull/3452) - Update workflows to support fork PRs [#3544](https://github.com/rerun-io/rerun/pull/3544) #### ๐Ÿ—ฃ Refactors - Remove legacy `re_components` [#3440](https://github.com/rerun-io/rerun/pull/3440) #### ๐Ÿ“ฆ Dependencies - Update clang-format [#2942](https://github.com/rerun-io/rerun/pull/2942) - Rust 1.72 + format `let-else` (!) [#3102](https://github.com/rerun-io/rerun/pull/3102) - Update to egui 0.23 [#3523](https://github.com/rerun-io/rerun/pull/3523) - Update to wgpu 0.17 [#2980](https://github.com/rerun-io/rerun/pull/2980) #### ๐Ÿคท Other #### ๐Ÿคท Other - Always protect at least one value on the timeline when running GC [#3357](https://github.com/rerun-io/rerun/pull/3357) ## [0.8.2](https://github.com/rerun-io/rerun/compare/0.8.1...0.8.2) - Bug fixes - 2023-09-05 #### ๐Ÿชณ Bug fixes - Fix quadratic slowdown when ingesting data with uniform time [#3088](https://github.com/rerun-io/rerun/pull/3088) - Normalize quaternions [#3094](https://github.com/rerun-io/rerun/pull/3094) - Improve error message in common `re_renderer` crash [#3070](https://github.com/rerun-io/rerun/pull/3070) - Fix crash when trying to render too many line segments [#3093](https://github.com/rerun-io/rerun/pull/3093) - Handle serde-field that fails to deserialize [#3130](https://github.com/rerun-io/rerun/pull/3130) - GC the blueprints before saving while preserving the current state [#3148](https://github.com/rerun-io/rerun/pull/3148) #### ๐Ÿง‘โ€๐Ÿซ Examples - Make `custom_space_view` example more verbose [#3123](https://github.com/rerun-io/rerun/pull/3123) #### ๐Ÿ–ผ UI improvements - Change the "slow-down-camera" modifier to Alt on non-Mac [#3051](https://github.com/rerun-io/rerun/pull/3051) (thanks [@h3mosphere](https://github.com/h3mosphere)!) #### ๐ŸŽจ Renderer improvements - Warn if using software rasterizer (lavapipe or llvmpipe) [#3134](https://github.com/rerun-io/rerun/pull/3134) #### ๐Ÿ“ฆ Dependencies - Update webpki: https://rustsec.org/advisories/RUSTSEC-2023-0052 [#3176](https://github.com/rerun-io/rerun/pull/3176) ## [0.8.1](https://github.com/rerun-io/rerun/compare/0.8.0...0.8.1) - Bug fixes - 2023-08-17 #### ๐Ÿ Python SDK - Add a warning category and stacklevel to Rerun warnings.warn calls [#2985](https://github.com/rerun-io/rerun/pull/2985) #### ๐Ÿชณ Bug fixes - Fix always redrawing in the presence of a 3D space view [#2900](https://github.com/rerun-io/rerun/pull/2900) - Fix unable to set camera spinning until camera has moved [#2990](https://github.com/rerun-io/rerun/pull/2990) #### ๐ŸŒ Viewer improvements - Allow changing plot aspect ratio with scroll + cmd/ctrl + alt [#2742](https://github.com/rerun-io/rerun/pull/2742) - Automatically select user timeline if no timeline was explicitly selected yet [#2986](https://github.com/rerun-io/rerun/pull/2986) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add `Helix` to `demo.rerun.io` [#2930](https://github.com/rerun-io/rerun/pull/2930) #### ๐Ÿ“ˆ Analytics - Make sure `re_analytics` never log higher than at `debug` level [#3014](https://github.com/rerun-io/rerun/pull/3014) ## [0.8.0](https://github.com/rerun-io/rerun/compare/0.7.0...0.8.0) - Infrastructure investments and more transform improvements - 2023-07-27 [Rerun](https://rerun.io/) is an easy-to-use visualization toolbox for computer vision and robotics. * Python: `pip install rerun-sdk` * Rust: `cargo add rerun` and `cargo install rerun-cli` * Online demo: ### โœจ Overview & highlights - `log_pinhole` is now easier to use in simple cases and supports non-RDF camera coordinates. [#2614](https://github.com/rerun-io/rerun/pull/2614) - You only need to set focal length and optional principal point instead of setting the full 3x3 matrix. - There is also a new argument: `camera_xyz` for setting the coordinate system. The default is RDF (the old default). This affects the visible camera frustum, how rays are projected when hovering a 2D image, and how depth clouds are projected. - The visualizer can now show coordinate arrows for all affine transforms within the view. [#2577](https://github.com/rerun-io/rerun/pull/2577) - Linestrips and oriented bounding boxes can now be logged via batch APIs in python. - See: `log_linestrips_2d`, `log_linestrips_3d`, [#2822](https://github.com/rerun-io/rerun/pull/2822) and `log_obbs` [#2823](https://github.com/rerun-io/rerun/pull/2823) - Rust users that build their own Viewer applications can now add fully custom Space Views. Find more information [here](https://rerun.io/docs/howto/extend/extend-ui#custom-space-views-classes). - New optional `flush_timeout` specifies how long Rerun will wait if a TCP stream is disconnected during a flush. [#2821](https://github.com/rerun-io/rerun/pull/2821) - In Rust, `RecordingStream::connect` now requires `flush_timeout` specified as an `Option`. - To keep default behavior, this can be specified using the `rerun::default_flush_time()` helper. - In Python `flush_init_sec` is now an optional argument to `rr.connect()` - In Rust, the `RecordingStream` now offers a stateful time API, similar to the Python APIs. [#2506](https://github.com/rerun-io/rerun/pull/2506) - You can now call `set_time_sequence`, `set_time_seconds`, and `set_time_nanos` directly on the `RecordingStream`, which will set the time for all subsequent logs using that stream. - This can be used as an alternative to the previous `MsgSender::with_time` APIs. - The Rerun SDK now defaults to 8ms long microbatches instead of 50ms. This makes the default behavior more suitable for use-cases like real-time video feeds. [#2220](https://github.com/rerun-io/rerun/pull/2220) - Check out [the microbatching docs](https://rerun.io/docs/reference/sdk/micro-batching) for more information on fine-tuning the micro-batching behavior. - The web viewer now incremental loads `.rrd` files when streaming over HTTP. [#2412](https://github.com/rerun-io/rerun/pull/2412) ![Open Photogrammetry Preview](https://static.rerun.io/9fa26e73a197690e0403cd35f29e31c2941dea36_release_080_photogrammetry_full.png) ### Ongoing refactors - There have been a number of significant internal changes going on during this release with little visible impact. This work will land across future releases, but is highlighted here since much of it is visible through the changelog. - The layout of the Viewer is now controlled by a Blueprint datastore. In the future this will allow for direct API control of the layout and configuration of the Viewer. A very early prototype of this functionality is available via the `rerun.experimental` module in Python. - An entirely new code-generation framework has been brought online for Rust, Python and C++. This will eventually enable new object-centric APIs with a more scalable, consistent, and ergonomic experience. - Bringup of C++ support is now underway and will eventually become our third officially supported SDK language. ### Known regressions - Due to the Blueprint storage migration, blueprint persistence on web is currently broken. Will be resolved in: [#2579](https://github.com/rerun-io/rerun/issues/2579) ### ๐Ÿ”Ž Details #### ๐Ÿ Python SDK - Clean up warnings printed when `rr.init` hasn't been called [#2209](https://github.com/rerun-io/rerun/pull/2209) - Normalize Python typing syntax to 3.8+ [#2361](https://github.com/rerun-io/rerun/pull/2361) - Simpler, sturdier stateful time tracking in both SDKs [#2506](https://github.com/rerun-io/rerun/pull/2506) - Fix not taking np.array for single colors [#2569](https://github.com/rerun-io/rerun/pull/2569) - Add a basic pyright config [#2610](https://github.com/rerun-io/rerun/pull/2610) - Improve `log_pinhole` and support non-RDF pinholes [#2614](https://github.com/rerun-io/rerun/pull/2614) - Expose batch APIs for linestrips [#2822](https://github.com/rerun-io/rerun/pull/2822) - Expose batch APIs for oriented bounding boxes [#2823](https://github.com/rerun-io/rerun/pull/2823) #### ๐Ÿฆ€ Rust SDK - Add example for adding custom Space Views [#2328](https://github.com/rerun-io/rerun/pull/2328) - Simpler, sturdier stateful time tracking in both SDKs [#2506](https://github.com/rerun-io/rerun/pull/2506) - Automagic flush when `take()`ing a `MemorySinkStorage` [#2632](https://github.com/rerun-io/rerun/pull/2632) - Logging SDK: Log warnings if user data is dropped [#2630](https://github.com/rerun-io/rerun/pull/2630) - Add support for `RecordingStream::serve` [#2815](https://github.com/rerun-io/rerun/pull/2815) #### ๐ŸŒ Viewer improvements - Better handle scroll-to-zoom in 3D views [#1764](https://github.com/rerun-io/rerun/pull/1764) - Add command to screenshot the application [#2293](https://github.com/rerun-io/rerun/pull/2293) - Show layout in blueprint tree view [#2465](https://github.com/rerun-io/rerun/pull/2465) - Double-click to select entity [#2504](https://github.com/rerun-io/rerun/pull/2504) - Add Rerun.io link/text in top bar [#2540](https://github.com/rerun-io/rerun/pull/2540) - New auto-layout of space views [#2558](https://github.com/rerun-io/rerun/pull/2558) - Add 'Dump datastore' command to palette [#2564](https://github.com/rerun-io/rerun/pull/2564) - Support any `dtype` for depth images [#2602](https://github.com/rerun-io/rerun/pull/2602) - Change "Save Selection" command to Cmd+Alt+S [#2631](https://github.com/rerun-io/rerun/pull/2631) - Consistent transform visualization for all entities with transforms [#2577](https://github.com/rerun-io/rerun/pull/2577) - Improve `log_pinhole` and support non-RDF pinholes [#2614](https://github.com/rerun-io/rerun/pull/2614) #### ๐Ÿš€ Performance improvements - Flush the batches every 8ms instead of 50 ms [#2220](https://github.com/rerun-io/rerun/pull/2220) - Replace `image` crate jpeg decoder with zune-jpeg [#2376](https://github.com/rerun-io/rerun/pull/2376) - Stream `.rrd` files when loading via http [#2412](https://github.com/rerun-io/rerun/pull/2412) #### ๐Ÿชณ Bug fixes - Fix deadlock when misusing the Caches [#2318](https://github.com/rerun-io/rerun/pull/2318) - Fix unstable order/flickering of "shown in" space view list on selection [#2327](https://github.com/rerun-io/rerun/pull/2327) - Fix transforms not applied to connections from transform context [#2407](https://github.com/rerun-io/rerun/pull/2407) - Fix texture clamping and color gradient selection being displayed incorrectly [#2394](https://github.com/rerun-io/rerun/pull/2394) - Fix projected ray length [#2482](https://github.com/rerun-io/rerun/pull/2482) - Tweak the depth bias multiplier for WebGL [#2491](https://github.com/rerun-io/rerun/pull/2491) - Clip image zoom rectangle [#2505](https://github.com/rerun-io/rerun/pull/2505) - Fix missing feature flags for benchmarks [#2515](https://github.com/rerun-io/rerun/pull/2515) - `run_all.py` script fixes [#2519](https://github.com/rerun-io/rerun/pull/2519) - Update egui_tiles with fix for drag-and-drop-panic [#2555](https://github.com/rerun-io/rerun/pull/2555) - Convert objectron proto.py back to using typing.List [#2559](https://github.com/rerun-io/rerun/pull/2559) - Exclude from `objectron/proto/objectron/proto.py` from `just py-format` [#2562](https://github.com/rerun-io/rerun/pull/2562) - Fix pinhole visualization not working with camera extrinsics & intrinsics on the same path [#2568](https://github.com/rerun-io/rerun/pull/2568) - Fix: always auto-layout spaceviews until the user intervenes [#2583](https://github.com/rerun-io/rerun/pull/2583) - Fix freeze/crash when logging large times [#2588](https://github.com/rerun-io/rerun/pull/2588) - Update egui_tiles to fix crash [#2598](https://github.com/rerun-io/rerun/pull/2598) - Fix clicking object with single instance (of every component) selecting instance instead of entity [#2573](https://github.com/rerun-io/rerun/pull/2573) - Cleanup internal data-structures when process has been forked [#2676](https://github.com/rerun-io/rerun/pull/2676) - Fix shutdown race-condition by introducing a flush_timeout before dropping data [#2821](https://github.com/rerun-io/rerun/pull/2821) - Fix ui-scale based point/line sizes incorrectly scaled when zooming based on horizontal dimension [#2805](https://github.com/rerun-io/rerun/pull/2805) - Fix visibility toggle for maximized Space Views [#2806](https://github.com/rerun-io/rerun/pull/2806) - Fix loading file via CLI [#2807](https://github.com/rerun-io/rerun/pull/2807) - Fix disconnected space APIs in Python SDK [#2832](https://github.com/rerun-io/rerun/pull/2832) - Avoid unwrap when generating authkey [#2804](https://github.com/rerun-io/rerun/pull/2804) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add example template [#2392](https://github.com/rerun-io/rerun/pull/2392) - Show hidden url search param in `app.rerun.io` [#2455](https://github.com/rerun-io/rerun/pull/2455) - Minimal example of running an intel realsense depth sensor live [#2541](https://github.com/rerun-io/rerun/pull/2541) - Add a simple example to display Open Photogrammetry Format datasets [#2512](https://github.com/rerun-io/rerun/pull/2512) - Move `examples/api_demo` -> `tests/test_api` [#2585](https://github.com/rerun-io/rerun/pull/2585) #### ๐Ÿ“š Docs - Docs: link to `rr.save` and suggest `rerun` instead of `python -m rerun` [#2586](https://github.com/rerun-io/rerun/pull/2586) - Update docs about transforms [#2496](https://github.com/rerun-io/rerun/pull/2496) - Fixup remaining usages of log_rigid3 in docs [#2831](https://github.com/rerun-io/rerun/pull/2831) #### ๐ŸŽจ Renderer improvements - Expose type erased draw data that can be consumed directly [#2300](https://github.com/rerun-io/rerun/pull/2300) - Use less `mut` when using `RenderContext` [#2312](https://github.com/rerun-io/rerun/pull/2312) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Better error messages in build.rs [#2173](https://github.com/rerun-io/rerun/pull/2173) - Recommend sccache in CONTRIBUTING.md [#2245](https://github.com/rerun-io/rerun/pull/2245) - introduce `re_tracing` [#2283](https://github.com/rerun-io/rerun/pull/2283) - lint: standardize formatting of let-else-return statements [#2297](https://github.com/rerun-io/rerun/pull/2297) - Centralized build tools in `re_build_tools` [#2331](https://github.com/rerun-io/rerun/pull/2331) - Lint for explicit quotes [#2332](https://github.com/rerun-io/rerun/pull/2332) - Added example screenshot instructions in `just upload --help` [#2454](https://github.com/rerun-io/rerun/pull/2454) - Added support for puling image from an URL to `upload_image.py` [#2462](https://github.com/rerun-io/rerun/pull/2462) - `setup_dev.sh` now installs pngcrush [#2470](https://github.com/rerun-io/rerun/pull/2470) - Added docs/code-examples to the directories checked by py-lint and py-format [#2476](https://github.com/rerun-io/rerun/pull/2476) - Link to demo in PR + check checkboxes [#2543](https://github.com/rerun-io/rerun/pull/2543) - Add script to find external issues we haven't commented on [#2532](https://github.com/rerun-io/rerun/pull/2532) - Move CI-related scripts to its own folder [#2561](https://github.com/rerun-io/rerun/pull/2561) - Render PR description as template [#2563](https://github.com/rerun-io/rerun/pull/2563) - Add basic testing automation against all version of Python using nox [#2536](https://github.com/rerun-io/rerun/pull/2536) - Run clippy on public API too [#2596](https://github.com/rerun-io/rerun/pull/2596) - Bump all `py-lint`-related package versions [#2600](https://github.com/rerun-io/rerun/pull/2600) - Crates publishing script [#2604](https://github.com/rerun-io/rerun/pull/2604) - Fix Rust docs deploy [#2615](https://github.com/rerun-io/rerun/pull/2615) - Add support for .gitignore to scripts/lint.py [#2666](https://github.com/rerun-io/rerun/pull/2666) #### ๐Ÿ—ฃ Refactors - Refactor space-view dependencies: - Move spatial space view to its own crate [#2286](https://github.com/rerun-io/rerun/pull/2286) - Separate crate for bar chart space view [#2322](https://github.com/rerun-io/rerun/pull/2322) - Separate crate for time series space view [#2324](https://github.com/rerun-io/rerun/pull/2324) - Separate crate for tensor space view [#2334](https://github.com/rerun-io/rerun/pull/2334) - Separate viewport related files out to a new re_viewport crate [#2251](https://github.com/rerun-io/rerun/pull/2251) - Remove timepanel dependency from viewport [#2256](https://github.com/rerun-io/rerun/pull/2256) - New trait system for SpaceViews: - Initial Space View trait & port of text space views to the new Space View trait system [#2281](https://github.com/rerun-io/rerun/pull/2281) - Extend/iterate on SpaceViewClass framework with SceneContext & port SpatialSpaceView scene parts [#2304](https://github.com/rerun-io/rerun/pull/2304) - Finalize move of SpatialSpaceView to SpaceViewClass trait framework [#2311](https://github.com/rerun-io/rerun/pull/2311) - Typename cleanup in SpaceViewClass framework [#2321](https://github.com/rerun-io/rerun/pull/2321) - Automatic fallback for unrecognized Space View Class, start removing old ViewCategory [#2357](https://github.com/rerun-io/rerun/pull/2357) - Rename ScenePart -> ViewPartSystem + related renamings [#2674](https://github.com/rerun-io/rerun/pull/2674) - Dynamically registered space view (part/context) systems [#2688](https://github.com/rerun-io/rerun/pull/2688) - Viewer's command queue is now a channel, allowing to queue commands without mutable access [#2339](https://github.com/rerun-io/rerun/pull/2339) - Break up app.rs into parts [#2303](https://github.com/rerun-io/rerun/pull/2303) - Break out `re_log_types::component_types` as `re_components` [#2258](https://github.com/rerun-io/rerun/pull/2258) - Introduce StoreHub and rename Recording->Store [#2301](https://github.com/rerun-io/rerun/pull/2301) - Move StoreHub out of the Viewer during Update [#2330](https://github.com/rerun-io/rerun/pull/2330) - Expand CommandSender to support SystemCommand [#2344](https://github.com/rerun-io/rerun/pull/2344) - Use `camino` crate for UTF8 paths in `re_types_builder` [#2637](https://github.com/rerun-io/rerun/pull/2637) - Separate 2D & 3D spaceview classes, removal of `ViewCategory`, `SpaceViewClass` driven spawn heuristics [#2716](https://github.com/rerun-io/rerun/pull/2716) - Move object property heuristics to heuristics.rs [#2764](https://github.com/rerun-io/rerun/pull/2764) #### ๐Ÿ“ฆ Dependencies - Version `rand` & friends at workspace level [#2508](https://github.com/rerun-io/rerun/pull/2508) - Update to PyO3 0.19 [#2350](https://github.com/rerun-io/rerun/pull/2350) - Pin `half` to `2.2.1` [#2587](https://github.com/rerun-io/rerun/pull/2587) #### ๐Ÿ“˜ Blueprint changes - Drive blueprints off of a DataStore [#2010](https://github.com/rerun-io/rerun/pull/2010) - Split SpaceView -> SpaceViewState + SpaceViewBlueprint [#2188](https://github.com/rerun-io/rerun/pull/2188) - Split the Blueprint into AppBlueprint and ViewportBlueprint [#2358](https://github.com/rerun-io/rerun/pull/2358) - Swap the naming of Viewport and ViewportBlueprint [#2595](https://github.com/rerun-io/rerun/pull/2595) - Basic persistence for blueprints [#2578](https://github.com/rerun-io/rerun/pull/2578) #### ๐Ÿญ New codegen framework - Codegen/IDL 1: add more build tools [#2362](https://github.com/rerun-io/rerun/pull/2362) - Codegen/IDL 2: introduce `re_types_builder` [#2363](https://github.com/rerun-io/rerun/pull/2363) - Codegen/IDL 3: introduce `re_types` [#2369](https://github.com/rerun-io/rerun/pull/2369) - Codegen/IDL 4: definitions for a `Points2D` archetype [#2370](https://github.com/rerun-io/rerun/pull/2370) - Codegen/IDL 5: auto-generated Python code for `Points2D` [#2374](https://github.com/rerun-io/rerun/pull/2374) - Codegen/IDL 7: handwritten Python tests and extensions for `Points2D` [#2410](https://github.com/rerun-io/rerun/pull/2410) - Codegen/IDL 6: auto-generated Rust code for `Points2D` [#2375](https://github.com/rerun-io/rerun/pull/2375) - Codegen/IDL 8: handwritten Rust tests and extensions for `Points2D` [#2432](https://github.com/rerun-io/rerun/pull/2432) - Codegen'd Rust/Arrow 1: upgrading to actual `TokenStream`s [#2484](https://github.com/rerun-io/rerun/pull/2484) - Codegen'd Rust/Arrow 2: matching legacy definitions [#2485](https://github.com/rerun-io/rerun/pull/2485) - Codegen'd Rust/Arrow 3: misc fixes & improvements [#2487](https://github.com/rerun-io/rerun/pull/2487) - Codegen'd Rust/Arrow 4: out-of-sync definitions CI detection [#2545](https://github.com/rerun-io/rerun/pull/2545) - Codegen'd Rust/Arrow 5: doc, definitions and regression tests for combinatorial affixes [#2546](https://github.com/rerun-io/rerun/pull/2546) - Codegen'd Rust/Arrow 6: serialization [#2549](https://github.com/rerun-io/rerun/pull/2549) - Codegen'd Rust/Arrow 7: deserialization [#2554](https://github.com/rerun-io/rerun/pull/2554) - Codegen'd Rust/Arrow 8: carry extension metadata across transparency layers [#2570](https://github.com/rerun-io/rerun/pull/2570) - Codegen'd Rust/Arrow 9: Rust backport! [#2571](https://github.com/rerun-io/rerun/pull/2571) - End-to-end cross-language roundtrip tests for our archetypes [#2601](https://github.com/rerun-io/rerun/pull/2601) - Automatically derive `Debug` and `Clone` in Rust backend [#2613](https://github.com/rerun-io/rerun/pull/2613) - Generating (de)serialization code for dense unions in Rust backend [#2626](https://github.com/rerun-io/rerun/pull/2626) - Fix `FixedSizeList` deserialization edge-case + trivial optimizations [#2673](https://github.com/rerun-io/rerun/pull/2673) - Make `Datatype` & `Component` both inherit from `Loggable` [#2677](https://github.com/rerun-io/rerun/pull/2677) - Roundtrip-able `Transform3D`s [#2669](https://github.com/rerun-io/rerun/pull/2669) - Don't inline recursive datatypes in Rust backend [#2760](https://github.com/rerun-io/rerun/pull/2760) - Automatically derive `tuple_struct` attr and trivial `From` impls where possible [#2772](https://github.com/rerun-io/rerun/pull/2772) - Introduce roundtrip-able `Points3D` archetype (py + rs) [#2774](https://github.com/rerun-io/rerun/pull/2774) - Add `fmt::Debug` implementations to various types. [#2784](https://github.com/rerun-io/rerun/pull/2784) (thanks [@kpreid](https://github.com/kpreid)!) - Isolate testing types in Rust backend [#2810](https://github.com/rerun-io/rerun/pull/2810) - Fix out-of-sync codegen hash [#2567](https://github.com/rerun-io/rerun/pull/2567) - Python backport: add `log_any()` [#2581](https://github.com/rerun-io/rerun/pull/2581) - Integrate unit examples into codegen stack [#2590](https://github.com/rerun-io/rerun/pull/2590) - Disable codegen on Windows [#2592](https://github.com/rerun-io/rerun/pull/2592) - Python codegen: big cleaning and paving the way towards transforms [#2603](https://github.com/rerun-io/rerun/pull/2603) - Automatically assume Arrow transparency for components [#2608](https://github.com/rerun-io/rerun/pull/2608) - Fix wrong path being `rerun_if_changed()` in `compute_dir_hash` [#2612](https://github.com/rerun-io/rerun/pull/2612) - Support transparency at the semantic layer [#2611](https://github.com/rerun-io/rerun/pull/2611) - Don't use builtin `required` anymore, introduce `nullable` instead [#2619](https://github.com/rerun-io/rerun/pull/2619) - Rust codegen: generate proper docstrings [#2668](https://github.com/rerun-io/rerun/pull/2668) - Support nullable Arrow unions using virtual union arms [#2708](https://github.com/rerun-io/rerun/pull/2708) - Introduce support for querying Archetypes [#2743](https://github.com/rerun-io/rerun/pull/2743) - Introduce legacy shims and migrate DataCell to re_types::Component [#2752](https://github.com/rerun-io/rerun/pull/2752) #### ๐ŸŒŠ Starting work on C++ - Seed of C and C++ SDKs [#2594](https://github.com/rerun-io/rerun/pull/2594) - Move C++ SDK to own folder [#2624](https://github.com/rerun-io/rerun/pull/2624) - C++ codegen [#2678](https://github.com/rerun-io/rerun/pull/2678) - C++ codegen for reporting Arrow data type for structs [#2756](https://github.com/rerun-io/rerun/pull/2756) - Don't inline recursive datatypes in C++ backend [#2765](https://github.com/rerun-io/rerun/pull/2765) - C++ codegen to_arrow_data_type for unions [#2766](https://github.com/rerun-io/rerun/pull/2766) - C++ codegen Arrow serialize non-union components/datatypes without nested Rerun types [#2820](https://github.com/rerun-io/rerun/pull/2820) - C++ codegen of structs and unions [#2707](https://github.com/rerun-io/rerun/pull/2707) - Fix cpp formatter differences [#2773](https://github.com/rerun-io/rerun/pull/2773) #### ๐Ÿคท Other #### ๐Ÿคท Other - test_api: set different app_id based on what test is run [#2599](https://github.com/rerun-io/rerun/pull/2599) - Introduce `rerun compare` to check whether 2 rrd files are functionally equivalent [#2597](https://github.com/rerun-io/rerun/pull/2597) - Remove `files.exclude` in vscode settings [#2621](https://github.com/rerun-io/rerun/pull/2621) - Support feature-gated Rust attributes [#2813](https://github.com/rerun-io/rerun/pull/2813) ## [0.7.0](https://github.com/rerun-io/rerun/compare/0.6.0...0.7.0) - improved transforms, better color mapping, bug & doc fixes - 2023-06-16 ### โœจ Overview & highlights While we're working on significant updates around interfaces and customizability, here's a smaller release packed with useful improvements ๐ŸŽ‰ * Much more powerful transformation logging * any affine transforms works now! * supports many more formats and shows them in the Viewer as-is * Better color mapping range detection for images and tensors * Many small improvements to samples & documentation ### ๐Ÿ”Ž Details #### ๐Ÿ Python SDK - Improved 3D transform ingestion & affine transform support [#2102](https://github.com/rerun-io/rerun/pull/2102) - Normalize Python typing syntax to 3.8+ [#2361](https://github.com/rerun-io/rerun/pull/2361) - Enforce `from __future__ import annotations` in Python files [#2377](https://github.com/rerun-io/rerun/pull/2377) - Add `jpeg_quality` parameter to `log_image` [#2418](https://github.com/rerun-io/rerun/pull/2418) #### ๐Ÿฆ€ Rust SDK - Improved 3D transform ingestion & affine transform support [#2102](https://github.com/rerun-io/rerun/pull/2102) - `impl Copy for Arrow3D`. [#2239](https://github.com/rerun-io/rerun/pull/2239) (thanks [@kpreid](https://github.com/kpreid)!) #### ๐Ÿชณ Bug fixes - Stable image order, fixing flickering [#2191](https://github.com/rerun-io/rerun/pull/2191) - Fix double clicking objects no longer focusing the camera on them [#2227](https://github.com/rerun-io/rerun/pull/2227) - Fix off-by-half pixel error in textured rectangle shader [#2294](https://github.com/rerun-io/rerun/pull/2294) - Update wgpu-hal to 0.16.1 to fix mobile Safari [#2296](https://github.com/rerun-io/rerun/pull/2296) - Fix some browsers failing due to 8k texture requirement, pick always highest available now [#2409](https://github.com/rerun-io/rerun/pull/2409) - Fix visibility toggles for time series not working [#2444](https://github.com/rerun-io/rerun/pull/2444) #### ๐ŸŒ Viewer improvements - Time panel now always talks about "events" instead of "messages" [#2247](https://github.com/rerun-io/rerun/pull/2247) - Automatically determine image/tensor color mapping & need for sRGB decoding [#2342](https://github.com/rerun-io/rerun/pull/2342) #### ๐Ÿš€ Performance improvements - Optimization: avoid a memory allocation when padding RGB u8 to RGBA [#2345](https://github.com/rerun-io/rerun/pull/2345) #### ๐Ÿง‘โ€๐Ÿซ Examples - Example of how to embed the Rerun Viewer inside your own GUI (+ ergonomic improvements) [#2250](https://github.com/rerun-io/rerun/pull/2250) - Objectron Rust example: install `protoc` for the user [#2280](https://github.com/rerun-io/rerun/pull/2280) - Remove weird-looking argument parsing in examples [#2398](https://github.com/rerun-io/rerun/pull/2398) - Fix `tracking_hf example`: put scaled thing under its own root entity [#2419](https://github.com/rerun-io/rerun/pull/2419) - Clean up our examples [#2424](https://github.com/rerun-io/rerun/pull/2424) - New face detection example based on MediaPipe [#2360](https://github.com/rerun-io/rerun/pull/2360) - Update web examples [#2420](https://github.com/rerun-io/rerun/pull/2420) - Update titles and tags for examples with real data [#2416](https://github.com/rerun-io/rerun/pull/2416) #### ๐Ÿ“š Docs - Merge `rerun-docs` repository into this monorepo [#2284](https://github.com/rerun-io/rerun/pull/2284) - Add manifest + readmes to examples [#2309](https://github.com/rerun-io/rerun/pull/2309) - Fix and clean up BUILD.md [#2319](https://github.com/rerun-io/rerun/pull/2319) - Link to `/examples` in PR description [#2320](https://github.com/rerun-io/rerun/pull/2320) - Make examples setup a separate page [#2323](https://github.com/rerun-io/rerun/pull/2323) - Add `site_url` to `mkdocs.yml` [#2326](https://github.com/rerun-io/rerun/pull/2326) - Add `log_cleared` to the common index [#2400](https://github.com/rerun-io/rerun/pull/2400) - Use forked `mkdocs-redirects` [#2404](https://github.com/rerun-io/rerun/pull/2404) - Add support for classes to generated Python common API index [#2401](https://github.com/rerun-io/rerun/pull/2401) - Added support for creating multi-resolution stacks with upload_image.py [#2411](https://github.com/rerun-io/rerun/pull/2411) - Document annotation context in manual [#2453](https://github.com/rerun-io/rerun/pull/2453) #### ๐Ÿ•ธ๏ธ Web - Update `wasm-bindgen` to 0.2.87 [#2406](https://github.com/rerun-io/rerun/pull/2406) - When loading on web, match style and show a progress indicator while Wasm is loading [#2421](https://github.com/rerun-io/rerun/pull/2421) #### ๐Ÿ“ˆ Analytics - Add crash retriever script [#2168](https://github.com/rerun-io/rerun/pull/2168) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Image uploader script [#2164](https://github.com/rerun-io/rerun/pull/2164) - Replace `wasm-bindgen-cli` with library `wasm-bindgen-cli-support` [#2257](https://github.com/rerun-io/rerun/pull/2257) - Fix manual release/dispatch workflows [#2230](https://github.com/rerun-io/rerun/pull/2230) - Add instructions on how to fix weird `gsutil` crash [#2278](https://github.com/rerun-io/rerun/pull/2278) - Link to preview of latest commit in PR body [#2287](https://github.com/rerun-io/rerun/pull/2287) - CI: Retry `linkinator` [#2299](https://github.com/rerun-io/rerun/pull/2299) - Remove long dead code Python unit test [#2356](https://github.com/rerun-io/rerun/pull/2356) - Added gcloud project name to `upload_image.py` [#2381](https://github.com/rerun-io/rerun/pull/2381) - Fix typo in `run_all.py` [#2441](https://github.com/rerun-io/rerun/pull/2441) - Small changelog improvements [#2442](https://github.com/rerun-io/rerun/pull/2442) - Minor fixes/improvements of `upload_image.py` [#2449](https://github.com/rerun-io/rerun/pull/2449) - Improve changelog generator [#2447](https://github.com/rerun-io/rerun/pull/2447) #### ๐Ÿ—ฃ Refactors - Centralize freestanding store helpers [#2153](https://github.com/rerun-io/rerun/pull/2153) #### ๐Ÿ“ฆ Dependencies - Update `xml-rs` v0.8.13 -> v0.8.14 [#2425](https://github.com/rerun-io/rerun/pull/2425) - Update pip package `requests` to 2.31 with bug fix [#2426](https://github.com/rerun-io/rerun/pull/2426) ## [0.6.0](https://github.com/rerun-io/rerun/compare/v0.5.1...0.6.0) - 3D in 2D and SDK batching - 2023-05-26 ### โœจ Overview & highlights - You can now show 3D objects in 2D views connected by Pinhole transforms [#2008](https://github.com/rerun-io/rerun/pull/2008) - You can quickly view images and meshes with `rerun mesh.obj image.png` [#2060](https://github.com/rerun-io/rerun/pull/2060) - The correct to install the `rerun` binary is now with `cargo install rerun-cli` [#2183](https://github.com/rerun-io/rerun/pull/2183) - `native_viewer` is now an opt-in feature of the `rerun` library, leading to faster compilation times [#2064](https://github.com/rerun-io/rerun/pull/2064) - Experimental WebGPU support [#1965](https://github.com/rerun-io/rerun/pull/1965) - SDK log calls are now batched on the wire, saving CPU time and bandwidth ### ๐Ÿ”Ž Details #### ๐Ÿ Python SDK - โš ๏ธ BREAKING: You must now call `rr.init` if you want logging to work. - โš ๏ธ BREAKING: `set_enabled` has been removed. In order to disable logging at runtime, call `set_global_data_recording(None)`. See also [the doc section on this topic](https://rerun.io/docs/reference/sdk/logging-controls#dynamically-turn-logging-onoff). - `log_mesh_file`: accept either path or bytes [#2098](https://github.com/rerun-io/rerun/pull/2098) - Add `draw_order` to 2D primitives [#2138](https://github.com/rerun-io/rerun/pull/2138) - Add `rr.version()` [#2084](https://github.com/rerun-io/rerun/pull/2084) - Add an experimental text-box component and logtype [#2011](https://github.com/rerun-io/rerun/pull/2011) - Fix a race condition for notebooks [#2073](https://github.com/rerun-io/rerun/pull/2073) - Redesign multi-recording & multi-threading [#2061](https://github.com/rerun-io/rerun/pull/2061) - More robust wait for exit condition during `.serve()` [#1939](https://github.com/rerun-io/rerun/pull/1939) - SDK batching/revamp 3: sunset `PythonSession` [#1985](https://github.com/rerun-io/rerun/pull/1985) #### ๐Ÿฆ€ Rust SDK - โš ๏ธ BREAKING: `set_enabled` has been removed. In order to disable logging at runtime, create a no-op recording via `RecordingStream::disabled()`. See also [the doc section on this topic](https://rerun.io/docs/reference/sdk/logging-controls#dynamically-turn-logging-onoff). - โš ๏ธ BREAKING: `Session` has been replaced by `RecordingStream` [#1983](https://github.com/rerun-io/rerun/pull/1983) - โš ๏ธ BREAKING: `native_viewer` is now an opt-in feature of the `rerun` library [#2064](https://github.com/rerun-io/rerun/pull/2064) - Rust SDK: bring back support for implicit splats [#2059](https://github.com/rerun-io/rerun/pull/2059) - Introduce a 2D `DrawOrder` component [#2056](https://github.com/rerun-io/rerun/pull/2056) - Add `Tensor::from_image_file` and `Tensor::from_image_bytes` [#2097](https://github.com/rerun-io/rerun/pull/2097) - Redesign multi-recording & multi-threading [#2061](https://github.com/rerun-io/rerun/pull/2061) #### ๐ŸŒ Viewer improvements - Support projecting 3D entities in 2D views [#2008](https://github.com/rerun-io/rerun/pull/2008) - Set Rerun Viewer native app icon using eframe [#1976](https://github.com/rerun-io/rerun/pull/1976) - Use `alt` key again for rolling camera in 3D views [#2066](https://github.com/rerun-io/rerun/pull/2066) - Show tensors shaped [H, W, 1, 1] as images (and more!) [#2075](https://github.com/rerun-io/rerun/pull/2075) - Show meshes and images with `rerun foo.obj bar.png` [#2060](https://github.com/rerun-io/rerun/pull/2060) - Don't persist blueprints for unknown apps [#2165](https://github.com/rerun-io/rerun/pull/2165) #### ๐Ÿชณ Bug fixes - Fix hover/select highlights when picking single points in a scene with multiple point clouds [#1942](https://github.com/rerun-io/rerun/pull/1942) - Fix crash for missing class ids causing zero sized texture [#1947](https://github.com/rerun-io/rerun/pull/1947) - Handle leaking of prerelease into alpha version [#1953](https://github.com/rerun-io/rerun/pull/1953) - Fix incorrect memory usage stats for destroyed on-creation-mapped buffers [#1963](https://github.com/rerun-io/rerun/pull/1963) - Fix: don't starve web-socket decoding task [#1977](https://github.com/rerun-io/rerun/pull/1977) - When hovering a 3D view in the presence of images, fix previously incorrect depth shown in 2D view [#2009](https://github.com/rerun-io/rerun/pull/2009) - Fix: use the Mac icon on Mac [#2023](https://github.com/rerun-io/rerun/pull/2023) - SDK batching/revamp 2.2: homegrown Arrow size estimation routines [#2002](https://github.com/rerun-io/rerun/pull/2002) - Fix twice as wide alpha-to-coverage edge on circles, leading to artifacts [#2053](https://github.com/rerun-io/rerun/pull/2053) - Bugfix: allow hovered items to be clicked to set selection [#2057](https://github.com/rerun-io/rerun/pull/2057) - Detect, warn and gracefully handle corrupt cells in `lookup_arrow` [#2055](https://github.com/rerun-io/rerun/pull/2055) - Fix failing dependency install of mesh_to_sdf [#2081](https://github.com/rerun-io/rerun/pull/2081) - Stop playback when we reach the end of the data [#2085](https://github.com/rerun-io/rerun/pull/2085) - `tornado` >6.1 doesn't work with recent `jupyter` [#2092](https://github.com/rerun-io/rerun/pull/2092) - Premultiply alpha of RGBA u8 images [#2095](https://github.com/rerun-io/rerun/pull/2095) - Fix premature pausing when reaching end of still-streaming stream [#2106](https://github.com/rerun-io/rerun/pull/2106) - 2D layering fixes [#2080](https://github.com/rerun-io/rerun/pull/2080) - Fix depth precision issues on WebGL due to different NDC space [#2123](https://github.com/rerun-io/rerun/pull/2123) - Fix flushing race in new multi-recording SDK [#2125](https://github.com/rerun-io/rerun/pull/2125) - Web viewer: catch and show panic messages that happens at startup [#2157](https://github.com/rerun-io/rerun/pull/2157) - Don't early-exit on non-pinhole transforms when looking up cameras [#2194](https://github.com/rerun-io/rerun/pull/2194) - Mitigate depth offset precision issues on web [#2187](https://github.com/rerun-io/rerun/pull/2187) - Fix colormaps [#2204](https://github.com/rerun-io/rerun/pull/2204) - Fix annotation images sometimes drawn in the background [#1933](https://github.com/rerun-io/rerun/pull/1933) - Fix hovering depth clouds [#1943](https://github.com/rerun-io/rerun/pull/1943) - Fix incorrect 2D camera for scenes with negative 2D coordinates [#2051](https://github.com/rerun-io/rerun/pull/2051) - Fix web depth/projection regression, causing incorrect rendering on all 3D scenes [#2170](https://github.com/rerun-io/rerun/pull/2170) #### ๐Ÿš€ Performance improvements - SDK batching/revamp 1: impl `DataTableBatcher` [#1980](https://github.com/rerun-io/rerun/pull/1980) - Upgrade arrow2/convert and use native buffers for the tensor u8 types [#1375](https://github.com/rerun-io/rerun/pull/1375) - Use the same RRD encoding for the SDK comms as for everything else [#2065](https://github.com/rerun-io/rerun/pull/2065) - Optimize GLTF/GLB texture loading in debug builds [#2096](https://github.com/rerun-io/rerun/pull/2096) - Premultiply the alpha on the GPU [#2190](https://github.com/rerun-io/rerun/pull/2190) - Switch compression algorithm from zstd to lz4 [#2112](https://github.com/rerun-io/rerun/pull/2112) - Support RRD streams with and without compression. Turn off for SDK comms [#2219](https://github.com/rerun-io/rerun/pull/2219) #### ๐Ÿง‘โ€๐Ÿซ Examples - Join threads at end of multi-threading example [#1934](https://github.com/rerun-io/rerun/pull/1934) - Add argument parsing to the rerun_demo [#1925](https://github.com/rerun-io/rerun/pull/1925) - Use zipfile Python library instead of `unzip` command in arkitscene [#1936](https://github.com/rerun-io/rerun/pull/1936) - Fix backslashes in arkitscene rigid transformation path [#1938](https://github.com/rerun-io/rerun/pull/1938) - Fix mp_pose example 2D points having incorrectly interpreted depth [#2034](https://github.com/rerun-io/rerun/pull/2034) - SDK batching/revamp 2.1: `clock` example for Rust [#2000](https://github.com/rerun-io/rerun/pull/2000) - Add `scripts/run_all.py` [#2046](https://github.com/rerun-io/rerun/pull/2046) - Check `examples/python/requirements.txt` in CI [#2063](https://github.com/rerun-io/rerun/pull/2063) - Fix glb mesh data set downloads [#2100](https://github.com/rerun-io/rerun/pull/2100) - Add more examples to https://app.rerun.io/ [#2062](https://github.com/rerun-io/rerun/pull/2062) #### ๐Ÿ–ผ UI improvements - Update egui to latest and wgpu to 0.16 [#1958](https://github.com/rerun-io/rerun/pull/1958) - Add keyboard shortcut for "Follow", and stop following on "Restart" [#1986](https://github.com/rerun-io/rerun/pull/1986) (thanks [@h3mosphere](https://github.com/h3mosphere)!) - Improve UI for keypoint and class-ids of annotations contexts [#2071](https://github.com/rerun-io/rerun/pull/2071) - improvements to memory measurements and reporting [#2069](https://github.com/rerun-io/rerun/pull/2069) - Switch from `egui_dock` to `egui_tiles` [#2082](https://github.com/rerun-io/rerun/pull/2082) - Allow horizontal scrolling in blueprint panel [#2114](https://github.com/rerun-io/rerun/pull/2114) - Nicer (& fixed up) help texts for space views [#2070](https://github.com/rerun-io/rerun/pull/2070) - Allow dragging time cursor in plots [#2115](https://github.com/rerun-io/rerun/pull/2115) #### ๐Ÿ•ธ๏ธ Web - Set the GC limit to 2.5GB on web [#1944](https://github.com/rerun-io/rerun/pull/1944) - Better crash reports on Web, plus WebGPU support detection [#1975](https://github.com/rerun-io/rerun/pull/1975) - Work around https://github.com/sebcrozet/instant/issues/49 [#2094](https://github.com/rerun-io/rerun/pull/2094) - Update `wasm-bindgen` to 0.2.86 [#2161](https://github.com/rerun-io/rerun/pull/2161) #### ๐ŸŽจ Renderer improvements - Full (experimental) WebGPU support [#1965](https://github.com/rerun-io/rerun/pull/1965) - Depth offset for lines & points [#2052](https://github.com/rerun-io/rerun/pull/2052) - Update to wgpu 0.16.1 [#2205](https://github.com/rerun-io/rerun/pull/2205) #### ๐Ÿšœ Refactors - Replace complex uses of `query_entity_with_primary` with `query_latest_single` [#2137](https://github.com/rerun-io/rerun/pull/2137) - Make selection state independent of blueprint [#2035](https://github.com/rerun-io/rerun/pull/2035) - Remove unused MeshSourceData [#2036](https://github.com/rerun-io/rerun/pull/2036) - Move selection state into an independent crate, re_viewer_context [#2037](https://github.com/rerun-io/rerun/pull/2037) - Move item-ui to separate module, move AppOptions to re_viewer_context [#2040](https://github.com/rerun-io/rerun/pull/2040) - Move `Caches` to `re_viewer_ctx` and make it generic [#2043](https://github.com/rerun-io/rerun/pull/2043) - Move time control to re_viewer_context [#2045](https://github.com/rerun-io/rerun/pull/2045) - Move `ViewerContext` & `ComponentUiRegistry` to `viewer_context` [#2047](https://github.com/rerun-io/rerun/pull/2047) - Move data UI to new `re_data_ui` crate [#2048](https://github.com/rerun-io/rerun/pull/2048) - Use instant for `Time::now()` [#2090](https://github.com/rerun-io/rerun/pull/2090) - Move from `instant` -> `web_time` [#2093](https://github.com/rerun-io/rerun/pull/2093) - "namespace" flag parameters for linestrip & point cloud shader flags [#2033](https://github.com/rerun-io/rerun/pull/2033) #### โœจ Other enhancement - Update minimum supported Rust version to `1.69.0` [#1935](https://github.com/rerun-io/rerun/pull/1935) - Allow users to select the bind address (ip) to use with `--bind` [#2159](https://github.com/rerun-io/rerun/pull/2159) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Suggest users open an issue on crash, and other fixes [#1993](https://github.com/rerun-io/rerun/pull/1993) - Lint error names in `map_err` [#1948](https://github.com/rerun-io/rerun/pull/1948) - New dispatch-only workflow for running the lint-job [#1950](https://github.com/rerun-io/rerun/pull/1950) - Move clippy_wasm/clippy.toml to under scripts [#1949](https://github.com/rerun-io/rerun/pull/1949) - Fix run-wasm crash on trying to wait for server [#1959](https://github.com/rerun-io/rerun/pull/1959) - Introduce new reusable workflow jobs and cleanup manual trigger [#1954](https://github.com/rerun-io/rerun/pull/1954) - Use new CI workflows on pull-request [#1955](https://github.com/rerun-io/rerun/pull/1955) - Try making pull-request workflows non-concurrent [#1970](https://github.com/rerun-io/rerun/pull/1970) - Another attempt to make jobs non-concurrent on a per-PR basis [#1974](https://github.com/rerun-io/rerun/pull/1974) - If there's a `{{ pr-build-summary }}` in the PR description, update it. [#1971](https://github.com/rerun-io/rerun/pull/1971) - Run the cube notebook on PR [#1972](https://github.com/rerun-io/rerun/pull/1972) - Add ability to manually run a web build to upload to an adhoc name [#1966](https://github.com/rerun-io/rerun/pull/1966) - Limit ipython to 8.12 in the Jupyter example [#2001](https://github.com/rerun-io/rerun/pull/2001) - New manual job to publish a release based on pre-built wheels [#2025](https://github.com/rerun-io/rerun/pull/2025) - Use the correct Rust analyzer settings [#2028](https://github.com/rerun-io/rerun/pull/2028) - New helper for sticking Serde-encodable data into Arrow [#2004](https://github.com/rerun-io/rerun/pull/2004) - Fix `taplo-cli` failing to install [#2068](https://github.com/rerun-io/rerun/pull/2068) - `run_all.py`: add `--fast`, `--separate`, and `--close` [#2054](https://github.com/rerun-io/rerun/pull/2054) - Remove `Clipboard::set_text` [#2078](https://github.com/rerun-io/rerun/pull/2078) - run_all.py: print output on sequential run failure [#2079](https://github.com/rerun-io/rerun/pull/2079) - Use the american spelling of "gray" [#2099](https://github.com/rerun-io/rerun/pull/2099) - Make sure `rerun/rerun_py/re_viewer` build info is updated on each build [#2087](https://github.com/rerun-io/rerun/pull/2087) - Fix setup scripts for Mac M1/MacPort configuration [#2169](https://github.com/rerun-io/rerun/pull/2169) (thanks [@abey79](https://github.com/abey79)!) - Better error messages in `build.rs` [#2173](https://github.com/rerun-io/rerun/pull/2173) - `cargo install rerun-cli` [#2183](https://github.com/rerun-io/rerun/pull/2183) - Fix `cargo test` [#2199](https://github.com/rerun-io/rerun/pull/2199) - Fix run all for new rust-cli target & add rerun-web alias for quick running of the web player [#2203](https://github.com/rerun-io/rerun/pull/2203) #### ๐Ÿคท Other #### ๐Ÿคท Other - Fix secret in dispatch_lint.yml [4848f98f2605a3caf9b7695273e0871efa2d44c8](https://github.com/rerun-io/rerun/commit/4848f98f2605a3caf9b7695273e0871efa2d44c8) - Only maintain a single manual-dispatch job for testing workflows [98f7de3b52b0fea6abe364f9d0ce0bd4c459caf1](https://github.com/rerun-io/rerun/commit/98f7de3b52b0fea6abe364f9d0ce0bd4c459caf1) - Add other build parametrizations to manual_dispatch.yml [dbdf275eaf17220d14811dc34b69b6a76e948e73](https://github.com/rerun-io/rerun/commit/dbdf275eaf17220d14811dc34b69b6a76e948e73) - Use proper if gates on the manual_dispatch.yml jobs [9ad62011678caaed04260ba160763e24e64a7402](https://github.com/rerun-io/rerun/commit/9ad62011678caaed04260ba160763e24e64a7402) - Add ability to save cache to manual_dispatch.yml [5c61b37a1bc40f1a223c370b3b69b08654aada47](https://github.com/rerun-io/rerun/commit/5c61b37a1bc40f1a223c370b3b69b08654aada47) - Standard case of inputs [2729c71f1ba9f7cdbe64adc3c610caf9464324e4](https://github.com/rerun-io/rerun/commit/2729c71f1ba9f7cdbe64adc3c610caf9464324e4) - Add manual step for packaging to 'manual_dispatch.yml' [a3178e6143c068175b477cb236f2ba2477e083ea](https://github.com/rerun-io/rerun/commit/a3178e6143c068175b477cb236f2ba2477e083ea) - New workflow_dispatch for building wheels for a PR [3bc2cb73ece98f914254221ce0ea129015834f59](https://github.com/rerun-io/rerun/commit/3bc2cb73ece98f914254221ce0ea129015834f59) - Rename build_wheels_for_pr.yml -> manual_build_wheels_for_pr.yml [778c4d363b3814aeb777d07bfa63f081bc1dac32](https://github.com/rerun-io/rerun/commit/778c4d363b3814aeb777d07bfa63f081bc1dac32) - New manual workflow for running benches [840a127e3a74c3520a27c0b19eb1d3d9a7255b07](https://github.com/rerun-io/rerun/commit/840a127e3a74c3520a27c0b19eb1d3d9a7255b07) - New manual workflow for adhoc web builds [01080d6509e94fd2e2d3c4ff05beb0970ebe0b6e](https://github.com/rerun-io/rerun/commit/01080d6509e94fd2e2d3c4ff05beb0970ebe0b6e) - Fix name of on_push_main.yml [bf5f63344663b3ebfc74f847db696a749b3e716c](https://github.com/rerun-io/rerun/commit/bf5f63344663b3ebfc74f847db696a749b3e716c) - Fix usage of long commit in generate_prerelease_pip_index.py [579ce91556d6dd3cb9e6bd46971a7b6db6e42cdd](https://github.com/rerun-io/rerun/commit/579ce91556d6dd3cb9e6bd46971a7b6db6e42cdd) - Jobs with duplicated instances still need separate concurrency keys based on platform [0ad19980be99cb2f669d38c2f1410a38206cbe74](https://github.com/rerun-io/rerun/commit/0ad19980be99cb2f669d38c2f1410a38206cbe74) - New manual CI job for creating a release [fb2d41af5ec089f6c7583629eda3fb332e420488](https://github.com/rerun-io/rerun/commit/fb2d41af5ec089f6c7583629eda3fb332e420488) - Version check needs to run in bash [6feca463d21ea03538889df08064b6974edb1fd2](https://github.com/rerun-io/rerun/commit/6feca463d21ea03538889df08064b6974edb1fd2) - Update changelog with 0.5.1 release notes [40fc2fd7d61689100dc40bfe59e4ddfbcc819c7d](https://github.com/rerun-io/rerun/commit/40fc2fd7d61689100dc40bfe59e4ddfbcc819c7d) - `RecordingStream`: automatic `log_tick` timeline [#2072](https://github.com/rerun-io/rerun/pull/2072) - Add support for `f16` tensors [#1449](https://github.com/rerun-io/rerun/pull/1449) - Make `RecordingId` a string [#2088](https://github.com/rerun-io/rerun/pull/2088) - Update to latest `egui_tiles` [#2091](https://github.com/rerun-io/rerun/pull/2091) - Make every `RecordingId` typed and preclude the existence of 'Defaults' [#2110](https://github.com/rerun-io/rerun/pull/2110) - Add unit test of `re_smart_channel` `is_connected` [#2119](https://github.com/rerun-io/rerun/pull/2119) - `BeingRecordingMsg` -> `SetRecordingInfo` [#2149](https://github.com/rerun-io/rerun/pull/2149) - Update egui and eframe [#2184](https://github.com/rerun-io/rerun/pull/2184) - Update to egui 0.22 [#2195](https://github.com/rerun-io/rerun/pull/2195) - Simpler SIGINT handling [#2198](https://github.com/rerun-io/rerun/pull/2198) - `cargo update` [#2196](https://github.com/rerun-io/rerun/pull/2196) - Replace `ctrlc` crate with `tokio` [#2207](https://github.com/rerun-io/rerun/pull/2207) - Comment indicating blueprints aren't available in 0.6 [b6c05776ab48e759370d6fed645ffd0ea68ec8c0](https://github.com/rerun-io/rerun/commit/b6c05776ab48e759370d6fed645ffd0ea68ec8c0) ## [0.5.1](https://github.com/rerun-io/rerun/compare/v0.5.1...v0.5.0) - Patch Release - 2023-05-01 ### โœจ Overview & highlights This Release fixes a few small bugs on top of the v0.5.0 release. ### ๐Ÿ”Ž Details * Bump hyper version due to RUSTSEC-2023-0034 [#1951](https://github.com/rerun-io/rerun/pull/1951) * Round to nearest color_index when doing color mapping [#1969](https://github.com/rerun-io/rerun/pull/1969) * Use an sRGB-correct gray gradient when displaying grayscale images [#2014](https://github.com/rerun-io/rerun/pull/2014) * Don't use console.error [#1984](https://github.com/rerun-io/rerun/pull/1984) * Fix failure to save files when split table contains no data [#2007](https://github.com/rerun-io/rerun/pull/2007) ## [0.5.0](https://github.com/rerun-io/rerun/compare/v0.4.0...v0.5.0) - Jupyter MVP, GPU-based picking & colormapping, new datastore! - 2023-04-20 https://user-images.githubusercontent.com/2910679/233411525-1ceb2790-7f18-400a-ba48-f7e5b3400922.mp4 ### โœจ Overview & highlights This new release adds MVP support for embedding Rerun in Jupyter notebooks, and brings significant performance improvements across all layers of the stack. * Rerun can now be embedded in Jupyter notebooks * Tested with Jupyter Notebook Classic, Jupyter Lab, VSCode & Google Colab; checkout our [How-to guide](https://rerun.io/docs/howto/notebook) * Try it out live on [Google Colab](https://colab.research.google.com/drive/1R9I7s4o6wydQC_zkybqaSRFTtlEaked_?usp=sharing) * All colormapping tasks are now done directly on the GPU * This yields _very significant_ performance improvements for colormapping heavy workload (e.g. segmentation) * Try it out in our new [`segment_anything` example](https://rerun.io/examples/video-image/segment_anything_model) that shows off the latest models from Meta AI * GPU picking & hovering now works with all of our primitives, including meshes & depth clouds * This fixes all the shortcomings of the previous CPU-based system * Rerun's automatic backprojection of depth textures ("depth clouds") is now feature complete * Try it out in our updated [`nyud` example](https://rerun.io/examples/robotics/rgbd) * Our datastore has been completely revamped to more closely match our latest data model * This yields _very significant_ performance improvements for workloads with many events * Checkout [this post](https://github.com/rerun-io/rerun/issues/1619#issuecomment-1511046649) for a detailed walkthrough of the changes ### ๐Ÿ”Ž Details #### ๐Ÿ Python SDK - Document that we also accept colors in 0-1 floats [#1740](https://github.com/rerun-io/rerun/pull/1740) - Don't initialize an SDK session if we are only going to be launching the app [#1768](https://github.com/rerun-io/rerun/pull/1768) - Allow torch tensors for `log_rigid3` [#1769](https://github.com/rerun-io/rerun/pull/1769) - Always send `recording_id` as part of `LogMsg` [#1778](https://github.com/rerun-io/rerun/pull/1778) - New `reset_time` API [#1826](https://github.com/rerun-io/rerun/pull/1826) [#1854](https://github.com/rerun-io/rerun/pull/1854) - Always flush when we remove a sink [#1830](https://github.com/rerun-io/rerun/pull/1830) - More robust wait for exit condition during .serve() [#1939](https://github.com/rerun-io/rerun/pull/1939) #### ๐Ÿชณ Bug fixes - Fix broken outlines (hover/select effect) for lines [#1724](https://github.com/rerun-io/rerun/pull/1724) - Fix logged obb being displayed with half of the requested size [#1749](https://github.com/rerun-io/rerun/pull/1749) (thanks [@BenjaminDev](https://github.com/BenjaminDev)!) - Fix `log_obb` usage [#1761](https://github.com/rerun-io/rerun/pull/1761) - Always create the `log_time` timeline [#1763](https://github.com/rerun-io/rerun/pull/1763) - Fix undo/redo selection shortcut/action changing selection history without changing selection [#1765](https://github.com/rerun-io/rerun/pull/1765) - Fix various crashes [#1780](https://github.com/rerun-io/rerun/pull/1780) - Fix crash when trying to do picking on depth clouds [d94ca3dd35e73e1984ccb969d0c7abd0d3e0faa9](https://github.com/rerun-io/rerun/commit/d94ca3dd35e73e1984ccb969d0c7abd0d3e0faa9) - CI: fix benchmarks [#1799](https://github.com/rerun-io/rerun/pull/1799) - CI: fix `cargo deny` [#1806](https://github.com/rerun-io/rerun/pull/1806) - Fix "too many points" crash [#1822](https://github.com/rerun-io/rerun/pull/1822) - Allow re-use of `RowId`s if no conflict is possible [#1832](https://github.com/rerun-io/rerun/pull/1832) - Reduce memory used by staging belts on Web [#1836](https://github.com/rerun-io/rerun/pull/1836) - Test and handle all tensor dtypes as images [#1840](https://github.com/rerun-io/rerun/pull/1840) - Fix the Python build when running without `web_viewer` enabled [#1856](https://github.com/rerun-io/rerun/pull/1856) - Error instead of `expect` inside `msg_encode` [#1857](https://github.com/rerun-io/rerun/pull/1857) - Fix shutdown race condition in `re_sdk_comms` client [#1861](https://github.com/rerun-io/rerun/pull/1861) - Fix broken instance picking in presence of images [#1876](https://github.com/rerun-io/rerun/pull/1876) - Make sure JPEGs are always decoded [#1884](https://github.com/rerun-io/rerun/pull/1884) - Fix crash when saving store to file [#1909](https://github.com/rerun-io/rerun/pull/1909) - Don't clean up `LogDb`s that only contain a `BeginRecordingMsg` [#1914](https://github.com/rerun-io/rerun/pull/1914) - Fix picking entities with image + another object (or label) twice [#1908](https://github.com/rerun-io/rerun/pull/1908) - Fix double clicking camera no longer focusing on said camera [#1911](https://github.com/rerun-io/rerun/pull/1911) - Fix annotation images sometimes drawn in the background [#1933](https://github.com/rerun-io/rerun/pull/1933) - Use `zipfile` Python library instead of `unzip` command in `arkitscene` demo [#1936](https://github.com/rerun-io/rerun/pull/1936) - Fix backslashes in `arkitscene` rigid transformation path [#1938](https://github.com/rerun-io/rerun/pull/1938) - Fix hover/select highlights when picking single points in a scene with multiple point clouds [#1942](https://github.com/rerun-io/rerun/pull/1942) - Fix hovering depth clouds [#1943](https://github.com/rerun-io/rerun/pull/1943) #### ๐Ÿš€ Performance improvements - batching 4: retire `MsgBundle` + batching support in transport layer [#1679](https://github.com/rerun-io/rerun/pull/1679) - Optimize the depth-cloud shader when `depth=0` [#1729](https://github.com/rerun-io/rerun/pull/1729) - `arrow2_convert` primitive (de)serialization benchmarks [#1742](https://github.com/rerun-io/rerun/pull/1742) - `arrow2` `estimated_bytes_size` benchmarks [#1743](https://github.com/rerun-io/rerun/pull/1743) - `arrow2` erased refcounted clones benchmarks [#1745](https://github.com/rerun-io/rerun/pull/1745) - benchmarks for common vector ops across `smallvec`/`tinyvec`/std [#1747](https://github.com/rerun-io/rerun/pull/1747) - Columnar `TimePoint`s in data tables and during transport [#1767](https://github.com/rerun-io/rerun/pull/1767) - Compile with `panic = "abort"` [#1813](https://github.com/rerun-io/rerun/pull/1813) - Process 2D points per entities like 3D points [#1820](https://github.com/rerun-io/rerun/pull/1820) - re_query: use latest data types (`DataRow`/`DataCell`) [#1828](https://github.com/rerun-io/rerun/pull/1828) - Depth cloud textures are now cached frame-to-frame [#1913](https://github.com/rerun-io/rerun/pull/1913) #### ๐Ÿง‘โ€๐Ÿซ Examples - Add new `ARKitScenes` example [#1538](https://github.com/rerun-io/rerun/pull/1538) (thanks [@pablovela5620](https://github.com/pablovela5620)!) - New example code for Facebook research's `segment-anything` [#1788](https://github.com/rerun-io/rerun/pull/1788) - Add `minimal_options` example for Rust SDK [#1773](https://github.com/rerun-io/rerun/pull/1773) (thanks [@h3mosphere](https://github.com/h3mosphere)!) - Remove manual depth projection from `car` and `nyud` examples [#1869](https://github.com/rerun-io/rerun/pull/1869) - Always spawn instead of fork in multiprocessing example [#1922](https://github.com/rerun-io/rerun/pull/1922) - Add `--num-frames` arg to canny (webcam) example [#1923](https://github.com/rerun-io/rerun/pull/1923) - Add argument parsing to `rerun_demo` [#1925](https://github.com/rerun-io/rerun/pull/1925) - Join threads at end of `multithreading` example [#1934](https://github.com/rerun-io/rerun/pull/1934) #### ๐Ÿ“š Docs - Add `typing_extensions` to `requirements-doc.txt` [#1786](https://github.com/rerun-io/rerun/pull/1786) - Fix typos in notebook readme [#1852](https://github.com/rerun-io/rerun/pull/1852) - Update docs related to notebook [#1915](https://github.com/rerun-io/rerun/pull/1915) #### ๐Ÿ–ผ UI improvements - Hover rays for tracked 3D cameras [#1751](https://github.com/rerun-io/rerun/pull/1751) - Collapse space-view by default if there is only one child [#1762](https://github.com/rerun-io/rerun/pull/1762) - Option to show scene bounding box [#1770](https://github.com/rerun-io/rerun/pull/1770) - Assign default colors to class-ids when annotation context is missing [#1783](https://github.com/rerun-io/rerun/pull/1783) - Add Restart command and keyboard shortcut for moving time to start of timeline [#1802](https://github.com/rerun-io/rerun/pull/1802) (thanks [@h3mosphere](https://github.com/h3mosphere)!) - New option to disable persistent storage [#1825](https://github.com/rerun-io/rerun/pull/1825) - Show previews of colormaps when selecting them [#1846](https://github.com/rerun-io/rerun/pull/1846) - Smooth out scroll wheel input for camera zooming [#1920](https://github.com/rerun-io/rerun/pull/1920) #### ๐Ÿคท Other Viewer improvements - Change `EntityPathHash` to be 64 bit [#1723](https://github.com/rerun-io/rerun/pull/1723) - Central `GpuReadback` handling for re_viewer, experimental space view screenshots [#1717](https://github.com/rerun-io/rerun/pull/1717) - Readback depth from GPU picking [#1752](https://github.com/rerun-io/rerun/pull/1752) - Use GPU picking for points, streamline/share picking code some more [#1814](https://github.com/rerun-io/rerun/pull/1814) - Use GPU picking for line(like) primitives, fix `interactive` flags [#1829](https://github.com/rerun-io/rerun/pull/1829) - Use GPU colormapping when showing images in the GUI [#1865](https://github.com/rerun-io/rerun/pull/1865) #### ๐Ÿ•ธ๏ธ Web - Make CI publish `latest` tagged web-viewer to `app.rerun.io` [#1725](https://github.com/rerun-io/rerun/pull/1725) - Implement `re_tuid::Tuid::random()` on web [#1796](https://github.com/rerun-io/rerun/pull/1796) - Refactor the relationship between the assorted web / websocket servers [#1844](https://github.com/rerun-io/rerun/pull/1844) - Notebooks: make `presentation_id` consistent and use data-attribute for rrd [#1881](https://github.com/rerun-io/rerun/pull/1881) - 2.5GB before GC kick in on web [#1944](https://github.com/rerun-io/rerun/pull/1944) #### ๐ŸŽจ Renderer improvements - GPU based picking with points [#1721](https://github.com/rerun-io/rerun/pull/1721) - improved renderer label handling [#1731](https://github.com/rerun-io/rerun/pull/1731) - Improved readback data handling [#1734](https://github.com/rerun-io/rerun/pull/1734) - GPU based mesh picking [#1737](https://github.com/rerun-io/rerun/pull/1737) - Improve dealing with raw buffers for texture read/write [#1744](https://github.com/rerun-io/rerun/pull/1744) - GPU colormapping, first step [#1835](https://github.com/rerun-io/rerun/pull/1835) - GPU tensor colormapping [#1841](https://github.com/rerun-io/rerun/pull/1841) - GPU picking for depth clouds [#1849](https://github.com/rerun-io/rerun/pull/1849) - Implement bilinear filtering of textures [#1850](https://github.com/rerun-io/rerun/pull/1850) [#1859](https://github.com/rerun-io/rerun/pull/1859) [#1860](https://github.com/rerun-io/rerun/pull/1860) - Refactor: remove `GpuTexture2DHandle::invalid` [#1866](https://github.com/rerun-io/rerun/pull/1866) - Fix filtering artifact for non-color images [#1886](https://github.com/rerun-io/rerun/pull/1886) - Refactor: Add helper functions to `GpuTexture2DHandle` [#1900](https://github.com/rerun-io/rerun/pull/1900) #### ๐Ÿ›ข Datastore improvements - Datastore: revamp bench suite [#1733](https://github.com/rerun-io/rerun/pull/1733) - Datastore revamp 1: new indexing model & core datastructures [#1727](https://github.com/rerun-io/rerun/pull/1727) - Datastore revamp 2: serialization & formatting [#1735](https://github.com/rerun-io/rerun/pull/1735) - Datastore revamp 3: efficient incremental stats [#1739](https://github.com/rerun-io/rerun/pull/1739) - Datastore revamp 4: sunset `MsgId` [#1785](https://github.com/rerun-io/rerun/pull/1785) - Datastore revamp 5: `DataStore::to_data_tables()` [#1791](https://github.com/rerun-io/rerun/pull/1791) - Datastore revamp 6: sunset `LogMsg` storage + save store to disk [#1795](https://github.com/rerun-io/rerun/pull/1795) - Datastore revamp 7: garbage collection [#1801](https://github.com/rerun-io/rerun/pull/1801) - Incremental metadata registry stats [#1833](https://github.com/rerun-io/rerun/pull/1833) #### ๐Ÿ—ฃ Merged RFCs - RFC: datastore state of the union & end-to-end batching [#1610](https://github.com/rerun-io/rerun/pull/1610) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Post-release cleanup [#1726](https://github.com/rerun-io/rerun/pull/1726) - Remove unnecessary dependencies [#1711](https://github.com/rerun-io/rerun/pull/1711) (thanks [@vsuryamurthy](https://github.com/vsuryamurthy)!) - Use copilot markers in PR template [#1784](https://github.com/rerun-io/rerun/pull/1784) - re_format: barebone support for custom formatting [#1776](https://github.com/rerun-io/rerun/pull/1776) - Refactor: Add new helper crate `re_log_encoding` [#1772](https://github.com/rerun-io/rerun/pull/1772) - `setup_web.sh` supports pacman package manager [#1797](https://github.com/rerun-io/rerun/pull/1797) (thanks [@urholaukkarinen](https://github.com/urholaukkarinen)!) - Add `rerun --strict`: crash if any warning or error is logged [#1812](https://github.com/rerun-io/rerun/pull/1812) - End-to-end testing of Python logging -> store ingestion [#1817](https://github.com/rerun-io/rerun/pull/1817) - Fix e2e test on CI: Don't try to re-build `rerun-sdk` [#1821](https://github.com/rerun-io/rerun/pull/1821) - Install the rerun-sdk in CI using `--no-index` and split out Linux wheel build to run first [#1838](https://github.com/rerun-io/rerun/pull/1838) - Remove more unused dependencies [#1863](https://github.com/rerun-io/rerun/pull/1863) - Improve end-to-end testing slightly [#1862](https://github.com/rerun-io/rerun/pull/1862) - Turn off benchmarks comment in each PR [#1872](https://github.com/rerun-io/rerun/pull/1872) - Fix double-negation in `scripts/run_python_e2e_test.py` [#1896](https://github.com/rerun-io/rerun/pull/1896) - Improve PR template with better comment, and no copilot by default [#1901](https://github.com/rerun-io/rerun/pull/1901) - Optimize `generate_changelog.py` [#1912](https://github.com/rerun-io/rerun/pull/1912) #### ๐Ÿคท Other - Fix videos for GitHub in `CHANGELOG.md` [af7d3b192157f942e35f64d3561a9a8dbcc18bfa](https://github.com/rerun-io/rerun/commit/af7d3b192157f942e35f64d3561a9a8dbcc18bfa) - Don't run 3rd party bench suites on CI [#1787](https://github.com/rerun-io/rerun/pull/1787) - Remove `TensorTrait` [#1819](https://github.com/rerun-io/rerun/pull/1819) - Disable wheel tests for `x86_64-apple-darwin` [#1853](https://github.com/rerun-io/rerun/pull/1853) - Update `enumflags2` to non-yanked version [#1874](https://github.com/rerun-io/rerun/pull/1874) - Collect extra egui features into the main `Cargo.toml` [#1926](https://github.com/rerun-io/rerun/pull/1926) - `just rs-run-all` [b14087b40bd805c95f030a4c7d3fb7a0482e13f4](https://github.com/rerun-io/rerun/commit/b14087b40bd805c95f030a4c7d3fb7a0482e13f4) - `just py-run-all-{native|web|rrd}` [#1927](https://github.com/rerun-io/rerun/pull/1927) ## [0.4.0](https://github.com/rerun-io/rerun/compare/v0.3.1...v0.4.0) - Outlines, web viewer and performance improvements - 2023-03-28 https://user-images.githubusercontent.com/1220815/228241887-03b311e2-80e9-4541-9281-6d334a15ab04.mp4 ### โœจ Overview & highlights * Add support for mesh vertex colors [#1671](https://github.com/rerun-io/rerun/pull/1671) * Lower memory use [#1535](https://github.com/rerun-io/rerun/pull/1535) * Improve garbage collection [#1560](https://github.com/rerun-io/rerun/pull/1560) * Improve the web viewer [#1596](https://github.com/rerun-io/rerun/pull/1596) [#1594](https://github.com/rerun-io/rerun/pull/1594) [#1682](https://github.com/rerun-io/rerun/pull/1682) [#1716](https://github.com/rerun-io/rerun/pull/1716) โ€ฆ * Nice outlines when hovering/selecting * Add an example of forever-streaming a web-camera image to Rerun [#1502](https://github.com/rerun-io/rerun/pull/1502) * Fix crash-on-save on some versions of Linux [#1402](https://github.com/rerun-io/rerun/pull/1402) * And a lot of other bug fixes * Many performance improvements We now host an experimental and unpolished web-viewer at for anyone to try out! ### ๐Ÿ”Ž Details #### ๐Ÿ Python SDK - Expose all Rerun enums and types to main module scope [#1598](https://github.com/rerun-io/rerun/pull/1598) - Make `log_point` more forgiving and update docstring [#1663](https://github.com/rerun-io/rerun/pull/1663) - Add support for mesh vertex colors [#1671](https://github.com/rerun-io/rerun/pull/1671) #### ๐Ÿฆ€ Rust SDK - โš ๏ธ `Session::new` has been replaced with `SessionBuilder` [#1528](https://github.com/rerun-io/rerun/pull/1528) - โš ๏ธ `session.spawn(โ€ฆ)` -> `rerun::native_viewer::spawn(session, โ€ฆ)` [#1507](https://github.com/rerun-io/rerun/pull/1507) - โš ๏ธ `session.show()` -> `rerun::native_viewer::show(session)` [#1507](https://github.com/rerun-io/rerun/pull/1507) - โš ๏ธ `session.serve(โ€ฆ)` -> `rerun::serve_web_viewer(session, โ€ฆ);` [#1507](https://github.com/rerun-io/rerun/pull/1507) - โš ๏ธ `rerun::global_session` is now hidden behind the `global_session` feature flag [#1507](https://github.com/rerun-io/rerun/pull/1507) - Add support for mesh vertex colors [#1671](https://github.com/rerun-io/rerun/pull/1671) #### ๐Ÿชณ Bug fixes - datastore: disable compaction (fixes 2x memory issue) [#1535](https://github.com/rerun-io/rerun/pull/1535) - Fix garbage collection [#1560](https://github.com/rerun-io/rerun/pull/1560) - Avoid using undefined extern "C" on Windows [#1577](https://github.com/rerun-io/rerun/pull/1577) - Fix crash on decoding old .rrd files [#1579](https://github.com/rerun-io/rerun/pull/1579) - datastore: stabilize dataframe sorts [#1549](https://github.com/rerun-io/rerun/pull/1549) - Stop using infinities in wgsl shaders [#1594](https://github.com/rerun-io/rerun/pull/1594) - Workaround for alpha to coverage state leaking on (Web)GL renderer [#1596](https://github.com/rerun-io/rerun/pull/1596) - Use a patched `wasm-bindgen-cli` with fix for 2GiB bug [#1605](https://github.com/rerun-io/rerun/pull/1605) - Misc: make example in `log_pinhole` runnable [#1609](https://github.com/rerun-io/rerun/pull/1609) (thanks [@Sjouks](https://github.com/Sjouks)!) - Early-out on zero-sized space-views to prevent crashes [#1623](https://github.com/rerun-io/rerun/pull/1623) - Print our own callstack on panics [#1622](https://github.com/rerun-io/rerun/pull/1622) - Handle ctrl+c to gracefully shutdown the server(s) [#1613](https://github.com/rerun-io/rerun/pull/1613) - Fix crash on serve exit, second attempt [#1633](https://github.com/rerun-io/rerun/pull/1633) - Fix wrong remove-tooltip for entities and groups [#1637](https://github.com/rerun-io/rerun/pull/1637) - Fix requiring focus for shutdown via ctrl+c when starting Viewer from command line [#1646](https://github.com/rerun-io/rerun/pull/1646) - Fix eye spin after eye reset [#1652](https://github.com/rerun-io/rerun/pull/1652) - Fix crash on negative radii by instead warning [#1654](https://github.com/rerun-io/rerun/pull/1654) - Fix crash when trying to listen on a taken TCP port [#1650](https://github.com/rerun-io/rerun/pull/1650) - Don't show 2D labels in 3D space views. [#1641](https://github.com/rerun-io/rerun/pull/1641) - Fix Z fighting with improved depth offset math [#1661](https://github.com/rerun-io/rerun/pull/1661) - Whether a spatial view is 2D or 3D is now reevaluated over time unless picked explicitly [#1660](https://github.com/rerun-io/rerun/pull/1660) - Update wgpu to v0.15.3, fixing meshes on Windows Chrome [#1682](https://github.com/rerun-io/rerun/pull/1682) - Fix a bug in the image hover code, causing the wrong RGBA values to be printed [#1690](https://github.com/rerun-io/rerun/pull/1690) - Fix a bug that caused points to be render too large [#1690](https://github.com/rerun-io/rerun/pull/1690) - Fix web crash on missing uniform buffer padding [#1699](https://github.com/rerun-io/rerun/pull/1699) - Fix `memory_usage` example relying on implicit recursive features [#1709](https://github.com/rerun-io/rerun/pull/1709) - Track changed state in nav mode combo box [#1703](https://github.com/rerun-io/rerun/pull/1703) - Fix crash-on-save by switching file-picker dialog to `xdg-portal` [#1402](https://github.com/rerun-io/rerun/pull/1402) - Change roll-shortcut from ALT to SHIFT [#1715](https://github.com/rerun-io/rerun/pull/1715) - Fix CpuWriteGpuReadBelt producing unaligned gpu buffer offsets [#1716](https://github.com/rerun-io/rerun/pull/1716) - Fix arrows requiring a radius to be visible [#1720](https://github.com/rerun-io/rerun/pull/1720) #### ๐Ÿš€ Performance improvements - Add re_arrow_store profile scopes [#1546](https://github.com/rerun-io/rerun/pull/1546) - datastore: early exit missing components at table level [#1554](https://github.com/rerun-io/rerun/pull/1554) - datastore: track bucket count in store stats & mem panel [#1555](https://github.com/rerun-io/rerun/pull/1555) - LogDb: don't split on index bucket size [#1558](https://github.com/rerun-io/rerun/pull/1558) - Introduce a simpler cache dedicated to just decode JPEGs [#1550](https://github.com/rerun-io/rerun/pull/1550) - Implement outlines for points 2D/3D/depth & use them for select & hover in Viewer [#1568](https://github.com/rerun-io/rerun/pull/1568) - Simplify ImageCache [#1551](https://github.com/rerun-io/rerun/pull/1551) - New time panel density graph [#1557](https://github.com/rerun-io/rerun/pull/1557) - Refactor the Arrow Mesh3D type to use zero-copy Buffers [#1691](https://github.com/rerun-io/rerun/pull/1691) - Remove the redundant costly transform check during categorization [#1695](https://github.com/rerun-io/rerun/pull/1695) - batching 3: `DataRow` & `DataTable` + no bundles outside of transport [#1673](https://github.com/rerun-io/rerun/pull/1673) #### ๐Ÿง‘โ€๐Ÿซ Examples - Very simple example streaming from an opencv camera [#1502](https://github.com/rerun-io/rerun/pull/1502) - Initial TurtleBot subscriber demo [#1523](https://github.com/rerun-io/rerun/pull/1523) #### ๐Ÿ“š Docs - Link to the Python SDK build instructions in `rerun_py/README.md` [#1565](https://github.com/rerun-io/rerun/pull/1565) #### ๐Ÿ–ผ UI improvements - Fix combining outline mask for selection & hover [#1552](https://github.com/rerun-io/rerun/pull/1552) - Implement outlines for rectangles & use them for select & hover of image primitives in Viewer [#1559](https://github.com/rerun-io/rerun/pull/1559) - Show log messages in egui toast notifications [#1603](https://github.com/rerun-io/rerun/pull/1603) - Adapt UI for smaller screens [#1608](https://github.com/rerun-io/rerun/pull/1608) - Nicer toast notifications [#1621](https://github.com/rerun-io/rerun/pull/1621) - Don't hover things in 2D/3D views if we are dragging something [#1643](https://github.com/rerun-io/rerun/pull/1643) - Allow rolling 3D camera with primary mouse button + alt modifier [#1659](https://github.com/rerun-io/rerun/pull/1659) - Name space views after the space and indicate duplicate names [#1653](https://github.com/rerun-io/rerun/pull/1653) - Add banner about mobile browsers being unsupported [#1674](https://github.com/rerun-io/rerun/pull/1674) - Improve UI for tensors and color map selection [#1683](https://github.com/rerun-io/rerun/pull/1683) - Only show the mobile OS warning banner on web [#1685](https://github.com/rerun-io/rerun/pull/1685) - Improve the depth backprojection feature [#1690](https://github.com/rerun-io/rerun/pull/1690) - Swap overlay order of selection & hover outlines [#1705](https://github.com/rerun-io/rerun/pull/1705) - Turn on depth cloud backprojection by default [#1710](https://github.com/rerun-io/rerun/pull/1710) - Add radius boost for depth clouds on outline [#1713](https://github.com/rerun-io/rerun/pull/1713) #### ๐Ÿคท Other Viewer improvements - Fix web feature name in error messages [#1521](https://github.com/rerun-io/rerun/pull/1521) - Use outlines for mesh selections instead of highlight colors [#1540](https://github.com/rerun-io/rerun/pull/1540) - Implement outlines for line renderer & use them for select & hover of "line-like" primitives in Viewer [#1553](https://github.com/rerun-io/rerun/pull/1553) - Load .rrd file over HTTP [#1600](https://github.com/rerun-io/rerun/pull/1600) - Revert "Handle ctrl+c to gracefully shutdown the server(s)" [#1632](https://github.com/rerun-io/rerun/pull/1632) - More eager GC, and remove `--fast-math` optimization for Wasm [#1656](https://github.com/rerun-io/rerun/pull/1656) - Detect failure to install GUI log callback [#1655](https://github.com/rerun-io/rerun/pull/1655) - Warn when most of the RAM has been used up by Rerun [#1651](https://github.com/rerun-io/rerun/pull/1651) - Apply color maps to all types of depth tensors [#1686](https://github.com/rerun-io/rerun/pull/1686) - Size boosted outlines for points & lines, color & size tweaking [#1667](https://github.com/rerun-io/rerun/pull/1667) - Default point radius to 1.5 UI points [#1706](https://github.com/rerun-io/rerun/pull/1706) - When streaming an rrd from http: play it, don't follow it [#1707](https://github.com/rerun-io/rerun/pull/1707) #### ๐Ÿ•ธ๏ธ Web - Use `log` as our log backend instead of `tracing` [#1590](https://github.com/rerun-io/rerun/pull/1590) - Turn on allocation tracker at run-time and for web [#1591](https://github.com/rerun-io/rerun/pull/1591) - Set correct MIME types in re_web_viewer_server [#1602](https://github.com/rerun-io/rerun/pull/1602) - Upload web viewer to a bucket [#1606](https://github.com/rerun-io/rerun/pull/1606) - Use hostname for default websocket address [#1664](https://github.com/rerun-io/rerun/pull/1664) - Upload the colmap rrd file to gcloud [#1666](https://github.com/rerun-io/rerun/pull/1666) - Show a warning by default on mobile browsers [#1670](https://github.com/rerun-io/rerun/pull/1670) - Add analytics to the hosted index.html [#1675](https://github.com/rerun-io/rerun/pull/1675) - Always upload latest prerelease to a dedicated prefix [#1676](https://github.com/rerun-io/rerun/pull/1676) - Allow url param override on app.rerun.io [#1678](https://github.com/rerun-io/rerun/pull/1678) - Show the git commit in the about section in pre-release builds [#1677](https://github.com/rerun-io/rerun/pull/1677) - Update the web icon [#1688](https://github.com/rerun-io/rerun/pull/1688) #### ๐ŸŽจ Renderer improvements - Outlines via masking & postprocessing in `re_renderer` [#1532](https://github.com/rerun-io/rerun/pull/1532) - Add missing profiling scopes in `re_renderer` [#1567](https://github.com/rerun-io/rerun/pull/1567) - Don't call `wgpu::Device::poll` on the web [#1626](https://github.com/rerun-io/rerun/pull/1626) - Merge final outline render into composite step in order to fix blending [#1629](https://github.com/rerun-io/rerun/pull/1629) - renderer: fix the groupby logic in mesh instancing [#1657](https://github.com/rerun-io/rerun/pull/1657) - Fix outlines being offset diagonally by about half a pixel [#1668](https://github.com/rerun-io/rerun/pull/1668) - Gpu readback belt for fast & easy data readback from gpu [#1687](https://github.com/rerun-io/rerun/pull/1687) - Make CpuWriteGpuReadBelt texture copies easier/less error prone [#1689](https://github.com/rerun-io/rerun/pull/1689) #### โœจ Other enhancement - datastore: split out formatting & sanity checks in their own modules [#1625](https://github.com/rerun-io/rerun/pull/1625) - Add `rerun --save`: stream incoming log stream to an rrd file [#1662](https://github.com/rerun-io/rerun/pull/1662) - batching 1: introduce `DataCell` & retire `ComponentBundle` [#1634](https://github.com/rerun-io/rerun/pull/1634) - Data store batching 2: split out component traits [#1636](https://github.com/rerun-io/rerun/pull/1636) #### ๐Ÿ“ˆ Analytics - Analytics: don't spam warning when there is an HTTP connection problem [#1564](https://github.com/rerun-io/rerun/pull/1564) - Analytics: Rename "location" to "file_line" in the "crash-panic" event [#1575](https://github.com/rerun-io/rerun/pull/1575) #### ๐Ÿ—ฃ Merged RFCs - RFC: component-datatype conversions [#1595](https://github.com/rerun-io/rerun/pull/1595) - RFC: pre-proposal for blueprint store [#1582](https://github.com/rerun-io/rerun/pull/1582) #### ๐Ÿง‘โ€๐Ÿ’ป Dev-experience - Update `rayon` [#1541](https://github.com/rerun-io/rerun/pull/1541) - Fix some `1.68` clippy lints [#1569](https://github.com/rerun-io/rerun/pull/1569) - Remove duplicated 'nix' crate [#1479](https://github.com/rerun-io/rerun/pull/1479) - Better MsgId format [#1566](https://github.com/rerun-io/rerun/pull/1566) - Lint vertical spacing in Rust code [#1572](https://github.com/rerun-io/rerun/pull/1572) - CI: Replace wasm_bindgen_check.sh with actually building the web-viewer [#1604](https://github.com/rerun-io/rerun/pull/1604) - Add --all-features to Rust Analyzer flags [#1624](https://github.com/rerun-io/rerun/pull/1624) - Run clippy for Wasm, with own clippy.toml config file [#1628](https://github.com/rerun-io/rerun/pull/1628) - Update tokio v1.24.1 -> v1.26.0 [#1635](https://github.com/rerun-io/rerun/pull/1635) - Add a workflow input for running benchmarks manually [#1698](https://github.com/rerun-io/rerun/pull/1698) - Add missing } to fix Rust workflow [#1700](https://github.com/rerun-io/rerun/pull/1700) - Fix `lint.py` [#1719](https://github.com/rerun-io/rerun/pull/1719) - Add a script that generates a changelog from recent PRs and their labels [#1718](https://github.com/rerun-io/rerun/pull/1718) #### ๐Ÿคท Other #### ๐Ÿคท Other - Clean up opencv_canny example slightly [b487e550dcb87225858dc6f76b791a25e938e75e](https://github.com/rerun-io/rerun/commit/b487e550dcb87225858dc6f76b791a25e938e75e) - Lint fixes [9901e7c6735356b1970ddabc926bc5378d82e057](https://github.com/rerun-io/rerun/commit/9901e7c6735356b1970ddabc926bc5378d82e057) ## [0.3.1](https://github.com/rerun-io/rerun/compare/v0.3.0...v0.3.1) - Remove potentially sensitive analytics - 2023-03-13 Remove potentially sensitive analytics, including path to Rerun source code on panics, and Rerun branch name when building from source [#1563](https://github.com/rerun-io/rerun/pull/1563) ## [0.3.0](https://github.com/rerun-io/rerun/compare/v0.2.0...v0.3.0) - 2023-03-07 ### โœจ Overview & highlights After a successful launch a couple of weeks ago, we're back with our second release! With a few exceptions this release focuses on internal refactors & improving our processes. However, we think you'll enjoy these goodies that made it in nonetheless! https://user-images.githubusercontent.com/2910679/222510504-23871b8c-0bef-49c2-bbd2-37baab4247e8.mp4 You can now generate point clouds directly from depth textures and choose a wide variety of color maps. Check out this [video](https://user-images.githubusercontent.com/1220815/223365363-da13585f-3a91-4cb8-a6ef-8a6fadbeb4eb.webm) on how to use it. This is **a lot** faster and more convenient than doing so manually in your own code Some caveats: Picking is not yet working and visible history may behave differently (related to [#723](https://github.com/rerun-io/rerun/issues/723)) Other highlights: * Viewer * Improved formatting of date-times in plots [#1356](https://github.com/rerun-io/rerun/pull/1356) * Labels for 3D objects have now a color can now be selected & hovered [#1438](https://github.com/rerun-io/rerun/pull/1438) * Scale factor is saved across sessions and more persistent between screens [#1448](https://github.com/rerun-io/rerun/pull/1448) * Showing tensors in the Viewer is now faster * SDK * Python packages now work with Ubuntu-20.04 [#1334](https://github.com/rerun-io/rerun/pull/1334) * u8 segmentation stay u8 now (they converted to u16 before) [#1376](https://github.com/rerun-io/rerun/pull/1376) * 2D Line strips can now be logged directly [#1430](https://github.com/rerun-io/rerun/pull/1430) * Add a `strict` mode to the Python SDK where misuses of the API result in exceptions being raised.[#1477](https://github.com/rerun-io/rerun/pull/1477) * Fix disabling Python API through `init` not working [#1517](https://github.com/rerun-io/rerun/pull/1517) * General * We build now with fewer build dependencies (there is however [still more work to do!](https://github.com/rerun-io/rerun/issues/1316)). Notably, we previously used a version of the `time` crate which had a security issue (CVE-2020-26235), thanks @mpizenberg for helping out! * Print more information & troubleshooting info on crash Meanwhile, we did a bunch of improvements to our manual. If you had trouble running Rerun so far, check our updated [troubleshooting](https://rerun.io/docs/overview/installing-rerun/troubleshooting) page (and as always, please [open an issue](https://github.com/rerun-io/rerun/issues/new/choose) if something doesn't work). โš ๏ธ BREAKING: old `.rrd` files no longer load โš ๏ธ ### ๐Ÿ”Ž Details #### New features * Generate point clouds directly from depth textures * re_renderer: implement depth cloud renderer [#1415](https://github.com/rerun-io/rerun/pull/1415) * Integrate depth clouds into Rerun [#1421](https://github.com/rerun-io/rerun/pull/1421) * CPU & GPU color maps [#1484](https://github.com/rerun-io/rerun/pull/1484) * Integrate GPU color maps into depth clouds [#1486](https://github.com/rerun-io/rerun/pull/1486) * Python SDK: Add strict mode [#1477](https://github.com/rerun-io/rerun/pull/1477) * OS independent Zoom factor & serialization thereof [#1448](https://github.com/rerun-io/rerun/pull/1448) * Labels for 3D objects have now a color can now be selected & hovered [#1438](https://github.com/rerun-io/rerun/pull/1438) * Add 2D support for linestrips [#1430](https://github.com/rerun-io/rerun/pull/1430) * Add signal handler on *nix with troubleshooting and stacktrace [#1340](https://github.com/rerun-io/rerun/pull/1340) * Point users to our troubleshooting page on panic [#1338](https://github.com/rerun-io/rerun/pull/1338) #### Performance * Speed up conversions for color arrays in Python [#1454](https://github.com/rerun-io/rerun/pull/1454) * Speed up fixed-sized array iteration [#1050](https://github.com/rerun-io/rerun/pull/1050) * Speed up tensor handling by padding data through more directly * Direct conversion to dynamic image from Tensors [#1455](https://github.com/rerun-io/rerun/pull/1455) * Convert view_tensor to use the new native Tensors [#1439](https://github.com/rerun-io/rerun/pull/1439) * Add option to show performance metrics in the UI in release builds too [#1444](https://github.com/rerun-io/rerun/pull/1444) * Faster stable diffusion sample [#1364](https://github.com/rerun-io/rerun/pull/1364) * SDK: stream to disk with `save` feature [#1405](https://github.com/rerun-io/rerun/pull/1405) * `re_renderer` has now a direct CPU->GPU copy mechanism * `CpuWriteGpuReadBelt` for fast frame by frame memory transfers [#1382](https://github.com/rerun-io/rerun/pull/1382) * Uniform buffer utility using `CpuWriteGpuReadBelt` [#1400](https://github.com/rerun-io/rerun/pull/1400) * Use `CpuWriteGpuReadBelt` for mesh data gpu upload [#1416](https://github.com/rerun-io/rerun/pull/1416) #### Small improvements & bugfixes * UI * Add scroll-bars the "Add/Remove entities" window [#1445](https://github.com/rerun-io/rerun/pull/1445) * Unify the time formatting between the time panel and the plot [#1369](https://github.com/rerun-io/rerun/pull/1369) * Timeline * Fix precision issue when zooming in on the timeline [#1370](https://github.com/rerun-io/rerun/pull/1370) * Improve the gap-detector [#1363](https://github.com/rerun-io/rerun/pull/1363) * Better time axis on plot view [#1356](https://github.com/rerun-io/rerun/pull/1356) * Prevent wrap on 'Streams' text [#1308](https://github.com/rerun-io/rerun/pull/1308) * Update to eframe 0.21.3 with fix for web text input [#1311](https://github.com/rerun-io/rerun/pull/1311) * `re_renderer` * Fix crash due to always expecting Rgba8Unorm backbuffer on Web & Bgra8Unorm on native [#1413](https://github.com/rerun-io/rerun/pull/1413) * Allow controlling the graphics backend & power preference through standard wgpu env vars [#1332](https://github.com/rerun-io/rerun/pull/1332) * Heuristic for camera frustum length is now based on scene size [#1433](https://github.com/rerun-io/rerun/pull/1433) * Fix Python type signature for tensor names [#1443](https://github.com/rerun-io/rerun/pull/1443) * Don't convert u8 segmentation images to u16 [#1376](https://github.com/rerun-io/rerun/pull/1376) * Docs (excluding the manual) * Improve the docs of `connect` and `serve` [#1450](https://github.com/rerun-io/rerun/pull/1450) * Update log_mesh and log_meshes docs. [#1286](https://github.com/rerun-io/rerun/pull/1286) * Add guidelines for adding dependencies in a PR [#1431](https://github.com/rerun-io/rerun/pull/1431) * Add a few more sections to `CODE_STYLE.md` [#1365](https://github.com/rerun-io/rerun/pull/1365) * Fixup for some doc links [#1314](https://github.com/rerun-io/rerun/pull/1314) * Document undocumented environment variables on help page. [#1335](https://github.com/rerun-io/rerun/pull/1335) * Link to SDK operating modes doc in both SDK [#1330](https://github.com/rerun-io/rerun/pull/1330) * More information in `--version` [#1388](https://github.com/rerun-io/rerun/pull/1388) * Remove already broken `show` method from Python SDK [#1429](https://github.com/rerun-io/rerun/pull/1429) * Analytics * Send analytics events with callstacks on panics and signals [#1409](https://github.com/rerun-io/rerun/pull/1409) * Put all analytics to one bucket [#1390](https://github.com/rerun-io/rerun/pull/1390) * add event for when we serve the web-viewer .wasm [#1379](https://github.com/rerun-io/rerun/pull/1379) * register SDK language and data source [#1371](https://github.com/rerun-io/rerun/pull/1371) * Refactor analytics [#1368](https://github.com/rerun-io/rerun/pull/1368) * Versioned log streams [#1420](https://github.com/rerun-io/rerun/pull/1420) * Fix path issues when running debug Viewer within workspace [#1341](https://github.com/rerun-io/rerun/pull/1341) * Detailed errors for re_renderer `include_file!` [#1339](https://github.com/rerun-io/rerun/pull/1339) * Limit logging in web-viewer to `warn` in order to workaround a crash issue (and reduce log spam) [1514](https://github.com/rerun-io/rerun/pull/1514) * Fix disabling API through `init` not working [#1517](https://github.com/rerun-io/rerun/pull/1517) #### CI, testing & build improvements * Reduce build dependencies * Get rid of time 0.1.* dependency [#1408](https://github.com/rerun-io/rerun/pull/1408) * Remove unnecessary ordered-float [#1461](https://github.com/rerun-io/rerun/pull/1461) * Remove extraneous `image` features and dependencies [#1425](https://github.com/rerun-io/rerun/pull/1425) * Replace `reqwest` with `ureq` [#1407](https://github.com/rerun-io/rerun/pull/1407) * Remove derive_more dependency [#1406](https://github.com/rerun-io/rerun/pull/1406) * Use different artifact names for wasm/js in debug builds [#1428](https://github.com/rerun-io/rerun/pull/1428) * Separate Mac wheels & trigger wheel build from UI [#1499](https://github.com/rerun-io/rerun/pull/1499) * Add spell checking to CI [#1492](https://github.com/rerun-io/rerun/pull/1492) * Repo size * Always create new orphaned branch for gh-pages [#1490](https://github.com/rerun-io/rerun/pull/1490) * GitHub Action to prevent large files [#1478](https://github.com/rerun-io/rerun/pull/1478) * Python * Remove the Python job path filters [#1452](https://github.com/rerun-io/rerun/pull/1452) * Use ruff for our Python lints [#1378](https://github.com/rerun-io/rerun/pull/1378) * Use python3 in the jobs that weren't tested in PR [#1348](https://github.com/rerun-io/rerun/pull/1348) * Testing * Add a test of memory use when logging a lot of big images [#1372](https://github.com/rerun-io/rerun/pull/1372) * Switch ci_docker to a container based on ubuntu 20.04 [#1334](https://github.com/rerun-io/rerun/pull/1334) * Release handling * Switch release action to ncipollo [#1489](https://github.com/rerun-io/rerun/pull/1489) * Fix our continuous pre-releases [#1458](https://github.com/rerun-io/rerun/pull/1458) * Delete the prerelease before creating the new one [#1485](https://github.com/rerun-io/rerun/pull/1485) * Set prerelease to true even for version-tagged CI job [#1504](https://github.com/rerun-io/rerun/pull/1504) * Let the release job take care of creating the tag [#1501](https://github.com/rerun-io/rerun/pull/1501) * Use `cargo update -w` instead of `cargo check` when prepping prerelease [#1500](https://github.com/rerun-io/rerun/pull/1500) * Use prerelease tag instead of latest and update pointer on prerelease [#1481](https://github.com/rerun-io/rerun/pull/1481) * Include date in pre-release version [#1472](https://github.com/rerun-io/rerun/pull/1472) * Switch pre-release action to ncipollo/release-action [#1466](https://github.com/rerun-io/rerun/pull/1466) * Disallow some methods and types via Clippy[#1411](https://github.com/rerun-io/rerun/pull/1411) #### Other non-user-facing refactors * Fix: don't create a dummy LogDb when opening the Rerun Menu [#1440](https://github.com/rerun-io/rerun/pull/1440) * `re_renderer` * `Draw Phases` in preparation of executing `Renderer` several times on different targets [#1419](https://github.com/rerun-io/rerun/pull/1419) * Fix mesh creation failing to copy index data. [#1473](https://github.com/rerun-io/rerun/pull/1473) * do not silently drop draw phases [#1471](https://github.com/rerun-io/rerun/pull/1471) * Simplify bind group allocation call by passing pool collection object. [#1459](https://github.com/rerun-io/rerun/pull/1459) * Interior mutable buffer/texture/bindgroup pools [#1374](https://github.com/rerun-io/rerun/pull/1374) * Rename all instances of `frame_maintenance` to `begin_frame` [#1360](https://github.com/rerun-io/rerun/pull/1360) * Texture & buffer call now wgpu's `destroy` on removal from pool [#1359](https://github.com/rerun-io/rerun/pull/1359) * Arrow buffers as (optional) first-class citizen [#1482](https://github.com/rerun-io/rerun/pull/1482) * Log static re_renderer resource generation [#1464](https://github.com/rerun-io/rerun/pull/1464) * Internal log_text_entry_internal to break circular deps [#1488](https://github.com/rerun-io/rerun/pull/1488) * Delete ClassicTensor and cleanup [#1456](https://github.com/rerun-io/rerun/pull/1456) * Fix re_renderer file watcher watching the same file several times [#1463](https://github.com/rerun-io/rerun/pull/1463) * Analytics * More ergonomic API [#1410](https://github.com/rerun-io/rerun/pull/1410) * Streamlining host vs. recorder python/rust versions [#1380](https://github.com/rerun-io/rerun/pull/1380) * Fix workspace detection [#1437](https://github.com/rerun-io/rerun/pull/1437) * Introduce `DeserializableComponent` trait and high-level `query_latest` [#1417](https://github.com/rerun-io/rerun/pull/1417) [Full Changelog](https://github.com/rerun-io/rerun/compare/v0.2.0...v0.3.0) ## 0.2.0 - 2023-02-14 First public release!