Skip to content

Commit cc4944d

Browse files
authored
MSAL angular AOT fix.
* Update config params in Readme * Na/release changes (AzureAD#372) * Clean up of Readmes for msal core, angularjs and angular - Added contributing guide - Added advanced topics in readmes * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * fixed public apis visibility * fixed hashbang url issue * fixed test cases * renamed anonymous endpoint to unprotected resource * removing package.lock.json * updated msal-core version to 0.2.0 * Updated readme * Deleting package.lock.json * updated msal-angular sample * Removed code coverage from msal-core and fixed aot compilation for msal-angular * Added state parameter in login request * issue AzureAD#262 state parameter in login request * added test cases * removed unused code * updated test cases * updated release version for msal-core * Msal-angular AOT fix. * Added state parameter in login request for msal-core. * Update config params in Readme * Na/release changes (AzureAD#372) * Clean up of Readmes for msal core, angularjs and angular - Added contributing guide - Added advanced topics in readmes * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * fixed public apis visibility * fixed hashbang url issue * fixed test cases * renamed anonymous endpoint to unprotected resource * removing package.lock.json * updated msal-core version to 0.2.0 * Updated readme * Deleting package.lock.json * updated msal-angular sample * Removed code coverage from msal-core and fixed aot compilation for msal-angular * Added state parameter in login request * issue AzureAD#262 state parameter in login request * added test cases * removed unused code * updated test cases * updated release version for msal-core * changes for msal-angular and msal-angularjs 0.1.1 release
1 parent bceca40 commit cc4944d

21 files changed

+161
-108
lines changed

lib/msal-angular/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.1.1
2+
* Fixed AOT issue https://github.com/AzureAD/microsoft-authentication-library-for-js/issues/386
3+
4+
* Upgraded to latest msal-core version 0.2.1
5+
6+
17
# 0.1.0
28
Preview Release
39

lib/msal-angular/dist/broadcast.service.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/msal-angular/dist/msal-angular.js

Lines changed: 56 additions & 38 deletions
Large diffs are not rendered by default.

lib/msal-angular/dist/msal-angular.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/msal-angular/dist/msal-angular.min.js

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/msal-angular/dist/msal-angular.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/msal-angular/dist/msal-guard.service.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ export declare class MsalGuard implements CanActivate {
1515
private broadcastService;
1616
constructor(config: MsalConfig, authService: MsalService, router: Router, activatedRoute: ActivatedRoute, location: Location, platformLocation: PlatformLocation, broadcastService: BroadcastService);
1717
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean | Promise<boolean>;
18-
private getBaseUrl;
18+
private getBaseUrl();
1919
isEmpty: (str: any) => boolean;
2020
}

lib/msal-angular/dist/msal-guard.service.js

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/msal-angular/dist/msal-guard.service.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/msal-angular/dist/msal.interceptor.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/msal-angular/dist/msal.module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/msal-angular/dist/msal.service.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ export declare class MsalService extends UserAgentApplication {
2222
_renewActive: boolean;
2323
constructor(config: MsalConfig, router: Router, broadcastService: BroadcastService);
2424
updateDataFromCache(scopes: string[]): void;
25-
private processHash;
26-
private processRedirectCallBack;
27-
private isUnprotectedResource;
28-
private isEmpty;
29-
private authCallback;
25+
private processHash(hash);
26+
private processRedirectCallBack(hash);
27+
private isUnprotectedResource(url);
28+
private isEmpty(str);
29+
private authCallback(errorDesc, _token, error, _tokenType);
3030
protected clearCache(): void;
3131
getLogger(): Logger;
3232
getCacheStorage(): any;

lib/msal-angular/dist/msal.service.js

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)