v84.0.0 (2021-09-13)
Places
⚠️ Breaking Changes ⚠️
previewImageUrl
property was added toHistoryMetadata
(#4448)
What's changed
previewImageUrl
was added toVisitObservation
, allowing clients to make observations about the 'hero' image of the webpage (#4448)
Push
⚠️ Breaking Changes ⚠️
- The push component now uses
uniffi
! Here are the Kotlin breaking changes related to that:PushAPI
no longer exists, consumers should consumerPushManager
directlyPushError
becomesPushException
, and all specific errors are nowPushException
children, and can be retrieved usingPushException.{ExceptionName}
, for exampleStorageError
becomesPushException.StorageException
- The
PushManager.decrypt
function now returns aList<Byte>
, where it used to returnByteArray
, the consumer can do the conversion using.toByteArray()
- All references to
channelID
becomechannelId
(with a lowercased
)