Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AzureAD/microsoft-authentication-library-for-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d233b2045582f4cf9148b5a857502b5a269684f1
Choose a base ref
...
head repository: AzureAD/microsoft-authentication-library-for-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3ff9f0af4449162b7a124975bafda484b8747afd
Choose a head ref
  • 16 commits
  • 40 files changed
  • 4 contributors

Commits on Jul 3, 2023

  1. Copy the full SHA
    06804de View commit details
  2. Copy the full SHA
    f83f1ef View commit details
  3. Copy the full SHA
    c48c96e View commit details
  4. Add claimsBasedCachingEnabled flag to Browser Configuration with defa…

    …ult value true to avoid breaking changes
    hectormmg committed Jul 3, 2023
    Copy the full SHA
    8bd1c14 View commit details
  5. Copy the full SHA
    5eee808 View commit details
  6. Fix standard interaction client failing tests by adding claimsBasedCa…

    …chingEnabled config to ClientApplication
    hectormmg committed Jul 3, 2023
    Copy the full SHA
    5cdae6d View commit details
  7. Copy the full SHA
    574f602 View commit details
  8. Copy the full SHA
    0e99e21 View commit details

Commits on Jul 6, 2023

  1. July 2023 Post Release [LTS] (#6203)

    This PR updates the package-lock.json and CDN files in recently released
    LTS packages
    hectormmg authored Jul 6, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    57646b1 View commit details

Commits on Jul 7, 2023

  1. update jest types

    tnorling committed Jul 7, 2023
    Copy the full SHA
    110c4a5 View commit details

Commits on Jul 13, 2023

  1. Copy the full SHA
    513231e View commit details
  2. Update @types/node in common for LTS branch (#6236)

    Add @types/node for correct dependency resolution
    sameerag authored Jul 13, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ac6a41f View commit details

Commits on Jul 24, 2023

  1. Address semver CVE-2022-25883 and other moderate severity vulnerabi…

    …lities (#6259)
    
    - Address `semver` CVE-2022-25883 and other moderate severity
    vulnerabilities.
    - Pin lerna to v6 for msal-node-e2e.yml.
    konstantin-msft authored Jul 24, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a7e37cd View commit details

Commits on Aug 7, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5906844 View commit details
  2. Multiple msal instances support for SSO (#6217)

    When apps run multiple msal instances, attempt to SSO is not made for
    certain instances as there is not pre-fetched RT in the cache. Though
    this can be circumvented by setting appropriate cache policy or calling
    `ssoSilent` instead of `acquireTokenSilent`, certain apps cannot afford
    the perf hit needed to determine the right API.
    This fix will have MSAL JS attempt `sso` when RT is not found in the
    cache.
    sameerag authored Aug 7, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    43ddd07 View commit details
  3. August 2023 Pre-release [LTS] (#6294)

    This PR:
    - Bumps package versions for LTS library major versions
    - Removes changefiles that have been merged into changelogs
    hectormmg authored Aug 7, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3ff9f0a View commit details
Showing with 11,929 additions and 9,688 deletions.
  1. +0 −1 .github/workflows/msal-angular-e2e.yml
  2. +1 −1 .github/workflows/msal-node-e2e.yml
  3. +7 −0 change/@azure-msal-node-extensions-e5a4eabf-32b7-456b-80e2-cb3720b745e2.json
  4. +7 −0 change/@azure-node-token-validation-c57333a9-c79e-4484-b33c-d4ea90b3f2e6.json
  5. +132 −132 extensions/msal-node-extensions/package-lock.json
  6. +23 −0 lib/msal-angular/CHANGELOG.json
  7. +9 −1 lib/msal-angular/CHANGELOG.md
  8. +126 −126 lib/msal-angular/package-lock.json
  9. +3 −3 lib/msal-angular/package.json
  10. +1 −1 lib/msal-angular/src/packageMetadata.ts
  11. +29 −0 lib/msal-browser/CHANGELOG.json
  12. +10 −1 lib/msal-browser/CHANGELOG.md
  13. +0 −1 lib/msal-browser/FAQ.md
  14. +1 −1 lib/msal-browser/README.md
  15. +3 −1 lib/msal-browser/docs/cdn-usage.md
  16. +923 −989 lib/msal-browser/package-lock.json
  17. +3 −3 lib/msal-browser/package.json
  18. +3 −1 lib/msal-browser/src/app/PublicClientApplication.ts
  19. +1 −1 lib/msal-browser/src/config/Configuration.ts
  20. +1 −1 lib/msal-browser/src/packageMetadata.ts
  21. +37 −0 lib/msal-browser/test/app/PublicClientApplication.spec.ts
  22. +23 −0 lib/msal-common/CHANGELOG.json
  23. +9 −1 lib/msal-common/CHANGELOG.md
  24. +191 −87 lib/msal-common/package-lock.json
  25. +3 −2 lib/msal-common/package.json
  26. +1 −1 lib/msal-common/src/packageMetadata.ts
  27. +23 −0 lib/msal-node/CHANGELOG.json
  28. +9 −1 lib/msal-node/CHANGELOG.md
  29. +298 −218 lib/msal-node/package-lock.json
  30. +2 −2 lib/msal-node/package.json
  31. +1 −1 lib/msal-node/src/packageMetadata.ts
  32. +23 −0 lib/msal-react/CHANGELOG.json
  33. +9 −1 lib/msal-react/CHANGELOG.md
  34. +270 −118 lib/msal-react/package-lock.json
  35. +3 −3 lib/msal-react/package.json
  36. +1 −1 lib/msal-react/src/packageMetadata.ts
  37. +49 −49 lib/node-token-validation/package-lock.json
  38. +9,575 −7,866 package-lock.json
  39. +6 −6 release-scripts/package-lock.json
  40. +113 −67 samples/package-lock.json
1 change: 0 additions & 1 deletion .github/workflows/msal-angular-e2e.yml
Original file line number Diff line number Diff line change
@@ -35,7 +35,6 @@ jobs:
fail-fast: false
matrix:
sample:
- 'angular9-v2-sample-app'
- 'angular10-sample-app'
- 'angular11-sample-app'
- 'angular12-sample-app'
2 changes: 1 addition & 1 deletion .github/workflows/msal-node-e2e.yml
Original file line number Diff line number Diff line change
@@ -65,7 +65,7 @@ jobs:
run: npm ci --ignore-scripts

- name: Link local packages
run: npx lerna --scope @azure/msal-node --scope @azure/msal-common bootstrap
run: npx lerna@6 --scope @azure/msal-node --scope @azure/msal-common bootstrap

- name: Build Package
working-directory: samples/msal-node-samples
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Address `semver` CVE-2022-25883 and other moderate severity vulnerabilities #9657",
"packageName": "@azure/msal-node-extensions",
"email": "kshabelko@microsoft.com",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"comment": "Address `semver` CVE-2022-25883 and other moderate severity vulnerabilities #9657",
"type": "none",
"packageName": "@azure/node-token-validation",
"email": "kshabelko@microsoft.com",
"dependentChangeType": "none"
}
Loading