You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: implement the new User Feedback API
https://develop.sentry.dev/sdk/data-model/envelope-items/#user-feedback
* Fix heap-use-after-free
* Update CHANGELOG.md
* remove unused line3_end
* what if we reused the old API?
* use internal id to fix event association in Sentry Web UI
* restore integration test for legacy user report
* convert a deprecated "user report" to a new "user feedback"
* conversion: note in docs & log info message
* let sentry__envelope_add_user_feedback take ownership
* revert back to option 1
* deprecate sentry_value_new_user_feedback() & sentry_capture_user_feedback()
* fix remaining deprecation warnings
* msvc
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@
7
7
- Add `sentry_clear_attachments()` to allow clearing all previously added attachments in the global scope. ([#1290](https://github.com/getsentry/sentry-native/pull/1290))
8
8
- Compiles also on Xbox One ([#1294](https://github.com/getsentry/sentry-native/pull/1294))
9
9
- Provide `sentry_regenerate_trace()` to allow users to set manual trace boundaries. ([#1293](https://github.com/getsentry/sentry-native/pull/1293))
10
+
- Add `sentry_value_new_feedback` and `sentry_capture_feedback` to allow capturing [User Feedback](https://develop.sentry.dev/sdk/data-model/envelope-items/#user-feedback). ([#1304](https://github.com/getsentry/sentry-native/pull/1304))
11
+
- Deprecate `sentry_value_new_user_feedback` and `sentry_capture_user_feedback` in favor of the new API.
0 commit comments