@azure/msal-node-extensions 1.0.0-alpha.14 → 1.0.0-alpha.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { IPersistence } from "./IPersistence";
2
- import { IPersistenceConfiguration } from "../persistence/IPersistenceConfiguration";
2
+ import { IPersistenceConfiguration } from "./IPersistenceConfiguration";
3
3
  export declare class PersistenceCreator {
4
4
  static createPersistence(config: IPersistenceConfiguration): Promise<IPersistence>;
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/msal-node-extensions",
3
- "version": "1.0.0-alpha.14",
3
+ "version": "1.0.0-alpha.17",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
@@ -30,6 +30,7 @@
30
30
  "build:common": "cd ../../lib/msal-common && npm run build",
31
31
  "build:all": "npm run build:common && npm run build",
32
32
  "test": "tsdx test",
33
+ "test:coverage": "tsdx test --coverage",
33
34
  "lint": "cd ../../ && npm run lint:node:extensions",
34
35
  "lint:fix": "npm run lint -- -- --fix",
35
36
  "link:localDeps": "npx lerna bootstrap --scope @azure/msal-common --scope @azure/msal-node-extensions",
@@ -49,14 +50,14 @@
49
50
  ]
50
51
  },
51
52
  "dependencies": {
52
- "@azure/msal-common": "^6.0.0",
53
+ "@azure/msal-common": "^6.3.0",
53
54
  "bindings": "git+https://github.com/samuelkubai/node-bindings.git#v1.6.0",
54
- "keytar": "^7.6.0",
55
+ "keytar": "^7.8.0",
55
56
  "nan": "^2.13.2"
56
57
  },
57
58
  "devDependencies": {
58
59
  "husky": "^4.2.5",
59
- "node-gyp": "^7.0.0",
60
+ "node-gyp": "^9.0.0",
60
61
  "tsdx": "^0.14.1",
61
62
  "tslib": "^2.0.0",
62
63
  "typescript": "^3.9.3"
@@ -7,11 +7,11 @@ export interface DpapiBindings{
7
7
  protectData(dataToEncrypt: Uint8Array, optionalEntropy: Uint8Array, scope: string): Uint8Array
8
8
  unprotectData(encryptData: Uint8Array, optionalEntropy: Uint8Array, scope: string): Uint8Array
9
9
  }
10
- /* eslint-disable-next-line @typescript-eslint/no-var-requires, no-var */
10
+ /* eslint-disable-next-line @typescript-eslint/no-var-requires, no-var, import/no-commonjs */
11
11
  export var Dpapi: DpapiBindings = require("bindings")({
12
12
  bindings: "dpapi",
13
13
  userDefinedTries: [
14
- ['module_root', 'node_modules', '@azure', 'msal-node-extensions', 'build', 'Release', 'bindings'],
14
+ ["module_root", "node_modules", "@azure", "msal-node-extensions", "build", "Release", "bindings"],
15
15
  ]
16
16
  });
17
17
  export default Dpapi;
@@ -3,15 +3,15 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
 
6
- import { FilePersistenceWithDataProtection } from "../persistence/FilePersistenceWithDataProtection";
7
- import { LibSecretPersistence } from "../persistence/LibSecretPersistence";
8
- import { KeychainPersistence } from "../persistence/KeychainPersistence";
9
- import { DataProtectionScope } from "../persistence/DataProtectionScope";
6
+ import { FilePersistenceWithDataProtection } from "./FilePersistenceWithDataProtection";
7
+ import { LibSecretPersistence } from "./LibSecretPersistence";
8
+ import { KeychainPersistence } from "./KeychainPersistence";
9
+ import { DataProtectionScope } from "./DataProtectionScope";
10
10
  import { Environment } from "../utils/Environment";
11
11
  import { IPersistence } from "./IPersistence";
12
12
  import { FilePersistence } from "./FilePersistence";
13
13
  import { PersistenceError } from "../error/PersistenceError";
14
- import { IPersistenceConfiguration } from "../persistence/IPersistenceConfiguration";
14
+ import { IPersistenceConfiguration } from "./IPersistenceConfiguration";
15
15
 
16
16
  export class PersistenceCreator {
17
17
  static async createPersistence(config: IPersistenceConfiguration): Promise<IPersistence> {
@@ -20,7 +20,7 @@ export class PersistenceCreator {
20
20
  // On Windows, uses a DPAPI encrypted file
21
21
  if (Environment.isWindowsPlatform()) {
22
22
  if (!config.cachePath || !config.dataProtectionScope) {
23
- throw PersistenceError.createPersistenceNotValidatedError(`Cache path and/or data protection scope not provided for the FilePersistenceWithDataProtection cache plugin`);
23
+ throw PersistenceError.createPersistenceNotValidatedError("Cache path and/or data protection scope not provided for the FilePersistenceWithDataProtection cache plugin");
24
24
  }
25
25
 
26
26
  peristence = await FilePersistenceWithDataProtection.create(config.cachePath, DataProtectionScope.CurrentUser);
@@ -29,7 +29,7 @@ export class PersistenceCreator {
29
29
  // On Mac, uses keychain.
30
30
  else if (Environment.isMacPlatform()) {
31
31
  if (!config.cachePath || !config.serviceName || !config.accountName) {
32
- throw PersistenceError.createPersistenceNotValidatedError(`Cache path, service name and/or account name not provided for the KeychainPersistence cache plugin`);
32
+ throw PersistenceError.createPersistenceNotValidatedError("Cache path, service name and/or account name not provided for the KeychainPersistence cache plugin");
33
33
  }
34
34
 
35
35
  peristence = await KeychainPersistence.create(config.cachePath, config.serviceName, config.accountName);
@@ -38,7 +38,7 @@ export class PersistenceCreator {
38
38
  // On Linux, uses libsecret to store to secret service. Libsecret has to be installed.
39
39
  else if (Environment.isLinuxPlatform()) {
40
40
  if (!config.cachePath || !config.serviceName || !config.accountName) {
41
- throw PersistenceError.createPersistenceNotValidatedError(`Cache path, service name and/or account name not provided for the LibSecretPersistence cache plugin`);
41
+ throw PersistenceError.createPersistenceNotValidatedError("Cache path, service name and/or account name not provided for the LibSecretPersistence cache plugin");
42
42
  }
43
43
 
44
44
  peristence = await LibSecretPersistence.create(config.cachePath, config.serviceName, config.accountName);
@@ -54,7 +54,7 @@ export class PersistenceCreator {
54
54
  if (!isPersistenceVerified) {
55
55
  if (Environment.isLinuxPlatform() && config.usePlaintextFileOnLinux) {
56
56
  if (!config.cachePath) {
57
- throw PersistenceError.createPersistenceNotValidatedError(`Cache path not provided for the FilePersistence cache plugin`);
57
+ throw PersistenceError.createPersistenceNotValidatedError("Cache path not provided for the FilePersistence cache plugin");
58
58
  }
59
59
 
60
60
  peristence = await FilePersistence.create(config.cachePath);
@@ -59,4 +59,4 @@ export enum Platform {
59
59
  WINDOWS = "win32",
60
60
  LINUX = "linux",
61
61
  MACOS = "darwin"
62
- };
62
+ }
@@ -9,23 +9,23 @@ import { PersistenceError } from "../error/PersistenceError";
9
9
  import { StringUtils } from "@azure/msal-common";
10
10
 
11
11
  export class Environment {
12
- static get homeEnvVar() {
12
+ static get homeEnvVar(): string {
13
13
  return this.getEnvironmentVariable(Constants.ENVIRONMENT.HOME);
14
14
  }
15
15
 
16
- static get lognameEnvVar() {
16
+ static get lognameEnvVar(): string {
17
17
  return this.getEnvironmentVariable(Constants.ENVIRONMENT.LOGNAME);
18
18
  }
19
19
 
20
- static get userEnvVar() {
20
+ static get userEnvVar(): string {
21
21
  return this.getEnvironmentVariable(Constants.ENVIRONMENT.USER);
22
22
  }
23
23
 
24
- static get lnameEnvVar() {
24
+ static get lnameEnvVar(): string {
25
25
  return this.getEnvironmentVariable(Constants.ENVIRONMENT.LNAME);
26
26
  }
27
27
 
28
- static get usernameEnvVar() {
28
+ static get usernameEnvVar(): string {
29
29
  return this.getEnvironmentVariable(Constants.ENVIRONMENT.USERNAME);
30
30
  }
31
31
 
@@ -50,13 +50,13 @@ export class Environment {
50
50
  }
51
51
 
52
52
  static isLinuxRootUser(): boolean {
53
- return process.getuid() == Constants.LINUX_ROOT_USER_GUID;
53
+ return process.getuid() === Constants.LINUX_ROOT_USER_GUID;
54
54
  }
55
55
 
56
56
  static getUserRootDirectory(): string {
57
57
  return !this.isWindowsPlatform ?
58
58
  this.getUserHomeDirOnUnix() :
59
- this.getUserHomeDirOnWindows()
59
+ this.getUserHomeDirOnWindows();
60
60
  }
61
61
 
62
62
  static getUserHomeDirOnWindows(): string {
@@ -65,7 +65,7 @@ export class Environment {
65
65
 
66
66
  static getUserHomeDirOnUnix(): string | null {
67
67
  if (this.isWindowsPlatform()) {
68
- throw PersistenceError.createNotSupportedError("Getting the user home directory for unix is not supported in windows")
68
+ throw PersistenceError.createNotSupportedError("Getting the user home directory for unix is not supported in windows");
69
69
  }
70
70
 
71
71
  if (!StringUtils.isEmpty(this.homeEnvVar)) {
@@ -92,7 +92,7 @@ export class Environment {
92
92
  return !StringUtils.isEmpty(username) ? path.join("/home", username) : null;
93
93
  }
94
94
  } else {
95
- throw PersistenceError.createNotSupportedError("Getting the user home directory for unix is not supported in windows")
95
+ throw PersistenceError.createNotSupportedError("Getting the user home directory for unix is not supported in windows");
96
96
  }
97
97
 
98
98
  }
package/CHANGELOG.json DELETED
@@ -1,284 +0,0 @@
1
- {
2
- "name": "@azure/msal-node-extensions",
3
- "entries": [
4
- {
5
- "date": "Tue, 04 Jan 2022 00:20:29 GMT",
6
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.14",
7
- "version": "1.0.0-alpha.14",
8
- "comments": {
9
- "none": [
10
- {
11
- "author": "hemoral@microsoft.com",
12
- "package": "@azure/msal-node-extensions",
13
- "commit": "60e2cfc0e9daa3c24e994617b4ac42aef6880b74",
14
- "comment": "Add support for requested claims in silent token acquisition #4296"
15
- }
16
- ],
17
- "prerelease": [
18
- {
19
- "author": "beachball",
20
- "package": "@azure/msal-node-extensions",
21
- "comment": "Bump @azure/msal-common to v6.0.0",
22
- "commit": "bd9b1af91c278926ab2e6943cf90817a7ac4957b"
23
- }
24
- ]
25
- }
26
- },
27
- {
28
- "date": "Tue, 07 Dec 2021 00:17:01 GMT",
29
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.13",
30
- "version": "1.0.0-alpha.13",
31
- "comments": {
32
- "none": [
33
- {
34
- "author": "thomas.norling@microsoft.com",
35
- "package": "@azure/msal-node-extensions",
36
- "commit": "02dbd9172368bfc69e4a47f01a3ada0b96345c81",
37
- "comment": "Package.json updates"
38
- },
39
- {
40
- "author": "kamausamuel11@gmail.com",
41
- "package": "@azure/msal-node-extensions",
42
- "commit": "8259de7520d2940d290332cd03c5b8babeb0966e",
43
- "comment": "deps: run an audit fix for msal-node-extensions"
44
- }
45
- ],
46
- "prerelease": [
47
- {
48
- "author": "thomas.norling@microsoft.com",
49
- "package": "@azure/msal-node-extensions",
50
- "commit": "e020f3511ddc25be0c04a60362698da0112b8c0c",
51
- "comment": "Use https to install bindings dependency #4234"
52
- },
53
- {
54
- "author": "beachball",
55
- "package": "@azure/msal-node-extensions",
56
- "comment": "Bump @azure/msal-common to v5.2.0",
57
- "commit": "d7c209f7aa3ae4380a77a31ff1319fbf7201ae45"
58
- }
59
- ]
60
- }
61
- },
62
- {
63
- "date": "Mon, 01 Nov 2021 23:53:22 GMT",
64
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.12",
65
- "version": "1.0.0-alpha.12",
66
- "comments": {
67
- "prerelease": [
68
- {
69
- "author": "beachball",
70
- "package": "@azure/msal-node-extensions",
71
- "comment": "Bump @azure/msal-common to v5.1.0",
72
- "commit": "6ac29855822ce1ba9531a68bcaa6f37443ef16c0"
73
- }
74
- ]
75
- }
76
- },
77
- {
78
- "date": "Mon, 04 Oct 2021 23:12:35 GMT",
79
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.11",
80
- "version": "1.0.0-alpha.11",
81
- "comments": {
82
- "prerelease": [
83
- {
84
- "author": "kamausamuel11@gmail.com",
85
- "package": "@azure/msal-node-extensions",
86
- "comment": "fix: integrate forked bindings package",
87
- "commit": "d03c16f09026bac36048241da4635e73d32a6eed"
88
- },
89
- {
90
- "author": "beachball",
91
- "package": "@azure/msal-node-extensions",
92
- "comment": "Bump @azure/msal-common to v5.0.1",
93
- "commit": "d03c16f09026bac36048241da4635e73d32a6eed"
94
- }
95
- ],
96
- "none": [
97
- {
98
- "author": "thomas.norling@microsoft.com",
99
- "package": "@azure/msal-node-extensions",
100
- "comment": "Update beachball config",
101
- "commit": "d03c16f09026bac36048241da4635e73d32a6eed"
102
- }
103
- ]
104
- }
105
- },
106
- {
107
- "date": "Thu, 09 Sep 2021 23:58:01 GMT",
108
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.10",
109
- "version": "1.0.0-alpha.10",
110
- "comments": {
111
- "prerelease": [
112
- {
113
- "comment": "Upgrade msal-common to v5 for Node extensions",
114
- "author": "janutter@microsoft.com",
115
- "commit": "ad3eeeb85b92035a1389e49a6cc182c3085a1ba1",
116
- "package": "@azure/msal-node-extensions"
117
- }
118
- ]
119
- }
120
- },
121
- {
122
- "date": "Thu, 22 Jul 2021 22:50:22 GMT",
123
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.9",
124
- "version": "1.0.0-alpha.9",
125
- "comments": {
126
- "prerelease": [
127
- {
128
- "comment": "feat: add the persistence creator (#3859)",
129
- "author": "samuelkamau@microsoft.com",
130
- "commit": "a916871108c93904a62e7729edb0e2287719a532",
131
- "package": "@azure/msal-node-extensions"
132
- },
133
- {
134
- "comment": "fix: bump up the msal-common version",
135
- "author": "samuelkamau@microsoft.com",
136
- "commit": "2bf61e9e1ed3697352269537f7e24ebbac4d926b",
137
- "package": "@azure/msal-node-extensions"
138
- }
139
- ]
140
- }
141
- },
142
- {
143
- "date": "Tue, 29 Jun 2021 00:28:30 GMT",
144
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.8",
145
- "version": "1.0.0-alpha.8",
146
- "comments": {
147
- "prerelease": [
148
- {
149
- "comment": "verifyPersistence returns the right value on failure(#3787)",
150
- "author": "sameera.gajjarapu@microsoft.com",
151
- "commit": "dc8086acc0ccc91e066e886adffd5895911d33f0",
152
- "package": "@azure/msal-node-extensions"
153
- }
154
- ]
155
- }
156
- },
157
- {
158
- "date": "Wed, 23 Jun 2021 00:01:49 GMT",
159
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.7",
160
- "version": "1.0.0-alpha.7",
161
- "comments": {
162
- "prerelease": [
163
- {
164
- "comment": "Add logs to test beachball",
165
- "author": "sameera.gajjarapu@microsoft.com",
166
- "commit": "cc28e43b3dcdb45f2469b14cf52a223f7d59b0d9",
167
- "package": "@azure/msal-node-extensions"
168
- }
169
- ]
170
- }
171
- },
172
- {
173
- "date": "Fri, 05 Mar 2021 21:26:46 GMT",
174
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.6",
175
- "version": "1.0.0-alpha.6",
176
- "comments": {
177
- "prerelease": [
178
- {
179
- "comment": "Fix lint in extensions to trigger version bump",
180
- "author": "janutter@microsoft.com",
181
- "commit": "4901e740f2687447f1eac537dac71ef243ce957a",
182
- "package": "@azure/msal-node-extensions"
183
- }
184
- ]
185
- }
186
- },
187
- {
188
- "date": "Wed, 03 Mar 2021 22:13:23 GMT",
189
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.5",
190
- "version": "1.0.0-alpha.5",
191
- "comments": {
192
- "prerelease": [
193
- {
194
- "comment": "Fix npm audit warnings",
195
- "author": "janutter@microsoft.com",
196
- "commit": "751026cdaa24dd370c50ad714bf0b1d54c71fbde",
197
- "package": "@azure/msal-node-extensions"
198
- }
199
- ]
200
- }
201
- },
202
- {
203
- "date": "Wed, 14 Oct 2020 23:45:07 GMT",
204
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.4",
205
- "version": "1.0.0-alpha.4",
206
- "comments": {
207
- "prerelease": [
208
- {
209
- "comment": "Update PersistenceCachePlugin (#2348)",
210
- "author": "sameera.gajjarapu@microsoft.com",
211
- "commit": "26723689e35918c59bd6ce58ba8cb886118676c6",
212
- "package": "@azure/msal-node-extensions"
213
- }
214
- ]
215
- }
216
- },
217
- {
218
- "date": "Wed, 30 Sep 2020 17:58:33 GMT",
219
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.3",
220
- "version": "1.0.0-alpha.3",
221
- "comments": {
222
- "none": [
223
- {
224
- "comment": "Updating the pre-release version(#2342)",
225
- "author": "sameera.gajjarapu@microsoft.com",
226
- "commit": "bc3f324edd6cf83937c31f73d3aefc6dbaf5f748",
227
- "package": "@azure/msal-node-extensions"
228
- },
229
- {
230
- "comment": "Update changelog versions for msal-node and extensions (#2336)",
231
- "author": "hemoral@microsoft.com",
232
- "commit": "323875a725e0d5049ff6742a9ca5160c2d4b7d0d",
233
- "package": "@azure/msal-node-extensions"
234
- }
235
- ]
236
- }
237
- },
238
- {
239
- "date": "Wed, 23 Sep 2020 21:13:48 GMT",
240
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.3",
241
- "version": "1.0.0-alpha.3",
242
- "comments": {
243
- "prerelease": [
244
- {
245
- "comment": "Update error message (#2265)",
246
- "author": "sagonzal@microsoft.com",
247
- "commit": "81d044a2a4640ebfa8b3bd80cb30cc2c602bbef1",
248
- "package": "@azure/msal-node-extensions"
249
- }
250
- ]
251
- }
252
- },
253
- {
254
- "date": "Thu, 17 Sep 2020 23:16:22 GMT",
255
- "tag": "@azure/msal-node-extensions_v1.0.0",
256
- "version": "1.0.0-alpha.2",
257
- "comments": {
258
- "none": [
259
- {
260
- "comment": "Update msal-node-extensionst to use central eslint configuration",
261
- "author": "janutter@microsoft.com",
262
- "commit": "fc49c6f16b3f7a62a67d249107fc484272133305",
263
- "package": "@azure/msal-node-extensions"
264
- }
265
- ]
266
- }
267
- },
268
- {
269
- "date": "Thu, 13 Aug 2020 02:20:48 GMT",
270
- "tag": "@azure/msal-node-extensions_v1.0.0-alpha.2",
271
- "version": "1.0.0-alpha.2",
272
- "comments": {
273
- "none": [
274
- {
275
- "comment": "updating files for automated release steps",
276
- "author": "prkanher@microsoft.com",
277
- "commit": "791409e7c9975218ae2b3a91e6a6a190b59474b1",
278
- "package": "@azure/msal-node-extensions"
279
- }
280
- ]
281
- }
282
- }
283
- ]
284
- }
package/CHANGELOG.md DELETED
@@ -1,119 +0,0 @@
1
- # Change Log - @azure/msal-node-extensions
2
-
3
- This log was last generated on Tue, 04 Jan 2022 00:20:29 GMT and should not be manually modified.
4
-
5
- <!-- Start content -->
6
-
7
- ## 1.0.0-alpha.14
8
-
9
- Tue, 04 Jan 2022 00:20:29 GMT
10
-
11
- ### Changes
12
-
13
- - Bump @azure/msal-common to v6.0.0
14
-
15
- ## 1.0.0-alpha.13
16
-
17
- Tue, 07 Dec 2021 00:17:01 GMT
18
-
19
- ### Changes
20
-
21
- - Use https to install bindings dependency #4234 (thomas.norling@microsoft.com)
22
- - Bump @azure/msal-common to v5.2.0
23
-
24
- ## 1.0.0-alpha.12
25
-
26
- Mon, 01 Nov 2021 23:53:22 GMT
27
-
28
- ### Changes
29
-
30
- - Bump @azure/msal-common to v5.1.0
31
-
32
- ## 1.0.0-alpha.11
33
-
34
- Mon, 04 Oct 2021 23:12:35 GMT
35
-
36
- ### Changes
37
-
38
- - fix: integrate forked bindings package (kamausamuel11@gmail.com)
39
- - Bump @azure/msal-common to v5.0.1
40
-
41
- ## 1.0.0-alpha.10
42
-
43
- Thu, 09 Sep 2021 23:58:01 GMT
44
-
45
- ### Changes
46
-
47
- - Upgrade msal-common to v5 for Node extensions (janutter@microsoft.com)
48
-
49
- ## 1.0.0-alpha.9
50
-
51
- Thu, 22 Jul 2021 22:50:22 GMT
52
-
53
- ### Changes
54
-
55
- - feat: add the persistence creator (#3859) (samuelkamau@microsoft.com)
56
- - fix: bump up the msal-common version (samuelkamau@microsoft.com)
57
-
58
- ## 1.0.0-alpha.8
59
-
60
- Tue, 29 Jun 2021 00:28:30 GMT
61
-
62
- ### Changes
63
-
64
- - verifyPersistence returns the right value on failure(#3787) (sameera.gajjarapu@microsoft.com)
65
-
66
- ## 1.0.0-alpha.7
67
-
68
- Wed, 23 Jun 2021 00:01:49 GMT
69
-
70
- ### Changes
71
-
72
- - Add logs to test beachball (sameera.gajjarapu@microsoft.com)
73
-
74
- ## 1.0.0-alpha.6
75
-
76
- Fri, 05 Mar 2021 21:26:46 GMT
77
-
78
- ### Changes
79
-
80
- - Fix lint in extensions to trigger version bump (janutter@microsoft.com)
81
-
82
- ## 1.0.0-alpha.5
83
-
84
- Wed, 03 Mar 2021 22:13:23 GMT
85
-
86
- ### Changes
87
-
88
- - Fix npm audit warnings (janutter@microsoft.com)
89
-
90
- ## 1.0.0-alpha.4
91
-
92
- Wed, 14 Oct 2020 23:45:07 GMT
93
-
94
- ### Changes
95
-
96
- - Update PersistenceCachePlugin (#2348) (sameera.gajjarapu@microsoft.com)
97
-
98
- ## 1.0.0-alpha.3
99
-
100
- Wed, 23 Sep 2020 21:13:48 GMT
101
-
102
- ### Changes
103
-
104
- - Update error message (#2265) (sagonzal@microsoft.com)
105
-
106
- # 1.0.0-alpha.2
107
- - Fix issue where binding.gyp was not being uploaded to npm
108
-
109
- # 1.0.0-alpha.1
110
- - Increment @azure/msal-common version to 1.1.0
111
-
112
- # 1.0.0-alpha.0
113
-
114
- - Extensions 1: Sets directory structure, adds Windows DPAPI Node addon (#1830)
115
- - Extensions 2: Add cross process lock (#1831)
116
- - Extensions 3: Add cache persistence plugin, persistence on Windows, Linux, and Mac (#1832)
117
- - Extensions 4: Add sample (#1834)
118
- - Extensions 5: Add documentation, add logger (#1835)
119
- - Extensions 6: Add tests (#1849)