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

msal-node bug fix: acquireTokenSilent doesn't look in persistent cache #7469

Draft
wants to merge 29 commits into
base: dev
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
82ea00d
Initial commit
shylasummers Dec 12, 2024
ebaf42e
Merge branch 'dev' of https://github.com/AzureAD/microsoft-authentica…
shylasummers Dec 12, 2024
1b0b809
Change files
shylasummers Dec 12, 2024
6c1cf1f
e2e test
shylasummers Dec 16, 2024
00d5bbd
added e2e tests for other aad suites
shylasummers Dec 16, 2024
35ad4db
public api changes
shylasummers Dec 16, 2024
bf0dd1d
reorganizing ATS
shylasummers Dec 16, 2024
9d5b8df
msal-common public api changes
shylasummers Dec 16, 2024
952bbdc
msal-node public api changes
shylasummers Dec 16, 2024
c4ede7d
test updates
shylasummers Dec 17, 2024
b4761ad
format fix
shylasummers Dec 17, 2024
a8880d5
msal-node public api changes
shylasummers Dec 17, 2024
d3cbf03
api changes
shylasummers Dec 17, 2024
ddd8322
public api changes
shylasummers Dec 17, 2024
d7cf12b
api extractor
tnorling Dec 18, 2024
b85f29e
lint
shylasummers Dec 18, 2024
f9d1dfb
private acquireCachedToken
shylasummers Dec 18, 2024
2aab25e
public api changes
shylasummers Dec 18, 2024
b062267
format fix
shylasummers Dec 18, 2024
734f4b2
test fixes
shylasummers Dec 18, 2024
a64cd46
format fix
shylasummers Dec 18, 2024
fc84a8f
merge dev
shylasummers Jan 2, 2025
cc0578e
Merge branch 'dev' into cacheLookupFix
shylasummers Jan 3, 2025
1da3cd6
b2c tests
shylasummers Jan 7, 2025
37ddb3a
Merge branch 'cacheLookupFix' of https://github.com/AzureAD/microsoft…
shylasummers Jan 7, 2025
584a6db
build fixes
shylasummers Jan 8, 2025
988325a
removed test (already tested in silentflowclient)
shylasummers Jan 8, 2025
a771329
removed unnecessary import
shylasummers Jan 8, 2025
ee263b5
Merge branch 'dev' into cacheLookupFix
shylasummers Jan 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
msal-node public api changes
  • Loading branch information
shylasummers committed Dec 16, 2024
commit 952bbdc4afce7733dd9bd36d79b633267e65f41a
2 changes: 1 addition & 1 deletion lib/msal-node/apiReview/msal-node.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ export type SilentFlowRequest = Partial<Omit<CommonSilentFlowRequest, "account"
// @public
export class TokenCache implements ISerializableTokenCache, ITokenCache {
constructor(storage: NodeStorage, logger: Logger, cachePlugin?: ICachePlugin);
cacheSnapshot: string;
public cacheSnapshot: string;
deserialize(cache: string): void;
getAccountByHomeId(homeAccountId: string): Promise<AccountInfo | null>;
getAccountByLocalId(localAccountId: string): Promise<AccountInfo | null>;
Expand Down
Loading