Fixed
- Crash after calling
cancel()
onCancellable
(#2932): Callingcancel()
on a non-subscriptionCancellable
will now correctly handle the lifetime of the internallyUnmanaged
object. #2943 - Thank you to @yonaskolb for raising the issue. - Deprecation messages are not escaped (#2879): If escaped characters are used in GraphQL deprecation messages they are now properly escaped in the rendered Swift warning or attribution message. #2951 Thank you to @djavan-bertrand for raising the issue.
Added
- Add injecting additionalErrorHandler for upload operations to RequestChainNetworkTransport (#2948):
Upload
operations can now have custom error interceptors like other operations. #2948 Thank you to @RobertDresler for the contribution.