Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Releases: fastlane-old/spaceship

0.36.1 Hotfix for icon upload

21 Oct 17:40
Compare
Choose a tag to compare
  • Fix upload of app icon for app and watch (#6652)

0.36.0 More APIs

11 Oct 00:32
Compare
Choose a tag to compare
  • Make parse_response and request method public (#6491)

0.35.0 Improvements

10 Oct 18:29
Compare
Choose a tag to compare
  • Add ability to delete iCloud Sandbox Testers (#6395)
  • Validate team ID and show nice error message (#6442)
  • Add more debugging information when providing a wrong team (#6443)
  • adding in pendingDeveloperRelease status (#6436)
  • Losen up dependencies of subtools (#6461)

0.34.3 Hot fix for uploading image assets

06 Oct 13:56
Compare
Choose a tag to compare
  • Fix upload of image assets to iTunes Connect (#6423)

0.34.2 Improvements

05 Oct 15:09
Compare
Choose a tag to compare
  • [spaceship] Show language of metadata failure next to error message (#6392)
  • [spaceship] Rename DEBUG to SPACESHIP_DEBUG to avoid name conflicts (#6312)
  • Add support for iCloud Sandbox testers (#6258)

0.34.1 Improvements

22 Sep 20:39
Compare
Choose a tag to compare
  • Fix Sticker category by adding correct Apps prefix (#6257)

0.34.0 Improvements

22 Sep 17:59
Compare
Choose a tag to compare
  • [spaceship] Add basic support for Developer ID profiles (#6232)
  • [spaceship] Fix fetching devices/certificates on Mac profiles (#6231)

0.33.0 Update spaceship for the new Provisioning Profile API

20 Sep 20:06
Compare
Choose a tag to compare

This release changes the way App Store and Ad Hoc profiles are handled due to a recent API change. If you're using spaceship directly make sure to update your code to consider the following changes:

  • Spaceship::ProvisioningProfile::AppStore.all and Spaceship::ProvisioningProfile::AdHoc.all now return the same array of both App Store and Ad Hoc profiles
  • To distinguish between those profiles at a later point, you can use the new profile.is_adhoc? method
  • The reason for this change is that it's now required to send an additional request per provisioning profile just to get the list of associated certificates and devices. The list of devices is required to detect if it's an Ad Hoc profile.
  • The first time you call either .devices, .certificates or .certificate_valid? the details request will be sent. Make sure to only call this on profiles you're interested in, as it will take about 400ms per profile
  • profile.valid now doesn't verify the certificate by default any more, you have to call certificate_valid? directly, which will take about 400ms to complete unless the certificate is cached

  • This release also fixed a bug that spaceauth wasn't included in the Ruby gem

0.32.4 Improvements

16 Sep 22:59
Compare
Choose a tag to compare
  • Update device handling to work with the new Apple Developer Portal

0.32.3 Improvements

16 Sep 07:08
Compare
Choose a tag to compare
  • Add support for 2-level provisioning profile API