Socket
Socket
Sign inDemoInstall

@azure/msal-common

Package Overview
Dependencies
Maintainers
3
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/msal-common - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

CHANGELOG.json

16

changelog.md

@@ -0,1 +1,17 @@

# Change Log - @azure/msal-common
This log was last generated on Thu, 13 Aug 2020 02:20:48 GMT and should not be manually modified.
<!-- Start content -->
## 1.1.1
Thu, 13 Aug 2020 02:20:48 GMT
### Patches
- knownAuthorities enhancements (#2106) (thomas.l.norling@gmail.com)
- Update typing of IdTokenClaims (#2105) (hemoral@microsoft.com)
- Fix hash parsing issue from #2118 and back button cache clearing (#2129) (prkanher@microsoft.com)
# 1.1.0

@@ -2,0 +18,0 @@ ## Breaking Changes

2

dist/src/account/IdTokenClaims.d.ts

@@ -14,3 +14,3 @@ /**

nonce?: string;
exp?: string;
exp?: number;
home_oid?: string;

@@ -17,0 +17,0 @@ sid?: string;

@@ -1,2 +0,1 @@

import { StringDict } from "../utils/MsalTypes";
import { AccountInfo } from "../account/AccountInfo";

@@ -24,3 +23,3 @@ /**

idToken: string;
idTokenClaims: StringDict;
idTokenClaims: object;
accessToken: string;

@@ -27,0 +26,0 @@ fromCache: boolean;

@@ -41,5 +41,11 @@ import { ServerAuthorizationCodeResponse } from "../response/ServerAuthorizationCodeResponse";

getUrlComponents(): IUri;
static getDomainFromUrl(url: string): string;
/**
* Parses hash string from given string. Returns empty string if no hash symbol is found.
* @param hashString
*/
static parseHash(hashString: string): string;
static constructAuthorityUriFromObject(urlObject: IUri): UrlString;
/**
* Returns deserialized portion of URL hash
* Returns URL hash as server auth code response object.
*/

@@ -50,3 +56,3 @@ static getDeserializedHash(hash: string): ServerAuthorizationCodeResponse;

*/
static hashContainsKnownProperties(url: string): boolean;
static hashContainsKnownProperties(hash: string): boolean;
}
{
"name": "@azure/msal-common",
"author": {
"name": "Microsoft",
"email": "nugetaad@microsoft.com",
"url": "https://www.microsoft.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"version": "1.1.0",
"description": "Microsoft Authentication Library for js",
"keywords": [
"implicit",
"authorization code",
"PKCE",
"js",
"AAD",
"msal",
"oauth"
],
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/src/index.d.ts",
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"engines": {
"node": ">=0.8.0"
},
"directories": {
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"clean": "shx rm -rf dist lib",
"clean:coverage": "rimraf ../../.nyc_output/*",
"doc": "npm run doc:generate && npm run doc:deploy",
"doc:generate": "typedoc --mode modules --excludePrivate --excludeProtected --excludeNotExported --out ./ref ./src/ --gitRevision dev",
"doc:deploy": "gh-pages -d ref -a -e ref/msal-common",
"lint": "eslint src --ext .ts",
"test": "mocha",
"test:coverage": "nyc --reporter=text mocha --exit",
"test:coverage:only": "npm run clean:coverage && npm run test:coverage",
"build:modules": "rollup -c",
"build:modules:watch": "rollup -cw",
"build": "npm run clean && npm run lint && npm run build:modules",
"prepack": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@babel/register": "^7.7.0",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"@rollup/plugin-json": "^4.0.0",
"@types/chai": "^4.2.5",
"@types/chai-as-promised": "^7.1.2",
"@types/debug": "^4.1.5",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-plugin-istanbul": "^5.2.0",
"beachball": "^1.32.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.5.1",
"gh-pages": "^3.1.0",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rimraf": "^3.0.2",
"rollup": "^1.24.0",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-plugin-uglify": "^6.0.4",
"shx": "^0.3.2",
"sinon": "^7.5.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typedoc": "^0.17.8",
"typescript": "^3.7.5"
},
"dependencies": {
"debug": "^4.1.1"
}
"name": "@azure/msal-common",
"author": {
"name": "Microsoft",
"email": "nugetaad@microsoft.com",
"url": "https://www.microsoft.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"version": "1.1.1",
"description": "Microsoft Authentication Library for js",
"keywords": [
"implicit",
"authorization code",
"PKCE",
"js",
"AAD",
"msal",
"oauth"
],
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/src/index.d.ts",
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"engines": {
"node": ">=0.8.0"
},
"directories": {
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"clean": "shx rm -rf dist lib",
"clean:coverage": "rimraf ../../.nyc_output/*",
"doc": "npm run doc:generate && npm run doc:deploy",
"doc:generate": "typedoc --mode modules --excludePrivate --excludeProtected --excludeNotExported --out ./ref ./src/ --gitRevision dev",
"doc:deploy": "gh-pages -d ref -a -e ref/msal-common",
"lint": "eslint src --ext .ts",
"test": "mocha",
"test:coverage": "nyc --reporter=text mocha --exit",
"test:coverage:only": "npm run clean:coverage && npm run test:coverage",
"build:modules": "rollup -c",
"build:modules:watch": "rollup -cw",
"build": "npm run clean && npm run lint && npm run build:modules",
"prepack": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@babel/register": "^7.7.0",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"@rollup/plugin-json": "^4.0.0",
"@types/chai": "^4.2.5",
"@types/chai-as-promised": "^7.1.2",
"@types/debug": "^4.1.5",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-plugin-istanbul": "^5.2.0",
"beachball": "^1.32.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.5.1",
"gh-pages": "^3.1.0",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"rimraf": "^3.0.2",
"rollup": "^1.24.0",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-plugin-uglify": "^6.0.4",
"shx": "^0.3.2",
"sinon": "^7.5.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typedoc": "^0.17.8",
"typescript": "^3.7.5"
},
"dependencies": {
"debug": "^4.1.1"
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc