Skip to content

Commit cb07a09

Browse files
committed
update migration guide based on getsentry/sentry-fastlane-plugin/pull/382
1 parent 223e1c0 commit cb07a09

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

docs/platforms/apple/common/dsym/index.mdx

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,54 @@ sentry_debug_files_upload(
138138
)
139139
```
140140

141+
**`ids`** in `sentry_debug_files_upload` → Renamed to `id` (singular):
142+
143+
```ruby
144+
# Before (renamed)
145+
sentry_debug_files_upload(
146+
auth_token: '...',
147+
org_slug: '...',
148+
project_slug: '...',
149+
ids: 'abc123' # ❌ Renamed
150+
)
151+
152+
# After
153+
sentry_debug_files_upload(
154+
auth_token: '...',
155+
org_slug: '...',
156+
project_slug: '...',
157+
id: 'abc123' # ✅ Use id instead
158+
)
159+
```
160+
161+
**Deprecated parameters in `sentry_debug_files_upload`** → Remove these parameters:
162+
163+
The following parameters have been removed as they are no longer supported in sentry-cli v3:
164+
165+
- `info_plist`
166+
- `no_reprocessing`
167+
- `upload_symbol_maps`
168+
169+
```ruby
170+
# Before (removed)
171+
sentry_debug_files_upload(
172+
auth_token: '...',
173+
org_slug: '...',
174+
project_slug: '...',
175+
info_plist: '/path/to/Info.plist', # ❌ Removed
176+
no_reprocessing: true, # ❌ Removed
177+
upload_symbol_maps: true # ❌ Removed
178+
)
179+
180+
# After
181+
sentry_debug_files_upload(
182+
auth_token: '...',
183+
org_slug: '...',
184+
project_slug: '...'
185+
# info_plist, no_reprocessing, and upload_symbol_maps parameters removed
186+
)
187+
```
188+
141189
#### Changed Default Behavior
142190

143191
**`path` parameter in `sentry_debug_files_upload`** → Default behavior changed:

0 commit comments

Comments
 (0)