Skip to content

Update rerun requirement from 0.31 to 0.33#32

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rerun-0.33
Open

Update rerun requirement from 0.31 to 0.33#32
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/rerun-0.33

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 29, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on rerun to permit the latest version.

Release notes

Sourced from rerun's releases.

0.33.0

Rerun is an easy-to-use database and visualization toolbox for multimodal and temporal data. Try it live at https://rerun.io/viewer.


🧳 Migration guide: https://rerun.io/docs/reference/migration/migration-0-33

✨ Overview & highlights

After our large 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.

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:

</tr></table> 

... (truncated)

Changelog

Sourced from rerun's changelog.

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 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.

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=&quot;my blue 3D&quot;, background=[100, 149, 237])
rec.send_blueprint(view)
Screenshot only the view we created earlier.
viewer.save_screenshot(&quot;my_view.png&quot;, 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:

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).

... (truncated)

Commits
  • 86ac19f Use spawn start method in getting_started snippet
  • fcfee0b Bump versions to 0.33.0
  • d456147 fixup protobuf checks
  • de54f5b more uv lock updates
  • e806826 exclude .pixi folder for protobuf checks
  • 66f8a7c uv lock update
  • 840ff27 missing changelog entries
  • fcb5b13 rerun-sdk[datafusion] and rerun-sdk[dataplatform] extras are now rerun-sdk[ca...
  • b050087 Add headless viewer mode
  • 7aab2f8 Move state view cursor only by dragging
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [rerun](https://github.com/rerun-io/rerun) to permit the latest version.
- [Release notes](https://github.com/rerun-io/rerun/releases)
- [Changelog](https://github.com/rerun-io/rerun/blob/main/CHANGELOG.md)
- [Commits](rerun-io/rerun@0.31.0...0.33.0)

---
updated-dependencies:
- dependency-name: rerun
  dependency-version: 0.33.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels May 29, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants