fastlane-plugin-altoolalt 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1152714f8a32450d80fc3e80e387e2c3ea751026313d0cc0e7ce911990eeada
|
|
4
|
+
data.tar.gz: 196270381d0f943ceca7f9af8a54d5563dd5ecdf489491a315c719944960a641
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b87d35d3376a1b6436a85bfda0c9e36d3102b4a58dee91904be14d79bb85bd5733667fe692b08e2bdc3d2342a6a1fef661f9a057a23a022cd25b214a8ea36a6
|
|
7
|
+
data.tar.gz: 359ffaf34737c3fa129b7a6b331f55d3cf79215fae18fffc3d34cc9aa7542194fa987c64919454b98fd1b26d131b556dff2d9b9d4a681033bbae00b30318cdb9
|
data/README.md
CHANGED
|
@@ -49,6 +49,7 @@ This plugin provides an alternative way to upload IPA files to App Store Connect
|
|
|
49
49
|
- ✅ Support for iOS, macOS, tvOS, and visionOS apps
|
|
50
50
|
- ✅ Multi-provider account support
|
|
51
51
|
- ✅ Comprehensive error handling and validation
|
|
52
|
+
- ✅ Backwards compatible with older Xcode versions (v1.3.1+)
|
|
52
53
|
|
|
53
54
|
|
|
54
55
|
## Usage
|
|
@@ -163,6 +164,31 @@ To automatically fix many of the styling issues, use
|
|
|
163
164
|
rubocop -a
|
|
164
165
|
```
|
|
165
166
|
|
|
167
|
+
## Changelog
|
|
168
|
+
|
|
169
|
+
### v1.3.1 (2025-11-06)
|
|
170
|
+
- 🐛 **Fixed**: API key parameter compatibility with older Xcode versions
|
|
171
|
+
- Changed to use `--apiKey`/`--apiIssuer` (camelCase) instead of `--api-key`/`--api-issuer` (kebab-case)
|
|
172
|
+
- Ensures compatibility with Xcode versions before 16.2 that only accept camelCase parameters
|
|
173
|
+
- Works with both `--upload-app` and `--upload-package` methods
|
|
174
|
+
|
|
175
|
+
### v1.3.0 (2025-10-30)
|
|
176
|
+
- ✨ **New**: Support for modern `--upload-package` method with automatic bundle metadata extraction
|
|
177
|
+
- ✨ **New**: Auto-extracts bundle_id, bundle_version, and bundle_short_version_string from IPA
|
|
178
|
+
- ✨ **New**: Support for visionOS platform
|
|
179
|
+
- 📝 Added comprehensive test suite with 7 test cases
|
|
180
|
+
- 📝 Added CLAUDE.md with detailed architecture documentation
|
|
181
|
+
|
|
182
|
+
### v1.2.0
|
|
183
|
+
- ✨ **New**: API Key authentication support (`api_key_id` and `api_issuer`)
|
|
184
|
+
- ♻️ Renamed plugin from `fastlane-plugin-altool` to `fastlane-plugin-altoolalt`
|
|
185
|
+
- ♻️ Renamed action from `altool` to `altool_alt`
|
|
186
|
+
|
|
187
|
+
### v1.1.0
|
|
188
|
+
- 🔧 Use `xcrun -f altool` for better Xcode compatibility
|
|
189
|
+
- 🔧 Improved path handling with quotation marks
|
|
190
|
+
- ♻️ Dropped `altool_` prefix from action parameters
|
|
191
|
+
|
|
166
192
|
## Issues and Feedback
|
|
167
193
|
|
|
168
194
|
For any other issues and feedback about this plugin, please submit it to this repository.
|
|
@@ -107,7 +107,9 @@ module Fastlane
|
|
|
107
107
|
api_issuer = params[:api_issuer]
|
|
108
108
|
|
|
109
109
|
if !api_key_id.to_s.empty? && !api_issuer.to_s.empty?
|
|
110
|
-
|
|
110
|
+
# Use camelCase format (--apiKey, --apiIssuer) for maximum backwards compatibility
|
|
111
|
+
# Older Xcode versions only accept camelCase, while newer versions accept both formats
|
|
112
|
+
command.concat(['--apiKey', api_key_id, '--apiIssuer', api_issuer])
|
|
111
113
|
else
|
|
112
114
|
username = params[:username]
|
|
113
115
|
ENV["ALTOOL_PASSWORD"] = params[:password]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-altoolalt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anand Biligiri
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|