fix: apple authentication, appstore list, publish #5820
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Checklist
What is the current behavior?
Any operation in the CLI which requires an authentication to apple fails with a 401.
What is the new behavior?
Apple authentication changed to a srp implementation, which resulted in the exiting code breaking with an error of 401 on anything that required authentication.
This PR uses a SRP implementation to perform the authentication in the apple way (it is not standard SRP) it consumes a new dependency (@foxt/js-srp) which performs the SRP calculations.
In addition to the authentication, this PR also Fixes:
ns appstore list
a further change in the apple api was causing this to fail.ns publish
when providing a profile, changed it to use thebuildForAppStore
flag which results in the correct behaviour, also addingsigningStyle manual
to the export plist.ns publish
without specifying a profile. Added-allowProvisioningUpdates
to the export archive command when no profiles were specified.app-store
withapp-store-connect
method
in distribution plist. ( which requires xcode > 14.3 but 15 needed now to publish anyway)Fixes/Implements/Closes #5818.