Skip to content

90.0.0

Compare
Choose a tag to compare
@tarikeshaq tarikeshaq released this 25 Jan 16:46
· 433 commits to main since this release
4ca440b

90.0.0 (2022-01-25)

Places

⚠️ Breaking Changes ⚠️

  • Places has been completely UniFFI-ed

Glean

⚠️ Breaking Changes ⚠️

  • The bundled version of Glean has been updated to v43.0.2.
    See the Glean Changelog for full details.
    BREAKING CHANGE: Pass build info into initialize, which contains the build date.
    A suitable instance is generated by glean_parser in GleanMetrics.GleanBuild.info.

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)
    • 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..)