Skip to content

Commit e00d5e4

Browse files
committed
Update elixir, erlang, deps, fix issues
1 parent 568e683 commit e00d5e4

File tree

5 files changed

+79
-75
lines changed

5 files changed

+79
-75
lines changed

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.12-otp-24
2-
erlang 24.0
1+
elixir 1.18.2
2+
erlang 27.2.3

lib/vbt/credo/check/graphql/mutation_field.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defmodule VBT.Credo.Check.Graphql.MutationField do
2121
"""
2222
]
2323

24-
alias alias Credo.Code
24+
alias Credo.Code
2525

2626
def run(source_file, params \\ []) do
2727
{_, state} =

lib/vbt/graphql/case.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ defmodule VBT.Graphql.Case do
130130
defp add_header(conn, {key, value}), do: Plug.Conn.put_req_header(conn, key, value)
131131

132132
using opts do
133-
quote bind_quoted: [opts: opts, module: unquote(__MODULE__)] do
133+
quote bind_quoted: [opts: opts, module: __MODULE__] do
134134
import VBT.Graphql.Case, except: [set_config: 1]
135135

136136
setup do

mix.exs

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule VBT.MixProject do
55
[
66
app: :vbt,
77
version: "0.1.0",
8-
elixir: "~> 1.12",
8+
elixir: "~> 1.18.2",
99
start_permanent: Mix.env() == :prod,
1010
deps: deps(),
1111
aliases: aliases(),
@@ -31,26 +31,26 @@ defmodule VBT.MixProject do
3131
[
3232
{:absinthe_phoenix, "~> 2.0"},
3333
{:absinthe_relay, "~> 1.5"},
34-
{:bamboo, "~> 2.2"},
34+
{:bamboo, "~> 2.4"},
3535
{:bamboo_phoenix, "~> 1.0.0"},
36-
{:bcrypt_elixir, "~> 2.3"},
37-
{:credo, "~> 1.5", runtime: false},
38-
{:dialyxir, "~> 1.1", runtime: false},
36+
{:bcrypt_elixir, "~> 3.2"},
37+
{:credo, "~> 1.7", runtime: false},
38+
{:dialyxir, "~> 1.4", runtime: false},
3939
{:ecto_enum, "~> 1.4"},
40-
{:ecto_sql, "~> 3.7"},
41-
{:ex_aws_s3, "~> 2.3"},
40+
{:ecto_sql, "~> 3.12"},
41+
{:ex_aws_s3, "~> 2.5"},
4242
{:ex_crypto, "~> 0.10.0"},
43-
{:ex_doc, "~> 0.25.1", only: :dev, runtime: false},
44-
{:mox, "~> 1.0", only: :test},
45-
{:oban, "~> 2.8"},
46-
{:parent, "~> 0.12.0"},
47-
{:phoenix_html, "~> 2.13"},
48-
{:phoenix_live_view, "~> 0.14", optional: true},
49-
{:phoenix, "~> 1.5.12"},
50-
{:plug_cowboy, "~> 2.5"},
43+
{:ex_doc, "~> 0.37.3", only: :dev, runtime: false},
44+
{:mox, "~> 1.2", only: :test},
45+
{:oban, "~> 2.19"},
46+
{:parent, "~> 0.12.1"},
47+
{:phoenix_html, "~> 4.2"},
48+
{:phoenix_live_view, "~> 1.0", optional: true},
49+
{:phoenix, "~> 1.7"},
50+
{:plug_cowboy, "~> 2.7"},
5151
{:provider, github: "VeryBigThings/provider"},
52-
{:sentry, "~> 8.0"},
53-
{:stream_data, "~> 0.5.0", only: [:test, :dev]}
52+
{:sentry, "~> 10.8"},
53+
{:stream_data, "~> 1.1.3", only: [:test, :dev]}
5454
]
5555
end
5656

0 commit comments

Comments
 (0)