We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d4b36c commit 6f7e9b7Copy full SHA for 6f7e9b7
‎mix.exs‎
@@ -88,14 +88,6 @@ defmodule Sentry.Mixfile do
88
defp test_paths(nil), do: ["test"]
89
defp test_paths(integration), do: ["test_integrations/#{integration}/test"]
90
91
- defp live_view_version() do
92
- if Version.match?(System.version(), ">= 1.14.0") do
93
- "~> 1.0"
94
- else
95
- "~> 0.20"
96
- end
97
98
-
99
defp deps do
100
[
101
{:nimble_options, "~> 1.0"},
@@ -105,7 +97,7 @@ defmodule Sentry.Mixfile do
105
{:hackney, "~> 1.8", optional: true},
106
{:jason, "~> 1.1", optional: true},
107
{:phoenix, "~> 1.6", optional: true},
108
- {:phoenix_live_view, live_view_version(), optional: true},
+ {:phoenix_live_view, "~> 0.20 or ~> 1.0", optional: true},
109
{:plug, "~> 1.6", optional: true},
110
102
{:telemetry, "~> 0.4 or ~> 1.0", optional: true},
111
103
‎test_integrations/phoenix_app/mix.exs‎
@@ -38,7 +38,7 @@ defmodule PhoenixApp.MixProject do
38
{:postgrex, ">= 0.0.0"},
39
{:phoenix, "~> 1.7.14"},
40
{:phoenix_html, "~> 4.1"},
41
- {:phoenix_live_view, "~> 1.0"},
+ {:phoenix_live_view, "~> 0.20 or ~> 1.0"},
42
{:phoenix_live_reload, "~> 1.2", only: :dev},
43
{:floki, ">= 0.30.0", only: :test},
44
{:phoenix_live_dashboard, "~> 0.8.3"},
0 commit comments