Skip to content

Commit

Permalink
Merge branch 'dev' into client_assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie-Microsoft committed Apr 23, 2024
2 parents a1a91eb + 23df98f commit a4dad0d
Show file tree
Hide file tree
Showing 106 changed files with 7,792 additions and 421 deletions.
1 change: 1 addition & 0 deletions .github/workflows/msal-angular-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- 'angular16-sample-app'
- 'angular-b2c-sample-app'
- 'angular-standalone-sample'
- 'angular17-standalone-sample'

name: ${{ matrix.sample }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typedoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: npm run doc:generate

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./ref
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "Instrument scenario id for tracking custom user prompts #7043",
"packageName": "@azure/msal-browser",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "minor",
"comment": "Capture and instrument cache errors #7021",
"comment": "Instrument account type #7049",
"packageName": "@azure/msal-browser",
"email": "[email protected]",
"dependentChangeType": "patch"
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "patch",
"comment": "Skip login_hint opaque claim if domainHint param is set #7008",
"type": "minor",
"comment": "Instrument scenario id for tracking custom user prompts #7043",
"packageName": "@azure/msal-common",
"email": "[email protected]",
"dependentChangeType": "patch"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "minor",
"comment": "Capture and instrument cache errors #7021",
"comment": "Instrument account type #7049",
"packageName": "@azure/msal-common",
"email": "[email protected]",
"dependentChangeType": "patch"
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "Instrument server error number #7036",
"packageName": "@azure/msal-common",
"email": "[email protected]",
"dependentChangeType": "patch"
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

35 changes: 35 additions & 0 deletions extensions/msal-node-extensions/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
{
"name": "@azure/msal-node-extensions",
"entries": [
{
"date": "Thu, 11 Apr 2024 21:46:57 GMT",
"version": "1.0.15",
"tag": "@azure/msal-node-extensions_v1.0.15",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-node-extensions",
"commit": "1549ef7bde5a8ffe0c15024bba5169030a422a64",
"comment": "Add install script to workaround regression in npm version 10.4.0"
},
{
"author": "beachball",
"package": "@azure/msal-node-extensions",
"comment": "Bump @azure/msal-common to v14.9.0",
"commit": "not available"
},
{
"author": "beachball",
"package": "@azure/msal-node-extensions",
"comment": "Bump eslint-config-msal to v0.0.0",
"commit": "not available"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-node-extensions",
"commit": "1549ef7bde5a8ffe0c15024bba5169030a422a64",
"comment": "Migrate ADO Pipelines to OneBranch #6992"
}
]
}
},
{
"date": "Wed, 27 Mar 2024 18:41:17 GMT",
"version": "1.0.14",
Expand Down
12 changes: 11 additions & 1 deletion extensions/msal-node-extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
# Change Log - @azure/msal-node-extensions

This log was last generated on Wed, 27 Mar 2024 18:41:17 GMT and should not be manually modified.
This log was last generated on Thu, 11 Apr 2024 21:46:57 GMT and should not be manually modified.

<!-- Start content -->

## 1.0.15

Thu, 11 Apr 2024 21:46:57 GMT

### Patches

- Add install script to workaround regression in npm version 10.4.0 ([email protected])
- Bump @azure/msal-common to v14.9.0
- Bump eslint-config-msal to v0.0.0

## 1.0.14

Wed, 27 Mar 2024 18:41:17 GMT
Expand Down
4 changes: 2 additions & 2 deletions extensions/msal-node-extensions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/msal-node-extensions",
"version": "1.0.14",
"version": "1.0.15",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
Expand Down Expand Up @@ -58,7 +58,7 @@
]
},
"dependencies": {
"@azure/msal-common": "14.8.1",
"@azure/msal-common": "14.9.0",
"@azure/msal-node-runtime": "^0.13.6-alpha.0",
"keytar": "^7.8.0"
},
Expand Down
2 changes: 1 addition & 1 deletion extensions/msal-node-extensions/src/packageMetadata.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/* eslint-disable header/header */
export const name = "@azure/msal-node-extensions";
export const version = "1.0.14";
export const version = "1.0.15";
29 changes: 29 additions & 0 deletions lib/msal-angular/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
{
"name": "@azure/msal-angular",
"entries": [
{
"date": "Thu, 11 Apr 2024 21:46:57 GMT",
"version": "3.0.16",
"tag": "@azure/msal-angular_v3.0.16",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "1549ef7bde5a8ffe0c15024bba5169030a422a64",
"comment": "Migrate ADO Pipelines to OneBranch #6992"
}
],
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v3.13.0",
"commit": "not available"
},
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump eslint-config-msal to v0.0.0",
"commit": "not available"
}
]
}
},
{
"date": "Wed, 27 Mar 2024 18:41:17 GMT",
"version": "3.0.15",
Expand Down
11 changes: 10 additions & 1 deletion lib/msal-angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# Change Log - @azure/msal-angular

This log was last generated on Wed, 27 Mar 2024 18:41:17 GMT and should not be manually modified.
This log was last generated on Thu, 11 Apr 2024 21:46:57 GMT and should not be manually modified.

<!-- Start content -->

## 3.0.16

Thu, 11 Apr 2024 21:46:57 GMT

### Patches

- Bump @azure/msal-browser to v3.13.0
- Bump eslint-config-msal to v0.0.0

## 3.0.15

Wed, 27 Mar 2024 18:41:17 GMT
Expand Down
6 changes: 4 additions & 2 deletions lib/msal-angular/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,19 @@ Please see [here](https://github.com/AzureAD/microsoft-authentication-library-fo

### What versions of Angular are supported?

MSAL Angular v3 currently supports Angular 15 and 16.
MSAL Angular v3 currently supports Angular 15, 16, and 17.

MSAL Angular v2 supports Angular 9, 10, 11, 12, 13 and 14.

### Does `@azure/msal-angular` support Server Side Rendering?

Yes, server side rendering is supported through Angular universal. See our doc [here](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-angular/docs/angular-universal.md) for more information.

**Note:** MSAL Angular currently does not officially support Angular 17's server-side and prerendering capabilities. Using SSR with MSAL Angular may break your app.

### Does `@azure/msal-angular` support standalone components?

MSAL Angular v3 supports standalone components. Please see our [redirect documentation](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-angular/docs/redirects.md) for more information on using standalone components with redirects and our [standalone sample](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/samples/msal-angular-v3-samples/angular-standalone-sample) for usage details.
MSAL Angular v3 supports standalone components. Please see our [redirect documentation](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/lib/msal-angular/docs/redirects.md) for more information on using standalone components with redirects and our [standalone sample](https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/samples/msal-angular-v3-samples/angular-standalone-sample) and [Angular 17 Standalone Sample](https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/samples/msal-angular-v3-samples/angular17-standalone-sample)for usage details.

### Can `@azure/msal-angular` be used with Internet Explorer?

Expand Down
3 changes: 2 additions & 1 deletion lib/msal-angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ At a minimum, `@azure/msal-angular` will follow the [support schedule of the mai

| MSAL Angular version | MSAL support status | Supported Angular versions |
| -------------------- | ------------------- | -------------------------- |
| MSAL Angular v3 | Active development | 15, 16 |
| MSAL Angular v3 | Active development | 15, 16, 17 |
| MSAL Angular v2 | In maintenance | 9, 10, 11, 12, 13, 14 |
| MSAL Angular v1 | In maintenance | 6, 7, 8, 9 |
| MSAL Angular v0 | Out of support | 4, 5 |
Expand Down Expand Up @@ -93,6 +93,7 @@ Documentation specifically for MSAL Angular v1 can be found [here](https://githu
- [Angular v16](https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/samples/msal-angular-v3-samples/angular16-sample-app)
- [Angular v16 B2C Sample](https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/samples/msal-angular-v3-samples/angular-b2c-sample-app)
- [Angular Standalone Sample](https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/samples/msal-angular-v3-samples/angular-standalone-sample)
- [Angular v17 Standalone Sample](https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/samples/msal-angular-v3-samples/angular17-standalone-sample)

### MSAL Angular v2 Samples

Expand Down
4 changes: 4 additions & 0 deletions lib/msal-angular/docs/angular-universal.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Angular Universal is minimally supported in `@azure/msal-angular`. As `@azure/ms

Please see instructions from the [Angular docs](https://angular.io/guide/universal) on how to install Angular Universal with an existing application, and for more information on [browser-only global objects](https://angular.io/guide/universal#working-around-the-browser-apis).

**Note:** MSAL Angular currently does not officially support Angular 17's server-side and prerendering capabilities. Using SSR with MSAL Angular may break your app.

## Using MSAL Angular with Angular Universal

To use `@azure/msal-angular` with Angular Universal, make the following adjustments:

1. Remove references to browser-only objects. Our [Angular 15 sample app](https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/samples/msal-angular-v3-samples/angular15-sample-app) has comments next to relevant lines that should be removed to render server-side. Removing these lines will not affect the sample app if using Angular Universal.
Expand Down
Loading

0 comments on commit a4dad0d

Please sign in to comment.