Skip to content

Commit 217df59

Browse files
author
Prithvi Kanherkar
authored
Merge pull request #1632 from AzureAD/common-beta-2-release
MSAL Common beta.2 release
2 parents 2f9362f + a8b3191 commit 217df59

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

lib/msal-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,6 @@
9191
"typescript": "^3.8.3"
9292
},
9393
"dependencies": {
94-
"@azure/msal-common": "1.0.0-beta.1"
94+
"@azure/msal-common": "1.0.0-beta.2"
9595
}
9696
}

lib/msal-common/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.0.0-beta.2
2+
- Fixed an issue where types were not being exported from the correct location (#1613)
3+
- Fixed an issue where system configuration values were being overwritten with `undefined` (#1631)
4+
- Added support for sub-error codes from the eSTS service (#1533)
5+
16
# 1.0.0-beta.1
27
- Fixed an issue where types are not exported correctly (#1517)
38
- Logger class is now exported (#1486)

lib/msal-common/package-lock.json

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-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
1212
},
13-
"version": "1.0.0-beta.1",
13+
"version": "1.0.0-beta.2",
1414
"description": "Microsoft Authentication Library for js",
1515
"keywords": [
1616
"implicit",

lib/msal-common/test/server/ServerCodeRequestParameters.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ describe("ServerCodeRequestParameters.ts Class Unit Tests", () => {
8484
false
8585
);
8686
loginRequest.scopes.push(Constants.OFFLINE_ACCESS_SCOPE);
87-
expect(codeRequestParams.xClientVer).to.be.eq("1.0.0-beta.1");
87+
expect(codeRequestParams.xClientVer).to.be.eq("1.0.0-beta.2");
8888
expect(codeRequestParams.xClientSku).to.be.eq(Constants.LIBRARY_NAME);
8989
expect(codeRequestParams.clientId).to.be.eq(TEST_CONFIG.MSAL_CLIENT_ID);
9090
expect(codeRequestParams.scopes.asArray()).to.be.deep.eq(loginRequest.scopes);

lib/msal-common/test/server/ServerTokenRequestParameters.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe("ServerTokenRequestParameters.ts Class Unit Tests", () => {
8585
null
8686
);
8787
tokenRequest.scopes.push(Constants.OFFLINE_ACCESS_SCOPE);
88-
expect(tokenRequestParams.xClientVer).to.be.eq("1.0.0-beta.1");
88+
expect(tokenRequestParams.xClientVer).to.be.eq("1.0.0-beta.2");
8989
expect(tokenRequestParams.xClientSku).to.be.eq(Constants.LIBRARY_NAME);
9090
expect(tokenRequestParams.correlationId).to.be.eq(corrId);
9191
expect(tokenRequestParams.clientId).to.be.eq(TEST_CONFIG.MSAL_CLIENT_ID);

lib/msal-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"typescript": "^3.7.5"
7070
},
7171
"dependencies": {
72-
"@azure/msal-common": "1.0.0-beta.1",
72+
"@azure/msal-common": "1.0.0-beta.2",
7373
"axios": "^0.19.2",
7474
"debug": "^4.1.1"
7575
}

0 commit comments

Comments
 (0)