-
Notifications
You must be signed in to change notification settings - Fork 13
Update absinthe dependency #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| use Mix.Config | ||
| import Config | ||
|
|
||
| config :logger, level: :debug | ||
|
|
||
| import_config "#{Mix.env()}.exs" | ||
| for config <- "../apps/*/config/config.exs" |> Path.expand(__DIR__) |> Path.wildcard() do | ||
| import_config config | ||
| end | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| use Mix.Config | ||
| import Config |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| use Mix.Config | ||
| import Config | ||
|
|
||
| config :logger, level: :info |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,8 +6,8 @@ defmodule Rajska.MixProject do | |
| def project do | ||
| [ | ||
| app: :rajska, | ||
| version: "1.3.2", | ||
| elixir: "~> 1.8", | ||
| version: "1.3.3", | ||
| elixir: "~> 1.14", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Ideally we would keep the minimum version that is still supported here, so that it doesn't break for anyone without needing it. |
||
| start_permanent: Mix.env() == :prod, | ||
| deps: deps(), | ||
| name: "Rajska", | ||
|
|
@@ -50,11 +50,11 @@ defmodule Rajska.MixProject do | |
| defp deps do | ||
| [ | ||
| {:ex_doc, "~> 0.19", only: :dev, runtime: false}, | ||
| {:credo, "~> 1.5.0", only: [:dev, :test], runtime: false}, | ||
| {:absinthe, "~> 1.4.0 or ~> 1.5.4 or ~> 1.6.0"}, | ||
| {:credo, "~> 1.6.0", only: [:dev, :test], runtime: false}, | ||
| {:absinthe, "~> 1.5.4 or ~> 1.6.0 or ~> 1.7"}, | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. similar question to the comment above about the elixir version, do we need to drop support for absinthe 1.4? If it still works, better to keep it |
||
| {:excoveralls, "~> 0.11", only: :test}, | ||
| {:hammer, "~> 6.0", optional: true}, | ||
| {:mock, "~> 0.3.0", only: :test}, | ||
| {:mock, "~> 0.3.0", only: :test} | ||
| ] | ||
| end | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is for umbrella apps, right? Not sure if it would work for everyone.
But we actually don't need any configs in this lib, I think we could delete the entire
config/directory, which would simplify it and prevent any warnings in the future