-
-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove all warn-concurrency warnings #408
Conversation
//@available(macOS 13.0, iOS 16.0, tvOS 16.0, watchOS 9.0, *) | ||
extension JSONDecoder: PostgresJSONDecoder {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This creates a nasty warning in macOS:
Conformance of 'JSONDecoder' to 'Sendable' is only available in macOS 13.0 or newer
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #408 +/- ##
=======================================
Coverage 49.03% 49.04%
=======================================
Files 108 108
Lines 8845 8874 +29
=======================================
+ Hits 4337 4352 +15
- Misses 4508 4522 +14
|
Those breaking changes are false positives:
|
Patch to remove all concurrency warnings.