@equinor/fusion-framework-module-msal 6.0.3 → 7.0.0-next.0
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.md +33 -17
- package/dist/esm/MsalProvider.js +1 -1
- package/dist/esm/MsalProvider.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +5 -5
- package/src/MsalProvider.ts +7 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 7.0.0-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3820](https://github.com/equinor/fusion-framework/pull/3820) [`265bb76`](https://github.com/equinor/fusion-framework/commit/265bb767249989eeb1971e83f3fba94879e0813b) Thanks [@odinr](https://github.com/odinr)! - relase next
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`265bb76`](https://github.com/equinor/fusion-framework/commit/265bb767249989eeb1971e83f3fba94879e0813b), [`d252b0d`](https://github.com/equinor/fusion-framework/commit/d252b0d442b7c8c1b50bf2768cf9ecbbb55a76f8)]:
|
|
10
|
+
- @equinor/fusion-framework-module-telemetry@5.0.0-next.0
|
|
11
|
+
- @equinor/fusion-framework-module@5.0.6-next.0
|
|
12
|
+
|
|
13
|
+
## 6.0.4
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#3797](https://github.com/equinor/fusion-framework/pull/3797) [`244d615`](https://github.com/equinor/fusion-framework/commit/244d615195721541870c98754ee37baca96b8584) Thanks [@odinr](https://github.com/odinr)! - Ensure `acquireToken` normalizes legacy options when `request` is omitted by creating a default request object and applying active account fallback.
|
|
18
|
+
|
|
19
|
+
Previously `{ scopes: ["User.Read"] }` could yield a request without `account`, relying on downstream resolution. The provider now explicitly supplies an empty request object, resolves `account` from the active session, and merges legacy `scopes` for clearer telemetry and safer behavior.
|
|
20
|
+
|
|
21
|
+
Before:
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
await provider.acquireToken({ scopes: ["User.Read"] }); // request undefined, account implicit
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
After (both forms valid, account resolved automatically):
|
|
28
|
+
|
|
29
|
+
```typescript
|
|
30
|
+
await provider.acquireToken({ scopes: ["User.Read"] });
|
|
31
|
+
await provider.acquireToken({ request: { scopes: ["User.Read"] } });
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Internal: improves stability of legacy usage without breaking API.
|
|
35
|
+
|
|
3
36
|
## 6.0.3
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
|
@@ -39,7 +72,6 @@
|
|
|
39
72
|
**🚀 Enhanced features available** - New v4 APIs provide better performance, security, and error handling.
|
|
40
73
|
|
|
41
74
|
## What You Get
|
|
42
|
-
|
|
43
75
|
- **Better Security**: Latest MSAL v4 security improvements and vulnerability fixes
|
|
44
76
|
- **Improved Performance**: Faster token acquisition and caching
|
|
45
77
|
- **Enhanced Error Handling**: More robust error recovery and retry mechanisms
|
|
@@ -84,7 +116,6 @@
|
|
|
84
116
|
- [#3714](https://github.com/equinor/fusion-framework/pull/3714) [`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8) Thanks [@odinr](https://github.com/odinr)! - Add optional provider-level telemetry for MSAL flows and update interface methods.
|
|
85
117
|
|
|
86
118
|
**BREAKING CHANGES:**
|
|
87
|
-
|
|
88
119
|
- `acquireAccessToken(options: AcquireTokenOptions)` → `acquireAccessToken(options: AcquireTokenOptionsLegacy)`
|
|
89
120
|
- `acquireToken(options: AcquireTokenOptions)` → `acquireToken(options: AcquireTokenOptionsLegacy)`
|
|
90
121
|
- `logout(options?: LogoutOptions): Promise<void>` → `logout(options?: LogoutOptions): Promise<boolean>`
|
|
@@ -92,7 +123,6 @@
|
|
|
92
123
|
- Added `initialize(): Promise<void>` method
|
|
93
124
|
|
|
94
125
|
**New Features:**
|
|
95
|
-
|
|
96
126
|
- Optional provider-level telemetry for MSAL flows (login, token acquisition, redirect handling)
|
|
97
127
|
- Emits telemetry events and measurements via injected telemetry provider when available
|
|
98
128
|
- Includes basic metadata (framework module version, clientId, tenantId) and authentication context
|
|
@@ -145,7 +175,6 @@
|
|
|
145
175
|
### Minor Changes
|
|
146
176
|
|
|
147
177
|
- [#3573](https://github.com/equinor/fusion-framework/pull/3573) [`b42b116`](https://github.com/equinor/fusion-framework/commit/b42b11616487c534e8e01f2df126e2ad05ce6a8f) Thanks [@odinr](https://github.com/odinr)! - Refactored AuthProvider to use a cleaner `client` property instead of deprecated `defaultClient`.
|
|
148
|
-
|
|
149
178
|
- Added `client` property to IAuthProvider interface
|
|
150
179
|
- Replaced deprecated `defaultClient` getter with `client` getter
|
|
151
180
|
- Updated internal references to use private `#client` field
|
|
@@ -154,14 +183,12 @@
|
|
|
154
183
|
- [#3572](https://github.com/equinor/fusion-framework/pull/3572) [`2d90f8b`](https://github.com/equinor/fusion-framework/commit/2d90f8b3806aa3deec5ca60142d38118748b1d3e) Thanks [@odinr](https://github.com/odinr)! - Refactored MSAL versioning module to use warnings instead of errors for version incompatibilities.
|
|
155
184
|
|
|
156
185
|
**Changes:**
|
|
157
|
-
|
|
158
186
|
- Removed `create-version-message.ts` and `static.ts` utility files
|
|
159
187
|
- Modified `resolveVersion()` to collect warnings for version mismatches instead of throwing errors
|
|
160
188
|
- Simplified `VersionError` class by removing factory methods and type enum references
|
|
161
189
|
- Updated tests to reflect new warning-based behavior
|
|
162
190
|
|
|
163
191
|
**Breaking Changes:**
|
|
164
|
-
|
|
165
192
|
- Version resolution now returns warnings for incompatible versions instead of throwing errors
|
|
166
193
|
- This change is backward compatible as existing code will continue to work, but error handling behavior has changed
|
|
167
194
|
|
|
@@ -175,7 +202,6 @@
|
|
|
175
202
|
- [#3442](https://github.com/equinor/fusion-framework/pull/3442) [`3b614f8`](https://github.com/equinor/fusion-framework/commit/3b614f87138f5a52f8ccc50ca8c6598ef3db37d6) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Update biome to latest version
|
|
176
203
|
|
|
177
204
|
- [#3428](https://github.com/equinor/fusion-framework/pull/3428) [`1700ca8`](https://github.com/equinor/fusion-framework/commit/1700ca8851fa108e55e9729fd24f595272766e63) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update zod from 4.1.9 to 4.1.11
|
|
178
|
-
|
|
179
205
|
- **v4.1.10**: Fixed shape caching issue (#5263) improving validation performance for complex schemas
|
|
180
206
|
- **v4.1.11**: Maintenance release with general improvements
|
|
181
207
|
|
|
@@ -193,7 +219,6 @@
|
|
|
193
219
|
Updated source code to migrate from zod v3 to v4. Updated zod dependency from v3.25.76 to v4.1.8 and modified authentication configuration schemas in the MSAL module to be compatible with zod v4's stricter type checking and updated API.
|
|
194
220
|
|
|
195
221
|
Key changes in source code:
|
|
196
|
-
|
|
197
222
|
- Updated `AuthClientConfigSchema` and `AuthConfigSchema` for zod v4 compatibility
|
|
198
223
|
- Enhanced version schema transformation to work with zod v4
|
|
199
224
|
- Improved validation of client configuration (clientId, tenantId, redirectUri)
|
|
@@ -202,7 +227,6 @@
|
|
|
202
227
|
Breaking changes: Schema validation behavior may differ due to zod v4's stricter type checking. Error message format has changed from zod v3 to v4 format. Function schema definitions now require explicit typing.
|
|
203
228
|
|
|
204
229
|
Links:
|
|
205
|
-
|
|
206
230
|
- [Zod v4 Migration Guide](https://github.com/colinhacks/zod/releases/tag/v4.0.0)
|
|
207
231
|
- [Zod v4.1.8 Release Notes](https://github.com/colinhacks/zod/releases/tag/v4.1.8)
|
|
208
232
|
|
|
@@ -213,7 +237,6 @@
|
|
|
213
237
|
- [#3376](https://github.com/equinor/fusion-framework/pull/3376) [`da373ad`](https://github.com/equinor/fusion-framework/commit/da373ade663898b2628e28529b6e3dea3b91ed43) Thanks [@odinr](https://github.com/odinr)! - Improved MSAL module version checking to be more permissive for minor and patch versions.
|
|
214
238
|
|
|
215
239
|
Fixes: #3375
|
|
216
|
-
|
|
217
240
|
- Refactored version checking logic into dedicated versioning module
|
|
218
241
|
- Made version checking more permissive for minor and patch versions
|
|
219
242
|
- Only major version incompatibilities will block execution
|
|
@@ -228,7 +251,6 @@
|
|
|
228
251
|
### Patch Changes
|
|
229
252
|
|
|
230
253
|
- [#3343](https://github.com/equinor/fusion-framework/pull/3343) [`68dc22f`](https://github.com/equinor/fusion-framework/commit/68dc22f582bb68fbc94f29ad053122f81c049405) Thanks [@odinr](https://github.com/odinr)! - Enhanced documentation with comprehensive guides and improved developer experience.
|
|
231
|
-
|
|
232
254
|
- **Complete documentation rewrite** with better structure and organization
|
|
233
255
|
- **Added comprehensive API reference** with detailed interface documentation
|
|
234
256
|
- **Enhanced configuration guide** with clear required/optional settings tables
|
|
@@ -239,7 +261,6 @@
|
|
|
239
261
|
- **Added package description** for better npm package visibility
|
|
240
262
|
|
|
241
263
|
**Key Improvements:**
|
|
242
|
-
|
|
243
264
|
- Clear separation between required and optional configuration
|
|
244
265
|
- Comprehensive API reference with TypeScript interfaces
|
|
245
266
|
- Migration guidance for v4 breaking changes
|
|
@@ -260,7 +281,6 @@
|
|
|
260
281
|
### Patch Changes
|
|
261
282
|
|
|
262
283
|
- [#3088](https://github.com/equinor/fusion-framework/pull/3088) [`7441b13`](https://github.com/equinor/fusion-framework/commit/7441b13aa50dd7362d1629086a27b6b4e571575d) Thanks [@eikeland](https://github.com/eikeland)! - chore: update package typesVersions
|
|
263
|
-
|
|
264
284
|
- Updated package.json typesVersions.
|
|
265
285
|
- Ensures backward compatibility with older node versions.
|
|
266
286
|
- Ensured consistency with workspace and repository configuration.
|
|
@@ -326,7 +346,6 @@
|
|
|
326
346
|
- [#2814](https://github.com/equinor/fusion-framework/pull/2814) [`ea4b522`](https://github.com/equinor/fusion-framework/commit/ea4b5221b30719289fc947b5dbb0acd3ea52ffaa) Thanks [@odinr](https://github.com/odinr)! - Rework of the MSAL module to support module hoisting. This means that sub modules instances will proxy the parent module instance. This means that the module instance will be shared between all instances of the module.
|
|
327
347
|
|
|
328
348
|
**Highlights:**
|
|
329
|
-
|
|
330
349
|
- Versioning module, config and provider.
|
|
331
350
|
- Interfaces for MSAL versions
|
|
332
351
|
- Proxy provider instances for sub modules.
|
|
@@ -334,7 +353,6 @@
|
|
|
334
353
|
- Configurator using `BaseConfigBuilder` (aligned with other modules)
|
|
335
354
|
|
|
336
355
|
**BREAKING CHANGES:**
|
|
337
|
-
|
|
338
356
|
- `configureMsal` has changed parameter signature to `configureMsal(msalConfigurator: MsalConfigurator): void`
|
|
339
357
|
- Added `enableMsal` with parameter signature to `enableMsal(configurator: IModulesConfigurator, configureMsal: (msalConfigurator: MsalConfigurator) => void): void`
|
|
340
358
|
|
|
@@ -393,7 +411,6 @@
|
|
|
393
411
|
- [#2320](https://github.com/equinor/fusion-framework/pull/2320) [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee) Thanks [@odinr](https://github.com/odinr)! - Removed the `removeComments` option from the `tsconfig.base.json` file.
|
|
394
412
|
|
|
395
413
|
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
396
|
-
|
|
397
414
|
1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
|
|
398
415
|
2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
|
|
399
416
|
3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
|
|
@@ -519,7 +536,6 @@
|
|
|
519
536
|
### Patch Changes
|
|
520
537
|
|
|
521
538
|
- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages**
|
|
522
|
-
|
|
523
539
|
- align all versions of typescript
|
|
524
540
|
- update types to build
|
|
525
541
|
- a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future
|
package/dist/esm/MsalProvider.js
CHANGED
|
@@ -202,7 +202,7 @@ export class MsalProvider extends BaseModuleProvider {
|
|
|
202
202
|
* ```
|
|
203
203
|
*/
|
|
204
204
|
async acquireToken(options) {
|
|
205
|
-
const { behavior = 'redirect', silent = true, request } = options;
|
|
205
|
+
const { behavior = 'redirect', silent = true, request = {}, } = options;
|
|
206
206
|
const account = request.account ?? this.account ?? undefined;
|
|
207
207
|
// Extract scopes from either new format (request.scopes) or legacy format (scopes)
|
|
208
208
|
const scopes = options.request?.scopes ?? options?.scopes ?? [];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MsalProvider.js","sourceRoot":"","sources":["../../src/MsalProvider.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAE5E,OAAO,EAAE,kBAAkB,EAAE,MAAM,2CAA2C,CAAC;AAI/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"MsalProvider.js","sourceRoot":"","sources":["../../src/MsalProvider.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/version.js
CHANGED
package/dist/esm/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,MAAM,CAAC,MAAM,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,MAAM,CAAC,MAAM,OAAO,GAAG,cAAc,CAAC"}
|