Skip to content

Commit a21cee1

Browse files
authored
Merge branch 'msal-v5' into msal-v5
2 parents 3bdac70 + 24f3394 commit a21cee1

File tree

25 files changed

+20959
-21976
lines changed

25 files changed

+20959
-21976
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "minor",
3+
"comment": "Update rxjs dependency #7726",
4+
"packageName": "@azure/msal-angular",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "patch",
3+
"comment": "Fix v4 merge errors #7726",
4+
"packageName": "@azure/msal-browser",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "patch",
3+
"comment": "Fix v4 merge errors #7726",
4+
"packageName": "@azure/msal-common",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}

lib/msal-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"karma-jasmine-html-reporter": "^2.0.0",
6363
"ng-packagr": "^19.2.0",
6464
"prettier": "2.8.7",
65-
"rxjs": "^7.8.1",
65+
"rxjs": "^7.8.2",
6666
"ts-node": "~8.3.0",
6767
"tslib": "^2.0.0",
6868
"typescript": "~5.8.2",

lib/msal-angular/tsconfig.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@
1818
"paths": {
1919
"msal-angular": [
2020
"dist/msal-angular"
21-
]
21+
],
22+
"rxjs": [
23+
"node_modules/rxjs"
24+
],
25+
"rxjs/*": [
26+
"node_modules/rxjs/*"
27+
],
2228
},
2329
"useDefineForClassFields": false
2430
}

lib/msal-browser/src/config/Configuration.ts

-5
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,6 @@ export type CacheOptions = {
123123
* @deprecated This option is deprecated and will be removed in the next major version.
124124
*/
125125
storeAuthStateInCookie?: boolean;
126-
/**
127-
* If set, MSAL sets the "Secure" flag on cookies so they can only be sent over HTTPS. By default this flag is set to true.
128-
* @deprecated This option will be removed in the next major version and all cookies set will include the Secure attribute.
129-
*/
130-
secureCookies?: boolean;
131126
/**
132127
* If set, MSAL will attempt to migrate cache entries from older versions on initialization. By default this flag is set to true if cacheLocation is localStorage, otherwise false.
133128
* @deprecated This option is deprecated and will be removed in the next major version.

lib/msal-common/src/cache/entities/AccountEntity.ts

+1-20
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,7 @@
33
* Licensed under the MIT License.
44
*/
55

6-
import { CacheAccountType, Separators } from "../../utils/Constants.js";
7-
import type { Authority } from "../../authority/Authority.js";
8-
import { ICrypto } from "../../crypto/ICrypto.js";
9-
import { ClientInfo, buildClientInfo } from "../../account/ClientInfo.js";
10-
import {
11-
AccountInfo,
12-
TenantProfile,
13-
buildTenantProfile,
14-
} from "../../account/AccountInfo.js";
15-
import {
16-
createClientAuthError,
17-
ClientAuthErrorCodes,
18-
} from "../../error/ClientAuthError.js";
19-
import { AuthorityType } from "../../authority/AuthorityType.js";
20-
import { Logger } from "../../logger/Logger.js";
21-
import {
22-
TokenClaims,
23-
getTenantIdFromIdTokenClaims,
24-
} from "../../account/TokenClaims.js";
25-
import { ProtocolMode } from "../../authority/ProtocolMode.js";
6+
import { TenantProfile } from "../../account/AccountInfo.js";
267

278
/**
289
* Type that defines required and optional parameters for an Account field (based on universal cache schema implemented by all MSALs).

0 commit comments

Comments
 (0)