Skip to content
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

[SDK-2759] Re-scoping cookies and transactions to client ID #796

Merged
merged 13 commits into from
Sep 15, 2021

Conversation

stevehobbsdev
Copy link
Contributor

Description

This PR makes some tweaks to the way cookies are handled with the intention of supporting using multiple instances of the client within the same app. Tweaks have also been made to the cache manager so that only cache items for a particular client ID can be cleared.

Mostly this involves scoping of:

  • transaction cookie
  • is.authenticated cookie for checkSession. This is automatically migrated if the old cookie is found on the system

I've added an E2E test that tries to cover this scenario as well as a new playground page that the tests run against.

References

SDK-2759

Testing

  • This change adds test coverage for new/changed/fixed functionality

Checklist

  • I have added documentation for new/changed functionality in this PR or in auth0.com/docs
  • All active GitHub checks for tests, formatting, and security are passing
  • The correct base branch is being used, if not master

@stevehobbsdev stevehobbsdev added CH: Changed PR is changing something review:medium Medium review labels Sep 15, 2021
@lgtm-com
Copy link
Contributor

lgtm-com bot commented Sep 15, 2021

This pull request introduces 1 alert when merging 402cbbc into e0c69fa - view on LGTM.com

new alerts:

  • 1 for Unused variable, import, function or class

Comment on lines +78 to +83
await keys
.filter(key => (clientId ? key.includes(clientId) : true))
.reduce(async (memo, key) => {
await memo;
await this.cache.remove(key);
}, Promise.resolve());
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Previously these removals were not being awaited properly, this reducer ensures that deletions are happening in sequence.

@stevehobbsdev stevehobbsdev marked this pull request as ready for review September 15, 2021 12:08
@stevehobbsdev stevehobbsdev requested a review from a team as a code owner September 15, 2021 12:08
frederikprijck
frederikprijck previously approved these changes Sep 15, 2021
@stevehobbsdev stevehobbsdev merged commit 1de6427 into master Sep 15, 2021
@stevehobbsdev stevehobbsdev deleted the sdk-2759/multiple-clients branch September 15, 2021 13:41
@stevehobbsdev stevehobbsdev mentioned this pull request Sep 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CH: Changed PR is changing something review:medium Medium review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants