-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Move nagivateToLoginRequestUrl
out of Configuration
#7855
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
Merged
Merged
+213
−130
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Suppress false-positive CodeQL finding in NavigationClient
Updates the remove access token cache logic to perform its steps synchronously. This is a pre-requisite for additional work to handle cache quota errors in the near future. This requires pushing the POP key removal (which is asynchronous) to the background, we will track failures around this in telemetry instead of throwing an error developers can't resolve anyway.
This PR contains the changelogs and version bumps for the MSAL.js 3P releases. Co-authored-by: MSAL.js Release Automation <msaljsbuilds@microsoft.com> Co-authored-by: Sameera Gajjarapu <sameera.gajjarapu@microsoft.com>
Bumped to new minor version
1. Updated all msal-node samples to use dotenv 16.5.0 2. Moved dotenv from devDependencies to dependencies in several samples. This change reflects that dotenv is a runtime requirement for these samples since they need to load environment variables during actual execution, not just during development. 3. Run `npm i` in each directory to update package-lock.json files 4. Merged in child: #7824
…7820) Updated code and README
…Machine Learning Managed Identity (#7616) Fixes #7609 If the Machine Learning System Assigned Managed Identity is being used, the "clientid" request parameter will be set to the DEFAULT_IDENTITY_CLIENT_ID environment variable instead of being omitted in the network request. I manually tested this on two different AML clusters - one with SAMI enabled and the other with UAMI enabled.
tnorling
reviewed
Jun 20, 2025
tnorling
reviewed
Jun 24, 2025
tnorling
reviewed
Jun 24, 2025
tnorling
previously approved these changes
Jun 24, 2025
Co-authored-by: Thomas Norling <thomas.norling@microsoft.com>
sameerag
reviewed
Jun 24, 2025
sameerag
reviewed
Jun 24, 2025
tnorling
previously approved these changes
Jun 24, 2025
sameerag
previously approved these changes
Jun 24, 2025
tnorling
approved these changes
Jun 25, 2025
lalimasharda
approved these changes
Jun 25, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
documentation
Related to documentation.
msal-angular
Related to @azure/msal-angular package
msal-browser
Related to msal-browser package
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Moves
navigateToLoginRequestUrl
out ofConfiguration.BrowserAuthOptions
and intoRedirectRequest
and as an optional parameter inhandleRedirectPromise
.