This commit is contained in:
lougeniaC64 2021-09-13 18:49:34 -04:00 коммит произвёл GitHub
Родитель 7d94740a92
Коммит c51b63595a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 21 добавлений и 16 удалений

Просмотреть файл

@ -1,4 +1,4 @@
libraryVersion: 83.0.0
libraryVersion: 84.0.0
groupId: org.mozilla.appservices
projects:
autofill:

Просмотреть файл

@ -1,3 +1,22 @@
# v84.0.0 (_2021-09-13_)
[Full Changelog](https://github.com/mozilla/application-services/compare/v83.0.0...v84.0.0)
## Places
### ⚠️ Breaking Changes ⚠️
- `previewImageUrl` property was added to `HistoryMetadata` ([#4448](https://github.com/mozilla/application-services/pull/4448))
### What's changed
- `previewImageUrl` was added to `VisitObservation`, allowing clients to make observations about the 'hero' image of the webpage ([#4448](https://github.com/mozilla/application-services/pull/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 consumer `PushManager` directly
- `PushError` becomes `PushException`, and all specific errors are now `PushException` children, and can be retrieved using `PushException.{ExceptionName}`, for example `StorageError` becomes `PushException.StorageException`
- The `PushManager.decrypt` function now returns a `List<Byte>`, where it used to return `ByteArray`, the consumer can do the conversion using `.toByteArray()`
- All references to `channelID` become `channelId` (with a lowercase `d`)
# v83.0.0 (_2021-09-08_)
[Full Changelog](https://github.com/mozilla/application-services/compare/v82.3.0...v83.0.0)

Просмотреть файл

@ -2,14 +2,7 @@
# Unreleased Changes
[Full Changelog](https://github.com/mozilla/application-services/compare/v83.0.0...main)
## Places
### ⚠️ Breaking Changes ⚠️
- `previewImageUrl` property was added to `HistoryMetadata` ([#4448](https://github.com/mozilla/application-services/pull/4448))
### What's changed
- `previewImageUrl` was added to `VisitObservation`, allowing clients to make observations about the 'hero' image of the webpage ([#4448](https://github.com/mozilla/application-services/pull/4448))
[Full Changelog](https://github.com/mozilla/application-services/compare/v84.0.0...main)
<!-- WARNING: New entries should be added below this comment to ensure the `./automation/prepare-release.py` script works as expected.
@ -25,10 +18,3 @@ Use the template below to make assigning a version number during the release cut
- Description of the change with a link to the pull request ([#0000](https://github.com/mozilla/application-services/pull/0000))
-->
## Push
### ⚠️ Breaking Changes ⚠️
- The push component now uses `uniffi`! Here are the Kotlin breaking changes related to that:
- `PushAPI` no longer exists, consumers should consumer `PushManager` directly
- `PushError` becomes `PushException`, and all specific errors are now `PushException` children, and can be retrieved using `PushException.{ExceptionName}`, for example `StorageError` becomes `PushException.StorageException`
- The `PushManager.decrypt` function now returns a `List<Byte>`, where it used to return `ByteArray`, the consumer can do the conversion using `.toByteArray()`
- All references to `channelID` become `channelId` (with a lowercase `d`)