codedge-llc / pigeon

iOS and Android push notifications for Elixir
https://hex.pm/packages/pigeon
MIT License
606 stars 133 forks source link

support httpoison 2.0 #234

Closed nathany-copia closed 1 year ago

nathany-copia commented 1 year ago

This might just be a matter of loosening the requirements in mix.exs?

Because pigeon >= 1.1.5 depends on httpoison ~> 0.7 or ~> 1.0 and your app depends on httpoison ~> 2.0, pigeon >= 1.1.5 is forbidden. So, because your app depends on pigeon ~> 1.5, version solving failed.

nathany-copia commented 1 year ago

I think this is an issue still in the rc based on this line {:httpoison, "~> 0.7 or ~> 1.0"}, on the main branch

hpopp commented 1 year ago

Fixed with #236. I'll be holding off posting a new RC until some other features are merged, but you can safely override in the meantime.

nathany-copia commented 1 year ago

Thanks!