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: landing/src/components/WhatsNewSection.astro
+18-10Lines changed: 18 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -6,21 +6,27 @@ import { SquareCheckBig } from "lucide-react";
6
6
7
7
const newsBlocks = [
8
8
{
9
-
title: "Better LiveView successor discovery",
9
+
title: "Improved asssigns inspections and tracking",
10
10
description:
11
-
"Improved tracking of LiveView processes when they’re replaced due to actions like page reloads or errors, ensuring smoother debugging transitions.",
11
+
"The Assigns inspector is now faster, smoother, and lets you browse the full history of each assign, see exactly how values changed over time, pin important assigns to keep them always visible & inspect state size measurements to catch heavy structures early.",
12
12
icon: SquareCheckBig,
13
13
},
14
14
{
15
-
title: "Inspecting HTML elements",
15
+
title: "LiveView Resource Usage Page",
16
16
description:
17
-
"Users can right-click on an HTML element and select “Inspect LiveElement” to identify which LiveView or LiveComponent is responsible for rendering it.",
17
+
"We added an entirely new page that shows resource consumption of your LiveView processes. This is a simple way to keep track of how your LiveViews behave behind the scenes.",
18
18
icon: SquareCheckBig,
19
19
},
20
20
{
21
-
title: "Search in callback traces",
21
+
title: "Async loading & Stream debugging",
22
22
description:
23
-
"Adds a search option that lets users find specific text or phrases within callback traces, making it easier to navigate and analyze complex data flows.",
23
+
"v0.5.0 brings support for even more LiveView features, like async assigns and stream operations. This gives you deeper insight into LiveView internals than ever before.",
24
+
icon: SquareCheckBig,
25
+
},
26
+
{
27
+
title: "Dead LiveViews",
28
+
description:
29
+
"LiveDebugger can now show recently crashed LiveViews, making debugging those tricky failure cases a whole lot easier.",
0 commit comments