Conversation
```elixir
{:nimble_pool, "~> 0.2 or ~> 1.0 or ~> 1.1"},
```
This is because I ran into an issue trying to run chromic_pdf and finch, namley
```
Dependencies have diverged:
* nimble_pool (Hex package)
the dependency nimble_pool 1.0.0
> In deps/chromic_pdf/mix.exs:
{:nimble_pool, "~> 0.2 or ~> 1.0", [env: :prod, hex: "nimble_pool", repo: "hexpm", optional: false]}
does not match the requirement specified
> In deps/finch/mix.exs:
{:nimble_pool, "~> 1.1", [env: :prod, hex: "nimble_pool", repo: "hexpm", optional: false]}
Ensure they match or specify one of the above in your deps and set "override: true"
** (Mix) Can't continue due to errors on dependencies
```
From the changlelog
https://github.com/dashbitco/nimble_pool/blob/main/CHANGELOG.md#v110-2024-03-25
```
Add handle_cancelled/2 pool callback
```
I don't see any issues with the upgrade
|
@aforward This is interesting... |
|
I am on elixir and 1.19 and OTP 28. I had tried unlocking the deps to start fresh but it still complained |
|
@aforward Tried to reproduce it on Elixir 1.19.1, created a fresh app, added chromic_pdf 1.17 and finch 0.20 to the deps and |
|
@aforward Please reopen when you can reproduce this. In any case, it's unlikely a ChromicPDF issue, and I'm hesitant to just merge it as a) it would needlessly force people on |
This is because I ran into an issue trying to run chromic_pdf and finch, namley
From the changlelog
https://github.com/dashbitco/nimble_pool/blob/main/CHANGELOG.md#v110-2024-03-25
I don't see any issues with the upgrade