You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems recent release is not compatible with current flutter stable release.
http_interop v2 requires collection package version 0.19. Which isn't compatible with flutter_test from current flutter stable release
Because every version of flutter from sdk depends on collection 1.18.0 and http_interop >=2.0.0 depends on collection ^1.19.0, flutter from sdk is incompatible with http_interop >=2.0.0.
And because json_api >=8.0.0 depends on http_interop ^2.0.0, flutter from sdk is incompatible with json_api >=8.0.0.
The text was updated successfully, but these errors were encountered:
Thanks. http_interop doesn't really need that specific version of collection, so we might relax the version requirements to resolve the issue. On the other hand, neither json_api v8 nor http_interop v2 bring new features. The reason for the version bump was just to allow some BC-breaking changes in the API. You won't miss much if you stay on v7 for now, furthermore, this would allow me to iron out potential bugs in v8.
@f3ath thanks for feedback, yep I saw release notes, nothing that impacts me for sure, mostly worry if you find any bugs that are not related to v8, and you need to address those then I'm stuck with v7 😁
It seems recent release is not compatible with current flutter stable release.
http_interop v2 requires collection package version 0.19. Which isn't compatible with flutter_test from current flutter stable release
The text was updated successfully, but these errors were encountered: