This commit is contained in:
Tarik Eshaq 2022-01-11 16:06:25 -08:00 коммит произвёл GitHub
Родитель 4557edce07
Коммит 5ceeb43598
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 20 добавлений и 15 удалений

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

@ -1,4 +1,4 @@
libraryVersion: 87.2.0
libraryVersion: 87.3.0
groupId: org.mozilla.appservices
projects:
autofill:

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

@ -1,3 +1,21 @@
# v87.3.0 (_2022-01-11_)
[Full Changelog](https://github.com/mozilla/application-services/compare/v87.2.0...v87.3.0)
## Supported Xcode Versions
- As of Jan 2022, support for Xcode version 13.2.1 is upcoming. After the associated PR is merged AS side and a release is cut, Fx-iOS will update on their side to fully support this Xcode version. See Fx-iOS's Wiki for details.
## viaduct
### What's New
- Add support for PATCH methods. ([#4751](https://github.com/mozilla/application-services/pull/4751))
## Nimbus
### What's new
- The Nimbus SDK now support application version targeting, where experiment creators can set `app_version|versionCompare({VERSION}) >= 0` and the experiments will only target users running `VERSION` or higher. ([#4752](https://github.com/mozilla/application-services/pull/4752))
- The `versionCompare` transform will return a positive number if `app_version` is greater than
`VERSION`, a negative number if `app_version` is less than `VERSION` and zero if they are equal
- `VERSION` must be passed in as a string, for example: `app_version|versionCompare('95.!') >= 0` will target users who are on any version starting with `95` or above (`95.0`, `95.1`, `95.2.3-beta`, `96` etc..)
# v87.2.0 (_2021-12-15_)
[Full Changelog](https://github.com/mozilla/application-services/compare/v87.1.0...v87.2.0)

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

@ -2,7 +2,7 @@
# Unreleased Changes
[Full Changelog](https://github.com/mozilla/application-services/compare/v87.2.0...main)
[Full Changelog](https://github.com/mozilla/application-services/compare/v87.3.0...main)
<!-- WARNING: New entries should be added below this comment to ensure the `./automation/prepare-release.py` script works as expected.
@ -18,16 +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))
-->
## Supported Xcode Versions
- As of Jan 2022, support for Xcode version 13.2.1 is upcoming. After the associated PR is merged AS side and a release is cut, Fx-iOS will update on their side to fully support this Xcode version. See Fx-iOS's Wiki for details.
## viaduct
### What's New
- Add support for PATCH methods. ([#4751](https://github.com/mozilla/application-services/pull/4751))
## Nimbus
### What's new
- The Nimbus SDK now support application version targeting, where experiment creators can set `app_version|versionCompare({VERSION}) >= 0` and the experiments will only target users running `VERSION` or higher. ([#4752](https://github.com/mozilla/application-services/pull/4752))
- The `versionCompare` transform will return a positive number if `app_version` is greater than
`VERSION`, a negative number if `app_version` is less than `VERSION` and zero if they are equal
- `VERSION` must be passed in as a string, for example: `app_version|versionCompare('95.!') >= 0` will target users who are on any version starting with `95` or above (`95.0`, `95.1`, `95.2.3-beta`, `96` etc..)