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
Possible issues with cookies that may break in future browser versions.
Description
We have some cookies that are not secure, and are very simply values that we drop in JavaScript.
I saw this in Firefox, perhaps we need to write out the cookie differently.
Some cookies are misusing the recommended “SameSite“ attribute 2
Cookie “fusionauth.timezone” will be soon rejected because it has the “SameSite” attribute set to “None” or an invalid value, without the “secure” attribute. To know more about the “SameSite“ attribute, read https://developer.mozilla.org/docs/Web/HTTP/Headers/Set-Cookie/SameSite
We may need to set the Secure flag based upon the schema we detect in the browser if we aren't already. We should look at fusionauth.timezone or any other cookie we may drop in JavaScript.
The text was updated successfully, but these errors were encountered:
Possible issues with cookies that may break in future browser versions.
Description
We have some cookies that are not secure, and are very simply values that we drop in JavaScript.
I saw this in Firefox, perhaps we need to write out the cookie differently.
We may need to set the
Secure
flag based upon the schema we detect in the browser if we aren't already. We should look atfusionauth.timezone
or any other cookie we may drop in JavaScript.The text was updated successfully, but these errors were encountered: