Releases: firebase/fastlane-plugin-firebase_app_distribution
Releases · firebase/fastlane-plugin-firebase_app_distribution
v0.3.5
- Deprecate
firebase_app_distribution_login
action. The firebase_app_distribution_login
will be removed in Q1 2023.
v0.3.4
- 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
- Improve logging for errors fetching access token (#263)
v0.3.2
- 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
- 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
Fixes:
- Fastlane 2.183 breaks loading: Error loading plugin (#204)
v0.2.8
Fixes:
- Exit with a non-zero status code if upload does not finish (#201)
v0.2.7
- 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
- fix: specify content-type headers when making json post requests #160 (@brownoxford)
v0.2.2
Adds a googleservice_info_plist_path
parameter to the upload action.