This repository has been archived by the owner on Nov 19, 2018. It is now read-only.
Releases: fastlane-old/spaceship
Releases · fastlane-old/spaceship
0.36.1 Hotfix for icon upload
- Fix upload of app icon for app and watch (#6652)
0.36.0 More APIs
- Make parse_response and request method public (#6491)
0.35.0 Improvements
- 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
- Fix upload of image assets to iTunes Connect (#6423)
0.34.2 Improvements
- [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
- Fix Sticker category by adding correct Apps prefix (#6257)
0.34.0 Improvements
- [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
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
andSpaceship::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 callcertificate_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
- Update device handling to work with the new Apple Developer Portal
0.32.3 Improvements
- Add support for 2-level provisioning profile API