develop
develop copied to clipboard
Merge after https://github.com/getsentry/sentry/pull/42452.
Add note about backup not working and link to github issue, waiting for resolution.
A decision was was made in [RFC-0038](https://github.com/getsentry/rfcs/blob/main/text/0038-scrubbing-sensitive-data.md) to implement better and more robust scrubbing of sensitive data. We need to add a specification so all the SDKs and Relay can...
This came out of a conversation about how this feature works.
There were some changes to the protocol in order to support Portable PDBs but they're not yet reflected in the development docs. * https://develop.sentry.dev/sdk/event-payloads/debugmeta needs update * based on https://github.com/getsentry/rfcs/blob/main/text/0013-portable-pdb.md#implementation...
Explains the different concurrency models and how `Hub` propagation should happen for these. These use-cases are mostly inspired by similar documentation I recently added for Rust here: https://github.com/getsentry/sentry-rust/pull/509 The current...
Java does have `Sentry.startSession` and `Sentry.endSession` so if one decides to do its own instrumentation, that's possible. https://develop.sentry.dev/sdk/sessions/#exposed-api here the exposed API only states available thru the `Hub`. Java hides...
Various fixes: - It is unclear the create app button needs the URL to be adjusted [1] - The rendered page hides where to place the webhook secret. [2] [1]...
The documentation on [breadcrumbs](https://develop.sentry.dev/sdk/event-payloads/breadcrumbs/) is missing device events like the ones which are used by Android. See for example: - https://github.com/getsentry/sentry-java/blob/main/sentry-android-core/src/main/java/io/sentry/android/core/PhoneStateBreadcrumbsIntegration.java#L95-L97 - https://github.com/getsentry/sentry-java/blob/main/sentry-android-core/src/main/java/io/sentry/android/core/AppComponentsBreadcrumbsIntegration.java#L75-L96
The docs on transaction mention that "Transactions are Events enriched with Span data". Does it imply that all event fields are valid and make sense on transaction? For example, would...