Current section

43 Versions

Jump to

Compare versions

11 files changed
+25 additions
-15 deletions
  @@ -1,5 +1,11 @@
1 1 # CHANGELOG
2 2
3 + ## v0.8.4 (2024-06-21)
4 +
5 + * Add immutable directive to cache-control header
6 + * Wrap log lines in request logger page
7 + * Fix deprecation warnings on LiveView release candidate
8 +
3 9 ## v0.8.3 (2023-10-28)
4 10
5 11 * Address deprecation warnings from Phoenix.LiveView and Phoenix.HTML
  @@ -16,7 +16,7 @@ LiveDashboard provides real-time performance monitoring and debugging tools for
16 16
17 17 - Request logging - See everything that was logged for certain requests
18 18
19 - - Applications - See, filter, and search applications in the current node
19 + - Applications - See, filter, and search applications in the current node and view their processes in a supervision tree
20 20
21 21 - Processes - See, filter, and search processes in the current node
unknowndist/css/app.css
File is too large to be displayed (100 KB limit).
  @@ -2,7 +2,7 @@
2 2 [{<<"github">>,
3 3 <<"https://github.com/phoenixframework/phoenix_live_dashboard">>}]}.
4 4 {<<"name">>,<<"phoenix_live_dashboard">>}.
5 - {<<"version">>,<<"0.8.3">>}.
5 + {<<"version">>,<<"0.8.4-rc.0">>}.
6 6 {<<"description">>,<<"Real-time performance dashboard for Phoenix">>}.
7 7 {<<"elixir">>,<<"~> 1.12">>}.
8 8 {<<"app">>,<<"phoenix_live_dashboard">>}.
  @@ -63,7 +63,7 @@
63 63 [{<<"name">>,<<"phoenix_live_view">>},
64 64 {<<"app">>,<<"phoenix_live_view">>},
65 65 {<<"optional">>,false},
66 - {<<"requirement">>,<<"~> 0.19 or ~> 1.0">>},
66 + {<<"requirement">>,<<"~> 0.19 or ~> 1.0-rc">>},
67 67 {<<"repository">>,<<"hexpm">>}],
68 68 [{<<"name">>,<<"telemetry_metrics">>},
69 69 {<<"app">>,<<"telemetry_metrics">>},
  @@ -34,7 +34,7 @@ defmodule Phoenix.LiveDashboard.Assets do
34 34
35 35 conn
36 36 |> put_resp_header("content-type", content_type)
37 - |> put_resp_header("cache-control", "public, max-age=31536000")
37 + |> put_resp_header("cache-control", "public, max-age=31536000, immutable")
38 38 |> put_private(:plug_skip_csrf_protection, true)
39 39 |> send_resp(200, contents)
40 40 |> halt()
Loading more files…