Current section

43 Versions

Jump to

Compare versions

29 files changed
+444 additions
-365 deletions
  @@ -1,5 +1,13 @@
1 1 # CHANGELOG
2 2
3 + ## v0.2.9 (2020-09-28)
4 +
5 + * Update `phoenix_live_view` to 0.14.7
6 + * Make the default sorting order configurable in table component
7 + * Fix an issue with JS failures on color charts with legends
8 + * Fix an issue with refresh configuration not being set and update default to be 15 seconds
9 + * Move "Update every" prompt to the top, change tabs to pills to better handle multiple lines
10 +
3 11 ## v0.2.8 (2020-09-15)
4 12
5 13 * Support `csp_nonce_assign_key` to better handle CSP policies
  @@ -132,6 +132,14 @@ For those planning to contribute to this project, you can run a dev version of t
132 132
133 133 Alternatively, run `iex -S mix dev` if you also want a shell.
134 134
135 + Assets are minimized by default. If you'd like to skip assets optimization and run webpack in development mode you can do it using the `NODE_ENV` enviroment variable:
136 +
137 + $ NODE_ENV=development mix dev
138 +
139 + or
140 +
141 + $ NODE_ENV=development iex -S mix dev
142 +
135 143 ## License
136 144
137 145 MIT License. Copyright (c) 2019 Michael Crumm, Chris McCord, José Valim.
  @@ -3,7 +3,7 @@
3 3 {<<"description">>,<<"Real-time performance dashboard for Phoenix">>}.
4 4 {<<"elixir">>,<<"~> 1.7">>}.
5 5 {<<"files">>,
6 - [<<"lib">>,<<"lib/.DS_Store">>,<<"lib/phoenix">>,<<"lib/phoenix/.DS_Store">>,
6 + [<<"lib">>,<<"lib/.DS_Store">>,<<"lib/phoenix">>,
7 7 <<"lib/phoenix/live_dashboard">>,
8 8 <<"lib/phoenix/live_dashboard/page_live.ex">>,
9 9 <<"lib/phoenix/live_dashboard/layout_view.ex">>,
  @@ -14,19 +14,19 @@
14 14 <<"lib/phoenix/live_dashboard/request_logger.ex">>,
15 15 <<"lib/phoenix/live_dashboard/router.ex">>,
16 16 <<"lib/phoenix/live_dashboard/info">>,
17 + <<"lib/phoenix/live_dashboard/info/modal_component.ex">>,
17 18 <<"lib/phoenix/live_dashboard/info/app_info_component.ex">>,
18 19 <<"lib/phoenix/live_dashboard/info/process_info_component.ex">>,
19 20 <<"lib/phoenix/live_dashboard/info/socket_info_component.ex">>,
20 21 <<"lib/phoenix/live_dashboard/info/port_info_component.ex">>,
21 22 <<"lib/phoenix/live_dashboard/info/ets_info_component.ex">>,
22 23 <<"lib/phoenix/live_dashboard/components">>,
23 - <<"lib/phoenix/live_dashboard/components/modal_component.ex">>,
24 - <<"lib/phoenix/live_dashboard/components/menu_component.ex">>,
25 24 <<"lib/phoenix/live_dashboard/components/table_component.ex">>,
26 25 <<"lib/phoenix/live_dashboard/components/title_bar_component.ex">>,
26 + <<"lib/phoenix/live_dashboard/components/.DS_Store">>,
27 27 <<"lib/phoenix/live_dashboard/components/color_bar_component.ex">>,
28 28 <<"lib/phoenix/live_dashboard/components/card_usage_component.ex">>,
29 - <<"lib/phoenix/live_dashboard/components/tab_bar_component.ex">>,
29 + <<"lib/phoenix/live_dashboard/components/nav_bar_component.ex">>,
30 30 <<"lib/phoenix/live_dashboard/components/color_bar_legend_component.ex">>,
31 31 <<"lib/phoenix/live_dashboard/components/chart_component.ex">>,
32 32 <<"lib/phoenix/live_dashboard/reingold_tifford.ex">>,
  @@ -39,7 +39,6 @@
39 39 <<"lib/phoenix/live_dashboard/telemetry_listener.ex">>,
40 40 <<"lib/phoenix/live_dashboard/pages">>,
41 41 <<"lib/phoenix/live_dashboard/pages/metrics_page.ex">>,
42 - <<"lib/phoenix/live_dashboard/pages/.DS_Store">>,
43 42 <<"lib/phoenix/live_dashboard/pages/ets_page.ex">>,
44 43 <<"lib/phoenix/live_dashboard/pages/request_logger_page.ex">>,
45 44 <<"lib/phoenix/live_dashboard/pages/processes_page.ex">>,
  @@ -73,4 +72,4 @@
73 72 {<<"optional">>,false},
74 73 {<<"repository">>,<<"hexpm">>},
75 74 {<<"requirement">>,<<"~> 2.14.1 or ~> 2.15">>}]]}.
76 - {<<"version">>,<<"0.2.8">>}.
75 + {<<"version">>,<<"0.2.9">>}.
Loading more files…