File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed
docs/platforms/apple/common/dsym Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff 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:
You can’t perform that action at this time.
0 commit comments