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: d6c9572b5575d43a4619c4562a6ab14f0b6b87fc88ff76fa4736261a468da447
4
- data.tar.gz: 3941b4ed4ed5c1fc8ffcdde9f6714d2d76576145ce8314d5a8095c0e2817ccc3
3
+ metadata.gz: e1152714f8a32450d80fc3e80e387e2c3ea751026313d0cc0e7ce911990eeada
4
+ data.tar.gz: 196270381d0f943ceca7f9af8a54d5563dd5ecdf489491a315c719944960a641
5
5
  SHA512:
6
- metadata.gz: 9353a87e96259e966012aefd7edd7a22723f36d2d26f76626bb99d3cbf26ef5a94c239a5378592cdef9447e36c8239acae216817b77b3aa3ce8ad215d00ba59f
7
- data.tar.gz: b26e26d67c7aba61175828f9890d3b56e9c0ddb4ae3b20fcf797dbda766c5544bfcef18d16ac76485ffe23ecccc15341b9b6998086e31842b9aacf744ba25b3c
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
- command.concat(['--api-key', api_key_id, '--api-issuer', api_issuer])
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]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Altoolalt
3
- VERSION = "1.3.0"
3
+ VERSION = "1.3.1"
4
4
  end
5
5
  end
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.0
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-05 00:00:00.000000000 Z
11
+ date: 2025-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry