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.5.2 Fixed iTunes Connect Login

18 Aug 20:19
Compare
Choose a tag to compare

Fixed an issue that sometimes occured after the login on iTunes Connect

0.5.1 Fixed iTunes Connect login

14 Aug 09:47
Compare
Choose a tag to compare
  • Fixed an issue where the login on iTunes Connect failed
  • pre_processing_builds now won't return stuck binaries

0.5.0 Added access to device types

13 Aug 14:45
Compare
Choose a tag to compare
  • Added support for device class (thanks @christopherstott)
  • Improved code style and enabled automatic checks

0.4.0 Support for App Services, App Groups

07 Aug 13:55
Compare
Choose a tag to compare

Special thanks to @henrinormak and @snatchev 🚀

  • Full support for enabling and disabling App Services of your Dev Portal apps
  • Full support for modifying and creating App Groups of your Dev Portal apps
  • All spaceship code now has a forced code style verified by rubocop
  • Allow multiple certs to be specified in a provisioning profile (thanks @christopherstott)

App Services

# Find a specific app based on the bundle identifier
app = Spaceship.app.find("com.krausefx.app")

# Enable HealthKit, but make sure HomeKit is disabled
app.update_service(Spaceship.app_service.health_kit.on)
app.update_service(Spaceship.app_service.home_kit.off)
app.update_service(Spaceship.app_service.vpn_configuration.on)
app.update_service(Spaceship.app_service.passbook.off)
app.update_service(Spaceship.app_service.cloud_kit.cloud_kit)

App Groups

group = Spaceship.app_group.find("group.com.example.application")

group = Spaceship.app_group.create!(group_id: "group.com.example.another", 
                                        name: "Another group")

0.3.4 Fixed handling when password is empty

30 Jul 16:53
Compare
Choose a tag to compare

Fixed an issue when no password was passed

0.3.3 Improved login error handling

30 Jul 13:03
Compare
Choose a tag to compare
  • Changed the error class when no login data was provided
  • Fixed issue with log files on multi-user systems

0.3.2 Fixed provisioning profile issues

24 Jul 20:18
Compare
Choose a tag to compare
  • Fixed issues with the Dev Portal when creating or repairing provisioning profiles
  • Added support for company_name when creating a new application on iTC (thanks @lacostej)

0.3.1 Improved inspect, new documentation

23 Jul 12:16
Compare
Choose a tag to compare
  • Added initial iTunes Connect documentation
  • Improved the debug information shown when using the irb
  • Added more tests
  • Fixed not correcting nil value for build expire date

0.3.0 Language conversion and testing status

20 Jul 19:55
Compare
Choose a tag to compare
  • Support for converting even more language codes
  • Added testing_status to build class

0.2.0 New API endpoints

20 Jul 10:46
Compare
Choose a tag to compare
  • Easy access to all builds for a given application
  • Submitting apps for TestFlight review
  • Cancelling TestFlight reviews
  • Improved iTunes Connect error handling
  • Access to the last installed information for a tester