Open drewble opened 1 year ago
Thanks @drewble, and sorry for the delay getting back to you. I was kind of passingly aware of this issue, but hadn't really dug into it to check exactly what version limitations need to be imposed. I'll add those when I got a chance.
ecto_adapters_dynamodb 3.3.3
specifies a dependency onecto_sql ~> 3.6
but I could not get it to work withecto_sql 3.9.2
andecto 3.9.4
.On
ecto.migrate
it would fail with this errorDowngrading to
ecto_sql 3.8.3
andecto 3.8.4
resolved this issue.ecto_adapters_dynamodb
should either resolve this issue withecto_sql 3.9.4
or specify a dependencyecto_sql >= 3.6.0 and < 3.9.0
.