Is it possible to use the latest Ecto release in a Phoenix Framework project?

phoenix_ecto determines what Ecto version will be included in the project. I need the fix made by a recent commit into Ecto. Can I use the latest Ecto release somehow in my project?

https://hex.pm/packages/phoenix_ecto require a minimum version 3.0 of Ecto, so you should be fine with just adding to your mix file.

{:ecto, "~> 3.3"}
1 Like