Closed slashmili closed 1 week ago
Yep Bandit can / should absolutely relax that dep. I'll get that into the next release!
I'd like to report that bandit's hpax dependency conflicts with Mint's dependency.
Is there really a conflict?
bandit
requires :hpax, "~> 1.0.0"
and mint
requires :hpax, "~> 0.1.1 or ~> 0.2.0 or ~> 1.0"
.
hpax 1.0.0
which is the latest version does satisfy both version range requirements for bandit
and mint
.
I don't think you are required to include hpax
as a dependency to make them match. I think only a mix deps.update hpax
would suffice to get it to bump to 1.0.0
in the mix.lock
. Right?
Maybe :hpax, "~> 1.0"
is a better relaxed requirement for bandit. But anyway, worth mentioning I don't think there's a conflict as is.
I'd like to report that bandit's hpax dependency conflicts with Mint's dependency.
While I can override the dependency in my
mix.exs
, I thought to report it maybe bandit can relax the dependency and use~> 1.0
?