-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Support for Partitioned cookie attribute #2787
Comments
Hi, @bachkilan. Thanks for the report. I believe that we can add a Are you interested in submitting a PR that adds the new setter? |
And I add the same comment here: |
@marcusdacoregio Did you guys forget to add the auto configuration? Or was that intentionally skipped? I'd have expected that setting server:
servlet:
session:
cookie:
same-site: 'none'
partitioned: 'true' # <--- ignored?
secure: 'true' # <-- coincidentally also not ignored? but based on the code it looks like nothing reads it. |
Hi @miskr-instructure. Application properties are a feature of Spring Boot. Please open an enhancement request on their issue tracker. |
^ Hopefully will work with config after spring-projects/spring-boot#42316 |
Expected Behavior
able to add Partitioned cookie attribute for spring session in DefaultCookieSerializer
Current Behavior
no field available for partitioned
Context
This is relevant for webapps embedded in IFrames across domains, typically those which already have configured "SameSite=None" cookie attribute: starting 2024, Google/Chrome will start phasing out third-party cookies, see https://developers.google.com/privacy-sandbox/3pcd
we need to have this attribute set to have our site working embedded in chrome.
The text was updated successfully, but these errors were encountered: