Skip to content

Releases: getsentry/sentry-fastlane-plugin

1.2.0

12 May 11:55
Compare
Choose a tag to compare
  • Added fallback to .sentryclirc when not all parameters are passed in

1.1.0

25 Apr 11:16
Compare
Choose a tag to compare
  • Added three new actions sentry_create_release sentry_upload_file sentry_upload_sourcemap - Thanks @wschurman
  • Added support for Distributions in sentry
  • Bumped sentry-cli version to 1.6.0

1.0.4

24 Mar 10:39
Compare
Choose a tag to compare
  • Fix version compare thx @Boerworz
  • Require sentry-cli 1.0.0 for better dsym association

1.0.2

02 Mar 15:12
Compare
Choose a tag to compare
  • Removed url parameter default value

1.0.1

02 Mar 14:58
Compare
Choose a tag to compare
  • Add additional verbose logging

1.0.0

02 Mar 14:57
Compare
Choose a tag to compare
  • We use sentry-cli internally now to upload the symbols you have to install it with homebrew brew install getsentry/tools/sentry-cli
  • Removed timeout and use_curl parameters since they are no longer be used

0.1.2

28 Dec 14:47
Compare
Choose a tag to compare
  • Added timeout and ability to use curl instead of restclient

Set new timeout and use_curl config items in either your Fastfile or .env file

# Your call to sentry should look something like this...
sentry_upload_dsym(
    timeout: 120,
    use_curl: true
  )
// This is what could/should be added to your .env file
SENTRY_USE_CURL=true
SENTRY_TIMEOUT=180

0.1.1

13 Dec 15:22
Compare
Choose a tag to compare
  • Added dSYM zip for running actual tests
  • Verify dSYM paths
  • Give more informative error messages when getting a 401 or 404 from Sentry API
  • Displays full error when dSYM uploaded not successful