Platform
iOS
Installed
Swift Package Manager
Version
8.0.0-beta4
Steps to Reproduce
- Set a context key with data and remove it again.
SentrySDK.configureScope { scope in
scope.setContext(value: ["key": "value"], key: "context-key")
scope.setContext(value: ["key-2": "value-2"], key: "context-key-2")
scope.removeContext(key: "context-key-2")
}
- Launch application and trigger a hard crash. This was done with the swift sample app.
- Launch application again in order for the crash to sync to the backend.
Same behaviour for set/remove tag.
Expected Result
Only data for context-key is present.
Actual Result
Data for context-key-2 is still present.

Platform
iOS
Installed
Swift Package Manager
Version
8.0.0-beta4
Steps to Reproduce
Same behaviour for set/remove tag.
Expected Result
Only data for
context-keyis present.Actual Result
Data for
context-key-2is still present.