Skip to content

Commit 7955a28

Browse files
authored
[v5] Address CVE March 2026 (#8372)
This PR addresses remaining CVEs. Part I was #8335
1 parent bd0b1e1 commit 7955a28

10 files changed

Lines changed: 2319 additions & 2683 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "patch",
3+
"comment": "Update angular dependencies",
4+
"packageName": "@azure/msal-angular",
5+
"email": "joarroyo@microsoft.com",
6+
"dependentChangeType": "patch"
7+
}

lib/msal-angular/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@
3838
]
3939
},
4040
"devDependencies": {
41-
"@angular-devkit/build-angular": "^19.2.18",
42-
"@angular/animations": "^19.2.18",
43-
"@angular/cli": "^19.2.18",
44-
"@angular/common": "^19.2.18",
45-
"@angular/compiler": "^19.2.18",
46-
"@angular/compiler-cli": "^19.2.18",
47-
"@angular/core": "^19.2.18",
48-
"@angular/forms": "^19.2.18",
49-
"@angular/platform-browser": "^19.2.18",
50-
"@angular/platform-browser-dynamic": "^19.2.18",
51-
"@angular/router": "^19.2.18",
41+
"@angular-devkit/build-angular": "^19.2.19",
42+
"@angular/animations": "^19.2.19",
43+
"@angular/cli": "^19.2.19",
44+
"@angular/common": "^19.2.19",
45+
"@angular/compiler": "^19.2.19",
46+
"@angular/compiler-cli": "^19.2.19",
47+
"@angular/core": "^19.2.19",
48+
"@angular/forms": "^19.2.19",
49+
"@angular/platform-browser": "^19.2.19",
50+
"@angular/platform-browser-dynamic": "^19.2.19",
51+
"@angular/router": "^19.2.19",
5252
"@azure/msal-browser": "^5.4.0",
5353
"@types/jasmine": "~3.6.0",
5454
"@types/jasminewd2": "~2.0.3",
@@ -73,4 +73,4 @@
7373
"@azure/msal-browser": "^5.4.0",
7474
"rxjs": "^7.0.0"
7575
}
76-
}
76+
}

lib/msal-common/apiReview/msal-common.api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,7 @@ export function buildAccountToCache(cacheStorage: CacheManager, authority: Autho
999999
// Warning: (ae-missing-release-tag) "buildClientConfiguration" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
10001000
//
10011001
// @public
1002-
export function buildClientConfiguration({ authOptions: userAuthOptions, systemOptions: userSystemOptions, loggerOptions: userLoggerOption, storageInterface: storageImplementation, networkInterface: networkImplementation, cryptoInterface: cryptoImplementation, clientCredentials: clientCredentials, libraryInfo: libraryInfo, telemetry: telemetry, serverTelemetryManager: serverTelemetryManager, persistencePlugin: persistencePlugin, serializableCache: serializableCache, }: ClientConfiguration): CommonClientConfiguration;
1002+
export function buildClientConfiguration(input: ClientConfiguration): CommonClientConfiguration;
10031003

10041004
// Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
10051005
// Warning: (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
@@ -2227,7 +2227,7 @@ function generateAccountId(accountEntity: AccountEntity): string;
22272227
// Warning: (ae-missing-release-tag) "generateAppMetadataKey" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
22282228
//
22292229
// @public
2230-
function generateAppMetadataKey({ environment, clientId, }: AppMetadataEntity): string;
2230+
function generateAppMetadataKey(input: AppMetadataEntity): string;
22312231

22322232
// Warning: (ae-missing-release-tag) "generateAuthorityMetadataExpiresAt" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
22332233
//

lib/msal-react/apiReview/msal-react.api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export type AccountIdentifiers = Partial<Pick<AccountInfo, "homeAccountId" | "lo
3030
// Warning: (ae-missing-release-tag) "AuthenticatedTemplate" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
3131
//
3232
// @public
33-
export function AuthenticatedTemplate({ username, homeAccountId, localAccountId, children, }: AuthenticatedTemplateProps): React_2.ReactElement | null;
33+
export function AuthenticatedTemplate(input: AuthenticatedTemplateProps): React_2.ReactElement | null;
3434

3535
// Warning: (ae-missing-release-tag) "AuthenticatedTemplateProps" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
3636
//
@@ -75,7 +75,7 @@ export type MsalAuthenticationResult = {
7575
// Warning: (ae-missing-release-tag) "MsalAuthenticationTemplate" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
7676
//
7777
// @public
78-
export function MsalAuthenticationTemplate({ interactionType, username, homeAccountId, localAccountId, authenticationRequest, loadingComponent: LoadingComponent, errorComponent: ErrorComponent, children, }: MsalAuthenticationProps): React_2.ReactElement | null;
78+
export function MsalAuthenticationTemplate(input: MsalAuthenticationProps): React_2.ReactElement | null;
7979

8080
// Warning: (ae-missing-release-tag) "MsalConsumer" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
8181
//
@@ -90,7 +90,7 @@ export const MsalContext: React_3.Context<IMsalContext>;
9090
// Warning: (ae-missing-release-tag) "MsalProvider" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
9191
//
9292
// @public
93-
export function MsalProvider({ instance, children, }: MsalProviderProps): React_2.ReactElement;
93+
export function MsalProvider(input: MsalProviderProps): React_2.ReactElement;
9494

9595
// Warning: (ae-missing-release-tag) "MsalProviderProps" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
9696
//
@@ -118,7 +118,7 @@ export type Subtract<T extends T1, T1 extends object> = Pick<T, SetComplement<ke
118118
// Warning: (ae-missing-release-tag) "UnauthenticatedTemplate" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
119119
//
120120
// @public
121-
export function UnauthenticatedTemplate({ username, homeAccountId, localAccountId, children, }: UnauthenticatedTemplateProps): React_2.ReactElement | null;
121+
export function UnauthenticatedTemplate(input: UnauthenticatedTemplateProps): React_2.ReactElement | null;
122122

123123
// Warning: (ae-missing-release-tag) "UnauthenticatedTemplateProps" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
124124
//

0 commit comments

Comments
 (0)