feat: add sentry_update_context#1835
Merged
Merged
Conversation
sentry_merge_contextsentry_merge_context
jpnurmi
reviewed
Jul 1, 2026
- does the same but different, updating overwrites values of keys that collide & adds the new passed-in-value's keys to the context too. (before, it would NOT overwrite, only add)
sentry_merge_contextsentry_update_context
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adding this for downstream SDKs, so they can avoid fully overwriting pre-set context from our native SDK init.
Popped up as part of https://github.com/getsentry/sentry-xbox/pull/151 where the unreal integration test calls AddDeviceContext which does a plain
set_by_key, making us losedevice.Xcontext set by the console SDK.Now with
sentry_update_contextwe only overwrite existing keys' values, and also add the new keys from the passed-in object to the context. For example