You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/reference/migration/migration-0-13.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Migrating from 0.12 to 0.13
3
-
order: 130
3
+
order: 996
4
4
---
5
5
6
6
## `TimeSeriesScalar` deprecated in favor of [Scalar](../types/archetypes/scalar.md) & [SeriesLine](../types/archetypes/series_line.md)/[SeriesPoint](../types/archetypes/series_point.md)
*`connect()` is now deprecated in favor `connect_tcp()`
14
+
*`serve()` is now deprecated in favor `serve_web()`
15
+
16
+
The rationale behind this change is that it was common for users (see https://github.com/rerun-io/rerun/issues/7766).
17
+
18
+
We frequently had reports from users that were understandably expecting a serving process (`rr.serve()`) to be ready to accept connections from other processes (`rr.connect()`), when in reality the two things are completely unrelated: one is hosting a websocket server to be polled by the web-viewer, while the other is trying to connect to the TCP SDK comms pipeline.
19
+
20
+
You can learn more about Rerun's application model and the different servers and ports by reading our [new documentation page on the matter](../../concepts/app-model.md).
0 commit comments