Current section

12 Versions

Jump to

Compare versions

4 files changed
+29 additions
-30 deletions
  @@ -4,7 +4,7 @@
4 4
5 5 ![Hex.pm](https://img.shields.io/hexpm/v/dvr.svg)
6 6 ![Hex.pm licence](https://img.shields.io/hexpm/l/dvr.svg)
7 - ![Build Status)](https://img.shields.io/github/workflow/status/athal7/dvr/CI/main)
7 + ![Build Status)](https://img.shields.io/github/actions/workflow/status/athal7/dvr/ci.yml?branch=main)
8 8
9 9 **Documentation can be found at [https://hexdocs.pm/dvr](https://hexdocs.pm/dvr).**
  @@ -1,29 +1,28 @@
1 - {<<"app">>,<<"dvr">>}.
2 - {<<"build_tools">>,[<<"mix">>]}.
3 - {<<"description">>,<<"Record and replay your Phoenix channels">>}.
4 - {<<"elixir">>,<<"~> 1.10">>}.
5 - {<<"files">>,
6 - [<<"lib">>,<<"lib/dvr.ex">>,<<"lib/dvr">>,<<"lib/dvr/channel.ex">>,
7 - <<"lib/dvr/store.ex">>,<<"lib/dvr/cleanup.ex">>,
8 - <<"lib/dvr/absinthe_channel.ex">>,<<"mix.exs">>,<<"README.md">>,
9 - <<".formatter.exs">>]}.
10 - {<<"licenses">>,[<<"MIT">>]}.
11 1 {<<"links">>,[{<<"GitHub">>,<<"https://github.com/athal7/dvr">>}]}.
12 2 {<<"name">>,<<"dvr">>}.
3 + {<<"version">>,<<"1.1.2">>}.
4 + {<<"description">>,<<"Record and replay your Phoenix channels">>}.
5 + {<<"elixir">>,<<"~> 1.15">>}.
6 + {<<"app">>,<<"dvr">>}.
7 + {<<"files">>,
8 + [<<"lib">>,<<"lib/dvr">>,<<"lib/dvr/channel.ex">>,<<"lib/dvr/cleanup.ex">>,
9 + <<"lib/dvr/store.ex">>,<<"lib/dvr/absinthe_channel.ex">>,<<"lib/dvr.ex">>,
10 + <<"mix.exs">>,<<"README.md">>,<<".formatter.exs">>]}.
11 + {<<"licenses">>,[<<"MIT">>]}.
13 12 {<<"requirements">>,
14 - [[{<<"app">>,<<"phoenix">>},
15 - {<<"name">>,<<"phoenix">>},
13 + [[{<<"name">>,<<"phoenix">>},
14 + {<<"app">>,<<"phoenix">>},
16 15 {<<"optional">>,true},
17 - {<<"repository">>,<<"hexpm">>},
18 - {<<"requirement">>,<<"~> 1.5">>}],
19 - [{<<"app">>,<<"absinthe">>},
20 - {<<"name">>,<<"absinthe">>},
16 + {<<"requirement">>,<<"~> 1.7">>},
17 + {<<"repository">>,<<"hexpm">>}],
18 + [{<<"name">>,<<"absinthe">>},
19 + {<<"app">>,<<"absinthe">>},
21 20 {<<"optional">>,true},
22 - {<<"repository">>,<<"hexpm">>},
23 - {<<"requirement">>,<<"~> 1.5">>}],
24 - [{<<"app">>,<<"absinthe_phoenix">>},
25 - {<<"name">>,<<"absinthe_phoenix">>},
21 + {<<"requirement">>,<<"~> 1.7">>},
22 + {<<"repository">>,<<"hexpm">>}],
23 + [{<<"name">>,<<"absinthe_phoenix">>},
24 + {<<"app">>,<<"absinthe_phoenix">>},
26 25 {<<"optional">>,true},
27 - {<<"repository">>,<<"hexpm">>},
28 - {<<"requirement">>,<<"~> 2.0">>}]]}.
29 - {<<"version">>,<<"1.1.0">>}.
26 + {<<"requirement">>,<<"~> 2.0">>},
27 + {<<"repository">>,<<"hexpm">>}]]}.
28 + {<<"build_tools">>,[<<"mix">>]}.
  @@ -30,7 +30,7 @@ defmodule DVR.Channel do
30 30 end
31 31 else
32 32 require Logger
33 - Logger.warn("DVR Channel not configured, Phoenix.Channel module is not available")
33 + Logger.warning("DVR Channel not configured, Phoenix.Channel module is not available")
34 34 end
35 35 end
36 36 end
  @@ -4,8 +4,8 @@ defmodule DVR.MixProject do
4 4 def project do
5 5 [
6 6 app: :dvr,
7 - version: "1.1.0",
8 - elixir: "~> 1.10",
7 + version: "1.1.2",
8 + elixir: "~> 1.15",
9 9 elixirc_paths: elixirc_paths(Mix.env()),
10 10 docs: [main: "readme", extras: ["README.md"]],
11 11 package: package(),
  @@ -44,9 +44,9 @@ defmodule DVR.MixProject do
44 44 defp deps do
45 45 [
46 46 {:ex_doc, "~> 0.19", only: :dev, runtime: false},
47 - {:dialyxir, "~> 1.1.0", only: [:dev, :test], runtime: false},
48 - {:phoenix, "~> 1.5", optional: true},
49 - {:absinthe, "~> 1.5", optional: true},
47 + {:dialyxir, "~> 1.3.0", only: [:dev, :test], runtime: false},
48 + {:phoenix, "~> 1.7", optional: true},
49 + {:absinthe, "~> 1.7", optional: true},
50 50 {:absinthe_phoenix, "~> 2.0", optional: true},
51 51 {:jason, "~> 1.0", only: [:dev, :test]}
52 52 ]