Current section
43 Versions
Jump to
Current section
43 Versions
Compare versions
8
files changed
+60
additions
-34
deletions
| @@ -1,15 +1,19 @@ | |
| 1 1 | # CHANGELOG |
| 2 2 | |
| 3 | - ## v0.5.1 (2020-09-07) |
| 3 | + ## v0.5.2 (2021-09-21) |
| 4 | + |
| 5 | + * Fix Ecto stats page when running on multi node env |
| 6 | + |
| 7 | + ## v0.5.1 (2021-09-07) |
| 4 8 | |
| 5 9 | * Clarify "No Ecto Repos" messages |
| 6 10 | * Support strings on navbars titles |
| 7 11 | |
| 8 | - ## v0.5.0 (2020-08-10) |
| 12 | + ## v0.5.0 (2021-08-10) |
| 9 13 | |
| 10 14 | * Require LiveView v0.16.0 |
| 11 15 | * Fallback to longpoll when websockets are not available |
| 12 | - * Remove CPU cards as the result was often innacurate |
| 16 | + * Remove CPU cards as the result was often inaccurate |
| 13 17 | * Ignore `nil` measurements in telemetry panes |
| 14 18 | * Remember refresh selection by using cookies |
| 15 19 | * Show reductions diff in Processes table |
| @@ -73,10 +73,10 @@ | |
| 73 73 | {<<"name">>,<<"ecto_psql_extras">>}, |
| 74 74 | {<<"optional">>,true}, |
| 75 75 | {<<"repository">>,<<"hexpm">>}, |
| 76 | - {<<"requirement">>,<<"~> 0.6">>}], |
| 76 | + {<<"requirement">>,<<"~> 0.7">>}], |
| 77 77 | [{<<"app">>,<<"ecto">>}, |
| 78 78 | {<<"name">>,<<"ecto">>}, |
| 79 79 | {<<"optional">>,true}, |
| 80 80 | {<<"repository">>,<<"hexpm">>}, |
| 81 81 | {<<"requirement">>,<<"~> 3.6.2 or ~> 3.7">>}]]}. |
| 82 | - {<<"version">>,<<"0.5.1">>}. |
| 82 | + {<<"version">>,<<"0.5.2">>}. |
| @@ -28,7 +28,7 @@ defmodule Phoenix.LiveDashboard.ColumnsComponent do | |
| 28 28 | Map.put_new(params, :columns_class, div(12, columns_length)) |
| 29 29 | else |
| 30 30 | raise ArgumentError, |
| 31 | - ":components must have at least 1 compoment and at most 3 components, got: " <> |
| 31 | + ":components must have at least 1 component and at most 3 components, got: " <> |
| 32 32 | inspect(columns_length) |
| 33 33 | end |
| 34 34 | end |
| @@ -28,7 +28,7 @@ defmodule Phoenix.LiveDashboard.RowComponent do | |
| 28 28 | params |
| 29 29 | else |
| 30 30 | raise ArgumentError, |
| 31 | - ":components must have at least 1 compoment and at most 3 components, got: " <> |
| 31 | + ":components must have at least 1 component and at most 3 components, got: " <> |
| 32 32 | inspect(components_length) |
| 33 33 | end |
| 34 34 | end |
| @@ -352,7 +352,7 @@ defmodule Phoenix.LiveDashboard.PageBuilder do | |
| 352 352 | card( |
| 353 353 | title: "Run queues", |
| 354 354 | inner_title: "Total", |
| 355 | - class: "additional-class", |
| 355 | + class: ["additional-class"], |
| 356 356 | value: 1.5 |
| 357 357 | ) |
| 358 358 | end |
| @@ -399,7 +399,7 @@ defmodule Phoenix.LiveDashboard.PageBuilder do | |
| 399 399 | fields_card( |
| 400 400 | title: "Run queues", |
| 401 401 | inner_title: "Total", |
| 402 | - fields: ["USER": "...", "ROOTDIR: "..."] |
| 402 | + fields: ["USER": "...", "ROOTDIR": "..."] |
| 403 403 | ) |
| 404 404 | end |
Loading more files…