Raising the Swift concurrency checkings of Swift 6 can create compiler warnings. The new Swift Concurrency and GRDB guide is there to help you use GRDB from your Swift 6 code.
If you are looking for inspiration, the demo app was rewritten from scratch in a brand new Xcode 16 project.
Please upgrade your applications, and report any issue on GitHub!
i see, i believe this is because DispatchQoS and DispatchSpecificKey simply did not receive these conformances in Swift 6.0.1 on linux, which is yet another in a long list of platform traps between the macOS and linux versions of the standard library.
i understand GRDB.swift does not officially support linux, however, the 6.x release series was (serendipitously) buildable on linux, which allowed us to index the documentation for those tags on Swiftinit.
although you could probably restore linux buildability by adding #if-gated conformances or @preconcurrency imports, this really feels like something that needs to be fixed in the standard library itself.
GRDB 6 could build on Linux thanks to the contributions of generous users. I hope GRDB 7 will eventually build on Linux as well. I agree it's more an issue with the SDK than with the library itself.