I’ve seen that a stable stackage for GHC 9 was finally release, so I switched a not-entirely trivial project of mine over to it.
What I see is that there were some changes related to template-haskell-generated instances, that require a more strict ordering in the source code of the instance vs. its usage. However, I couldn’t see a clear note of this in the release notes - is it a known issue?
Breaking change: Template Haskell splices now act as separation points between constraint solving passes. It is no longer possible to use an instance of a class before a splice and define that instance after a splice. For example, …