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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
- Java: Align cancellation behavior of our CompletableFuture with the one from OpenJDK:
- The parameter to `cancel()` is ignored.
- `completeExceptionally(someCancellationException)` is treated as a cancellation.
- `get()` can now directly throw CancellationExceptions (as documented) instead of wrapping them in ExecutionException.
Cancellations of libsignal operations continue to propagate bidirectionally when using CompletableFuture's transformation methods, unlike the version in OpenJDK.
As a bonus, CompletableFuture now supports the `handle()` transformation.
- Exposed the new SVR-B API to TypeScript, Swift, and Kotlin.
- BackupForwardSecrecyTokens can now be used to derive MessageBackupKeys.
- Downgraded some networking-related error logs to warnings.