-
-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scope::setUser merges differently than before #1175
Comments
I guess I found another BC break: |
I don't know why the deprecation message said that the new data from |
I'd say merging is a fair approach. This isn't a unified behavior though, I guess it can depend on the context. Sometimes makes sense to override the whole thing, others to just augment. Here the SDK tries to add the data it's aware, but doesn't override the whole Here it returns a complete As part of the contract (user factory, returns a whole user). |
According to the documentation, it is, even though all SDKs I checked implements this method wrongly (they all simply overwrite the existing value with the new one):
And it makes sense to me that no merge is done, because the method is called |
Yeah |
This issue has gone three weeks without activity. In another week, I will close it. But! If you comment or otherwise update it, I will reset the clock, and if you label it "A weed is but an unloved flower." ― Ella Wheeler Wilcox 🥀 |
On 2.5.1 I was using this code:
and it worked as expected. The User in the scope had the
id
andip
set.When upgrading to 3.1.2 I noticed the BC Break:
Fine, because I was already using the
$merge = true
argument anyway.But surprise, it doesn't work as expected.
This is the new
setUser
method:sentry-php/src/State/Scope.php
Lines 185 to 202 in d727bd1
it converts the input array to an
UserDataBag
and then calls themerge
method on theUserDataBag
.So on the first call to
setUser
, it would createUserDataBag::createFromArray(['id' => 123]);
and store it.On the second call to
setUser
it createsUserDataBag::createFromArray(['ip' => '12.23.23.23']);
and then notices it already has aUserDataBag
and effectively callsUserDataBag::createFromArray(['id' => 123])->merge(UserDataBag::createFromArray(['ip' => '12.23.23.23']);
But the
merge
method will overwrite everything, even when it's null:sentry-php/src/UserDataBag.php
Lines 222 to 231 in d727bd1
This was the old merge method in 2.5.1:
sentry-php/src/Context/Context.php
Lines 83 to 86 in 62ef344
I don't know how to proceed now. As there is no way to retrieve the current user from the scope.
EDIT: For now I will refactor my code to only call
setUser
once, with bothid
andip
. But I think this is something that could also bite others.The text was updated successfully, but these errors were encountered: