@azure/msal-node-extensions 1.0.0-alpha.11 → 1.0.0-alpha.15
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.
- package/CHANGELOG.json +325 -211
- package/CHANGELOG.md +128 -94
- package/LICENSE +21 -21
- package/README.md +192 -192
- package/binding.gyp +29 -29
- package/dist/msal-node-extensions.cjs.development.js +7 -7
- package/dist/msal-node-extensions.cjs.development.js.map +1 -1
- package/dist/msal-node-extensions.cjs.production.min.js +1 -1
- package/dist/msal-node-extensions.cjs.production.min.js.map +1 -1
- package/dist/msal-node-extensions.esm.js +7 -7
- package/dist/msal-node-extensions.esm.js.map +1 -1
- package/dist/persistence/PersistenceCreator.d.ts +1 -1
- package/package.json +65 -59
- package/src/dpapi-addon/Dpapi.ts +17 -17
- package/src/dpapi-addon/dpapi_addon.h +6 -6
- package/src/dpapi-addon/dpapi_not_supported.cpp +19 -19
- package/src/dpapi-addon/dpapi_win.cpp +114 -114
- package/src/dpapi-addon/main.cpp +32 -32
- package/src/error/PersistenceError.ts +101 -101
- package/src/index.ts +16 -16
- package/src/lock/CrossPlatformLock.ts +89 -89
- package/src/lock/CrossPlatformLockOptions.ts +15 -15
- package/src/persistence/BasePersistence.ts +41 -41
- package/src/persistence/DataProtectionScope.ts +20 -20
- package/src/persistence/FilePersistence.ts +140 -140
- package/src/persistence/FilePersistenceWithDataProtection.ts +92 -92
- package/src/persistence/IPersistence.ts +17 -17
- package/src/persistence/IPersistenceConfiguration.ts +14 -14
- package/src/persistence/KeychainPersistence.ts +86 -86
- package/src/persistence/LibSecretPersistence.ts +87 -87
- package/src/persistence/PersistenceCachePlugin.ts +106 -106
- package/src/persistence/PersistenceCreator.ts +73 -73
- package/src/utils/Constants.ts +62 -62
- package/src/utils/Environment.ts +99 -99
package/CHANGELOG.json
CHANGED
|
@@ -1,211 +1,325 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@azure/msal-node-extensions",
|
|
3
|
-
"entries": [
|
|
4
|
-
{
|
|
5
|
-
"date": "
|
|
6
|
-
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.
|
|
7
|
-
"version": "1.0.0-alpha.
|
|
8
|
-
"comments": {
|
|
9
|
-
"
|
|
10
|
-
{
|
|
11
|
-
"author": "kamausamuel11@gmail.com",
|
|
12
|
-
"package": "@azure/msal-node-extensions",
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"author": "
|
|
18
|
-
"package": "@azure/msal-node-extensions",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"comment": "
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"commit": "
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
"
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
"
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
"
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
"
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
"
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
"
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
"
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
"
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
"
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@azure/msal-node-extensions",
|
|
3
|
+
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Tue, 08 Feb 2022 00:41:06 GMT",
|
|
6
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.15",
|
|
7
|
+
"version": "1.0.0-alpha.15",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"author": "kamausamuel11@gmail.com",
|
|
12
|
+
"package": "@azure/msal-node-extensions",
|
|
13
|
+
"commit": "5767008f8ef9f3b05aeba421cc4aa6c6bb616e86",
|
|
14
|
+
"comment": "fix: update package-lock files"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "thomas.norling@microsoft.com",
|
|
18
|
+
"package": "@azure/msal-node-extensions",
|
|
19
|
+
"commit": "19f76b1d9cd2b0f1a4a7e4765c8ee9e7e17f3d59",
|
|
20
|
+
"comment": "Test changes #4383"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "thomas.norling@microsoft.com",
|
|
24
|
+
"package": "@azure/msal-node-extensions",
|
|
25
|
+
"commit": "539ca525a356c0d4a7bd1d4da5271f8a2988f944",
|
|
26
|
+
"comment": "Resolve lint errors #4363"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"prerelease": [
|
|
30
|
+
{
|
|
31
|
+
"author": "thomas.norling@microsoft.com",
|
|
32
|
+
"package": "@azure/msal-node-extensions",
|
|
33
|
+
"commit": "33e9d56dd3e8c1523d70b6e3cff4214035b44e08",
|
|
34
|
+
"comment": "Update keytar dependency to ^7.8.0 #4483"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"author": "beachball",
|
|
38
|
+
"package": "@azure/msal-node-extensions",
|
|
39
|
+
"comment": "Bump @azure/msal-common to v6.1.0",
|
|
40
|
+
"commit": "639253acbc825e1f19ca712bc72dce8da149e3e8"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"date": "Tue, 04 Jan 2022 00:20:29 GMT",
|
|
47
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.14",
|
|
48
|
+
"version": "1.0.0-alpha.14",
|
|
49
|
+
"comments": {
|
|
50
|
+
"none": [
|
|
51
|
+
{
|
|
52
|
+
"author": "hemoral@microsoft.com",
|
|
53
|
+
"package": "@azure/msal-node-extensions",
|
|
54
|
+
"commit": "60e2cfc0e9daa3c24e994617b4ac42aef6880b74",
|
|
55
|
+
"comment": "Add support for requested claims in silent token acquisition #4296"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"prerelease": [
|
|
59
|
+
{
|
|
60
|
+
"author": "beachball",
|
|
61
|
+
"package": "@azure/msal-node-extensions",
|
|
62
|
+
"comment": "Bump @azure/msal-common to v6.0.0",
|
|
63
|
+
"commit": "bd9b1af91c278926ab2e6943cf90817a7ac4957b"
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"date": "Tue, 07 Dec 2021 00:17:01 GMT",
|
|
70
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.13",
|
|
71
|
+
"version": "1.0.0-alpha.13",
|
|
72
|
+
"comments": {
|
|
73
|
+
"none": [
|
|
74
|
+
{
|
|
75
|
+
"author": "thomas.norling@microsoft.com",
|
|
76
|
+
"package": "@azure/msal-node-extensions",
|
|
77
|
+
"commit": "02dbd9172368bfc69e4a47f01a3ada0b96345c81",
|
|
78
|
+
"comment": "Package.json updates"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"author": "kamausamuel11@gmail.com",
|
|
82
|
+
"package": "@azure/msal-node-extensions",
|
|
83
|
+
"commit": "8259de7520d2940d290332cd03c5b8babeb0966e",
|
|
84
|
+
"comment": "deps: run an audit fix for msal-node-extensions"
|
|
85
|
+
}
|
|
86
|
+
],
|
|
87
|
+
"prerelease": [
|
|
88
|
+
{
|
|
89
|
+
"author": "thomas.norling@microsoft.com",
|
|
90
|
+
"package": "@azure/msal-node-extensions",
|
|
91
|
+
"commit": "e020f3511ddc25be0c04a60362698da0112b8c0c",
|
|
92
|
+
"comment": "Use https to install bindings dependency #4234"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"author": "beachball",
|
|
96
|
+
"package": "@azure/msal-node-extensions",
|
|
97
|
+
"comment": "Bump @azure/msal-common to v5.2.0",
|
|
98
|
+
"commit": "d7c209f7aa3ae4380a77a31ff1319fbf7201ae45"
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"date": "Mon, 01 Nov 2021 23:53:22 GMT",
|
|
105
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.12",
|
|
106
|
+
"version": "1.0.0-alpha.12",
|
|
107
|
+
"comments": {
|
|
108
|
+
"prerelease": [
|
|
109
|
+
{
|
|
110
|
+
"author": "beachball",
|
|
111
|
+
"package": "@azure/msal-node-extensions",
|
|
112
|
+
"comment": "Bump @azure/msal-common to v5.1.0",
|
|
113
|
+
"commit": "6ac29855822ce1ba9531a68bcaa6f37443ef16c0"
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"date": "Mon, 04 Oct 2021 23:12:35 GMT",
|
|
120
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.11",
|
|
121
|
+
"version": "1.0.0-alpha.11",
|
|
122
|
+
"comments": {
|
|
123
|
+
"prerelease": [
|
|
124
|
+
{
|
|
125
|
+
"author": "kamausamuel11@gmail.com",
|
|
126
|
+
"package": "@azure/msal-node-extensions",
|
|
127
|
+
"comment": "fix: integrate forked bindings package",
|
|
128
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"author": "beachball",
|
|
132
|
+
"package": "@azure/msal-node-extensions",
|
|
133
|
+
"comment": "Bump @azure/msal-common to v5.0.1",
|
|
134
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"none": [
|
|
138
|
+
{
|
|
139
|
+
"author": "thomas.norling@microsoft.com",
|
|
140
|
+
"package": "@azure/msal-node-extensions",
|
|
141
|
+
"comment": "Update beachball config",
|
|
142
|
+
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"date": "Thu, 09 Sep 2021 23:58:01 GMT",
|
|
149
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.10",
|
|
150
|
+
"version": "1.0.0-alpha.10",
|
|
151
|
+
"comments": {
|
|
152
|
+
"prerelease": [
|
|
153
|
+
{
|
|
154
|
+
"comment": "Upgrade msal-common to v5 for Node extensions",
|
|
155
|
+
"author": "janutter@microsoft.com",
|
|
156
|
+
"commit": "ad3eeeb85b92035a1389e49a6cc182c3085a1ba1",
|
|
157
|
+
"package": "@azure/msal-node-extensions"
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"date": "Thu, 22 Jul 2021 22:50:22 GMT",
|
|
164
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.9",
|
|
165
|
+
"version": "1.0.0-alpha.9",
|
|
166
|
+
"comments": {
|
|
167
|
+
"prerelease": [
|
|
168
|
+
{
|
|
169
|
+
"comment": "feat: add the persistence creator (#3859)",
|
|
170
|
+
"author": "samuelkamau@microsoft.com",
|
|
171
|
+
"commit": "a916871108c93904a62e7729edb0e2287719a532",
|
|
172
|
+
"package": "@azure/msal-node-extensions"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"comment": "fix: bump up the msal-common version",
|
|
176
|
+
"author": "samuelkamau@microsoft.com",
|
|
177
|
+
"commit": "2bf61e9e1ed3697352269537f7e24ebbac4d926b",
|
|
178
|
+
"package": "@azure/msal-node-extensions"
|
|
179
|
+
}
|
|
180
|
+
]
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"date": "Tue, 29 Jun 2021 00:28:30 GMT",
|
|
185
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.8",
|
|
186
|
+
"version": "1.0.0-alpha.8",
|
|
187
|
+
"comments": {
|
|
188
|
+
"prerelease": [
|
|
189
|
+
{
|
|
190
|
+
"comment": "verifyPersistence returns the right value on failure(#3787)",
|
|
191
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
192
|
+
"commit": "dc8086acc0ccc91e066e886adffd5895911d33f0",
|
|
193
|
+
"package": "@azure/msal-node-extensions"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"date": "Wed, 23 Jun 2021 00:01:49 GMT",
|
|
200
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.7",
|
|
201
|
+
"version": "1.0.0-alpha.7",
|
|
202
|
+
"comments": {
|
|
203
|
+
"prerelease": [
|
|
204
|
+
{
|
|
205
|
+
"comment": "Add logs to test beachball",
|
|
206
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
207
|
+
"commit": "cc28e43b3dcdb45f2469b14cf52a223f7d59b0d9",
|
|
208
|
+
"package": "@azure/msal-node-extensions"
|
|
209
|
+
}
|
|
210
|
+
]
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"date": "Fri, 05 Mar 2021 21:26:46 GMT",
|
|
215
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.6",
|
|
216
|
+
"version": "1.0.0-alpha.6",
|
|
217
|
+
"comments": {
|
|
218
|
+
"prerelease": [
|
|
219
|
+
{
|
|
220
|
+
"comment": "Fix lint in extensions to trigger version bump",
|
|
221
|
+
"author": "janutter@microsoft.com",
|
|
222
|
+
"commit": "4901e740f2687447f1eac537dac71ef243ce957a",
|
|
223
|
+
"package": "@azure/msal-node-extensions"
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"date": "Wed, 03 Mar 2021 22:13:23 GMT",
|
|
230
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.5",
|
|
231
|
+
"version": "1.0.0-alpha.5",
|
|
232
|
+
"comments": {
|
|
233
|
+
"prerelease": [
|
|
234
|
+
{
|
|
235
|
+
"comment": "Fix npm audit warnings",
|
|
236
|
+
"author": "janutter@microsoft.com",
|
|
237
|
+
"commit": "751026cdaa24dd370c50ad714bf0b1d54c71fbde",
|
|
238
|
+
"package": "@azure/msal-node-extensions"
|
|
239
|
+
}
|
|
240
|
+
]
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"date": "Wed, 14 Oct 2020 23:45:07 GMT",
|
|
245
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.4",
|
|
246
|
+
"version": "1.0.0-alpha.4",
|
|
247
|
+
"comments": {
|
|
248
|
+
"prerelease": [
|
|
249
|
+
{
|
|
250
|
+
"comment": "Update PersistenceCachePlugin (#2348)",
|
|
251
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
252
|
+
"commit": "26723689e35918c59bd6ce58ba8cb886118676c6",
|
|
253
|
+
"package": "@azure/msal-node-extensions"
|
|
254
|
+
}
|
|
255
|
+
]
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"date": "Wed, 30 Sep 2020 17:58:33 GMT",
|
|
260
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.3",
|
|
261
|
+
"version": "1.0.0-alpha.3",
|
|
262
|
+
"comments": {
|
|
263
|
+
"none": [
|
|
264
|
+
{
|
|
265
|
+
"comment": "Updating the pre-release version(#2342)",
|
|
266
|
+
"author": "sameera.gajjarapu@microsoft.com",
|
|
267
|
+
"commit": "bc3f324edd6cf83937c31f73d3aefc6dbaf5f748",
|
|
268
|
+
"package": "@azure/msal-node-extensions"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"comment": "Update changelog versions for msal-node and extensions (#2336)",
|
|
272
|
+
"author": "hemoral@microsoft.com",
|
|
273
|
+
"commit": "323875a725e0d5049ff6742a9ca5160c2d4b7d0d",
|
|
274
|
+
"package": "@azure/msal-node-extensions"
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"date": "Wed, 23 Sep 2020 21:13:48 GMT",
|
|
281
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.3",
|
|
282
|
+
"version": "1.0.0-alpha.3",
|
|
283
|
+
"comments": {
|
|
284
|
+
"prerelease": [
|
|
285
|
+
{
|
|
286
|
+
"comment": "Update error message (#2265)",
|
|
287
|
+
"author": "sagonzal@microsoft.com",
|
|
288
|
+
"commit": "81d044a2a4640ebfa8b3bd80cb30cc2c602bbef1",
|
|
289
|
+
"package": "@azure/msal-node-extensions"
|
|
290
|
+
}
|
|
291
|
+
]
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"date": "Thu, 17 Sep 2020 23:16:22 GMT",
|
|
296
|
+
"tag": "@azure/msal-node-extensions_v1.0.0",
|
|
297
|
+
"version": "1.0.0-alpha.2",
|
|
298
|
+
"comments": {
|
|
299
|
+
"none": [
|
|
300
|
+
{
|
|
301
|
+
"comment": "Update msal-node-extensionst to use central eslint configuration",
|
|
302
|
+
"author": "janutter@microsoft.com",
|
|
303
|
+
"commit": "fc49c6f16b3f7a62a67d249107fc484272133305",
|
|
304
|
+
"package": "@azure/msal-node-extensions"
|
|
305
|
+
}
|
|
306
|
+
]
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"date": "Thu, 13 Aug 2020 02:20:48 GMT",
|
|
311
|
+
"tag": "@azure/msal-node-extensions_v1.0.0-alpha.2",
|
|
312
|
+
"version": "1.0.0-alpha.2",
|
|
313
|
+
"comments": {
|
|
314
|
+
"none": [
|
|
315
|
+
{
|
|
316
|
+
"comment": "updating files for automated release steps",
|
|
317
|
+
"author": "prkanher@microsoft.com",
|
|
318
|
+
"commit": "791409e7c9975218ae2b3a91e6a6a190b59474b1",
|
|
319
|
+
"package": "@azure/msal-node-extensions"
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
]
|
|
325
|
+
}
|