v87.3.0 (2022-01-11)
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)
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 runningVERSION
or higher. (#4752)- The
versionCompare
transform will return a positive number ifapp_version
is greater than
VERSION
, a negative number ifapp_version
is less thanVERSION
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 with95
or above (95.0
,95.1
,95.2.3-beta
,96
etc..)
- The