Skip to content

Releases: firebase/fastlane-plugin-firebase_app_distribution

v0.3.5

28 Jul 14:40
f9ff065
Compare
Choose a tag to compare
  • Deprecate firebase_app_distribution_login action. The firebase_app_distribution_login will be removed in Q1 2023.

v0.3.4

14 Apr 14:35
b2dd465
Compare
Choose a tag to compare
  • Fixes bug with the firebase_app_distribution_login action (see #269 for more details).
  • Fixes bug where we were incorrectly removing spaces from groups (see #266 for more details). Now we only trim leading and trailing spaces from the groups passed in via the groups parameter.

v0.3.3

22 Mar 22:23
31293c2
Compare
Choose a tag to compare
  • Improve logging for errors fetching access token (#263)

v0.3.2

15 Dec 16:09
4fcb185
Compare
Choose a tag to compare
  • Adds firebase_app_distribution_get_latest_release action (#25). This will fetch info about your app's latest release in App Distribution, including the version and release notes (more info in the docs for our new REST API). You can use this action to increment the build number, for example:
lane :bump_version do
  latest_release = firebase_app_distribution_get_latest_release(
    app: "<your Firebase app ID>"
  )
  increment_build_number({ build_number: latest_release[:buildVersion].to_i + 1 })
end
  • Fixes option name in an error message (#250)
  • Updates some code examples (#255)

v0.3.1

26 Aug 20:53
ef3f96f
Compare
Choose a tag to compare
  • Add firebase_app_distribution_add_testers and firebase_app_distribution_remove_testers actions
  • Poll for upload status up to five minutes, instead of two
  • Add logging for service account auth errors (#215)
  • Improved messaging for uploads

v0.2.9

14 May 18:07
4bb1f05
Compare
Choose a tag to compare

Fixes:

  • Fastlane 2.183 breaks loading: Error loading plugin (#204)

v0.2.8

11 May 19:47
a5acc34
Compare
Choose a tag to compare

Fixes:

  • Exit with a non-zero status code if upload does not finish (#201)

v0.2.7

20 Apr 14:13
d641853
Compare
Choose a tag to compare
  • Add firebase_app_distribution_get_udids action
  • Add --android_artifact_path and --android_artifact_type parameters
  • Fix: Make --release_notes_file take precedence over lane_context[SharedValues::FL_CHANGELOG]

v0.2.3

29 Sep 16:30
Compare
Choose a tag to compare
  • fix: specify content-type headers when making json post requests #160 (@brownoxford)

v0.2.2

28 Sep 19:20
242b34d
Compare
Choose a tag to compare

Adds a googleservice_info_plist_path parameter to the upload action.