Skip to content

Commit

Permalink
Add breaking changes to the top of changelog and migration guides (#6840
Browse files Browse the repository at this point in the history
)

### What
This confused more than one user, and understandably so.

I also added it to the release notes at
https://github.com/rerun-io/rerun/releases/tag/0.17.0

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)
* [x] I've included a screenshot or gif (if applicable)
* [x] I have tested the web demo (if applicable):
* Using examples from latest `main` build:
[rerun.io/viewer](https://rerun.io/viewer/pr/6840?manifest_url=https://app.rerun.io/version/main/examples_manifest.json)
* Using full set of examples from `nightly` build:
[rerun.io/viewer](https://rerun.io/viewer/pr/6840?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json)
* [x] The PR title and labels are set such as to maximize their
usefulness for the next release's CHANGELOG
* [x] If applicable, add a new check to the [release
checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)!

- [PR Build Summary](https://build.rerun.io/pr/6840)
- [Recent benchmark results](https://build.rerun.io/graphs/crates.html)
- [Wasm size tracking](https://build.rerun.io/graphs/sizes.html)

To run all checks from `main`, comment on the PR with `@rerun-bot
full-check`.
  • Loading branch information
emilk authored Jul 10, 2024
1 parent 9ac0b75 commit 7f5876b
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 33 deletions.
61 changes: 33 additions & 28 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## [Unreleased](https://github.com/rerun-io/rerun/compare/latest...HEAD)


## [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
Expand Down Expand Up @@ -36,6 +37,12 @@ https://github.com/rerun-io/rerun/assets/49431240/1c75b816-7e3e-4882-9ee6-ba124c
* 🚚 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: http://rerun.io/docs/reference/migration/migration-0-17

### 🔎 Details

Expand Down Expand Up @@ -77,7 +84,7 @@ https://github.com/rerun-io/rerun/assets/49431240/1c75b816-7e3e-4882-9ee6-ba124c
- 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
#### 🪳 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)
Expand All @@ -87,7 +94,7 @@ https://github.com/rerun-io/rerun/assets/49431240/1c75b816-7e3e-4882-9ee6-ba124c
- 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
#### 🌁 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)
Expand Down Expand Up @@ -116,7 +123,7 @@ https://github.com/rerun-io/rerun/assets/49431240/1c75b816-7e3e-4882-9ee6-ba124c
- 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
#### 🖼 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)
Expand Down Expand Up @@ -243,7 +250,7 @@ As always there's a lot going on under the hood:
- 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
#### 🪳 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)
Expand All @@ -252,7 +259,7 @@ As always there's a lot going on under the hood:
- 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
#### 🌁 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)
Expand All @@ -261,7 +268,7 @@ As always there's a lot going on under the hood:
- 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
#### 🚀 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)
Expand All @@ -284,7 +291,7 @@ As always there's a lot going on under the hood:
- 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
#### 🖼 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)
Expand Down Expand Up @@ -432,7 +439,7 @@ Blueprints are currently only supported in the Python API, with C++ and Rust sup

#### 🦀 Rust API

#### 🪳 Bug Fixes
#### 🪳 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)
Expand All @@ -446,7 +453,7 @@ Blueprints are currently only supported in the Python API, with C++ and Rust sup
- 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
#### 🌁 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)
Expand Down Expand Up @@ -488,7 +495,7 @@ Blueprints are currently only supported in the Python API, with C++ and Rust sup
- 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
#### 🖼 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)
Expand Down Expand Up @@ -1506,7 +1513,7 @@ for use-cases like real-time video feeds. [#2220](https://github.com/rerun-io/re
![Open Photogrammetry Preview](https://static.rerun.io/9fa26e73a197690e0403cd35f29e31c2941dea36_release_080_photogrammetry_full.png)
### Ongoing Refactors
### 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.
Expand All @@ -1517,11 +1524,11 @@ for use-cases like real-time video feeds. [#2220](https://github.com/rerun-io/re
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
### 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)
### In Detail
### 🔎 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)
Expand Down Expand Up @@ -1652,14 +1659,14 @@ for use-cases like real-time video feeds. [#2220](https://github.com/rerun-io/re
- 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
#### 📘 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
#### 🏭 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)
Expand Down Expand Up @@ -1735,7 +1742,7 @@ here's a smaller release packed with useful improvements 🎉
* Better color mapping range detection for images and tensors
* Many small improvements to samples & documentation
### In detail
### 🔎 Details
#### 🐍 Python SDK
- Improved 3D transform ingestion & affine transform support [#2102](https://github.com/rerun-io/rerun/pull/2102)
Expand Down Expand Up @@ -1825,7 +1832,7 @@ here's a smaller release packed with useful improvements 🎉
- 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
### In Detail
### 🔎 Details
#### 🐍 Python SDK
- ⚠️ BREAKING: You must now call `rr.init` if you want logging to work.
Expand Down Expand Up @@ -1945,7 +1952,7 @@ here's a smaller release packed with useful improvements 🎉
- 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
#### ✨ 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)
Expand Down Expand Up @@ -2017,7 +2024,7 @@ here's a smaller release packed with useful improvements 🎉
### ✨ Overview & highlights
This Release fixes a few small bugs on top of the v0.5.0 release.
### In Detail
### 🔎 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)
Expand Down Expand Up @@ -2047,7 +2054,7 @@ This new release adds MVP support for embedding Rerun in Jupyter notebooks, and
* 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
### In Detail
### 🔎 Details
#### 🐍 Python SDK
- Document that we also accept colors in 0-1 floats [#1740](https://github.com/rerun-io/rerun/pull/1740)
Expand Down Expand Up @@ -2125,7 +2132,6 @@ This new release adds MVP support for embedding Rerun in Jupyter notebooks, and
- 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
#### 🤷 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)
Expand Down Expand Up @@ -2215,7 +2221,7 @@ https://user-images.githubusercontent.com/1220815/228241887-03b311e2-80e9-4541-9
We now host an experimental and unpolished web-viewer at <https://app.rerun.io/> for anyone to try out!
### In Detail
### 🔎 Details
#### 🐍 Python SDK
- Expose all Rerun enums and types to main module scope [#1598](https://github.com/rerun-io/rerun/pull/1598)
Expand Down Expand Up @@ -2300,7 +2306,6 @@ We now host an experimental and unpolished web-viewer at <https://app.rerun.io/>
- 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
#### 🤷 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)
Expand Down Expand Up @@ -2339,7 +2344,7 @@ We now host an experimental and unpolished web-viewer at <https://app.rerun.io/>
- 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
#### ✨ 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)
Expand Down Expand Up @@ -2416,8 +2421,8 @@ Meanwhile, we did a bunch of improvements to our manual. If you had trouble runn
⚠️ BREAKING: old `.rrd` files no longer load ⚠️
### In Detail
#### New Features
### 🔎 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)
Expand All @@ -2444,7 +2449,7 @@ Meanwhile, we did a bunch of improvements to our manual. If you had trouble runn
* 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
#### 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)
Expand Down Expand Up @@ -2482,7 +2487,7 @@ Meanwhile, we did a bunch of improvements to our manual. If you had trouble runn
* 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
#### 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)
Expand Down
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ If we are doing a patch release, we do a branch off of the latest release tag (e
- A one-line summary of the release
- A multi-line summary of the release
- A gif showing a major new feature
- Run `pip install GitPython && scripts/generate_changelog.py`
- Run `pip install GitPython && scripts/generate_changelog.py > new_changelog.md`
- Edit PR descriptions/labels to improve the generated changelog
- Copy-paste the results into `CHANGELOG.md`.
- Editorialize the changelog if necessary
Expand Down
6 changes: 6 additions & 0 deletions docs/content/reference/migration/migration-0-17.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ order: 170
---


## ⚠️ 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


## New integrated visualizer and component override UI

The visualizer and component override UI of the timeseries views has been unified and overhauled. It is also now used for all view kinds (it was previously only available for timeseries views).
Expand Down
17 changes: 17 additions & 0 deletions scripts/generate_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,23 @@ def main() -> None:

print()

# NOTE: we inentionally add TODO:s with names below, which the CI will not be happy about. Hence the # NOLINT suffixes
print("TODO: add link to release video") # NOLINT
print()
print("📖 Release blogpost: TODO: add link") # NOLINT
print()
print("🧳 Migration guide: TODO: add link") # NOLINT
print()
print("### ✨ Overview & highlights")
print("TODO: fill in") # NOLINT
print()
print("### ⚠️ Breaking changes")
print("TODO: fill in") # NOLINT
print("🧳 Migration guide: TODO: add link (yes, again)") # NOLINT
print()
print("### 🔎 Details")
print()

# Most interesting first:
print_section("🪵 Log API", log_api)
print_section("🌊 C++ API", cpp)
Expand Down
Loading

0 comments on commit 7f5876b

Please sign in to comment.