@equinor/fusion-framework 7.4.3-next.0 → 7.4.4

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 CHANGED
@@ -1,20 +1,21 @@
1
1
  # Change Log
2
2
 
3
- ## 7.4.3-next.0
3
+ ## 7.4.4
4
4
 
5
5
  ### Patch Changes
6
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
7
+ - Updated dependencies [[`1f5a8e4`](https://github.com/equinor/fusion-framework/commit/1f5a8e475ea30fa1e0f32c7dab885a5a42c50bba)]:
8
+ - @equinor/fusion-framework-module-event@5.0.0
9
+ - @equinor/fusion-framework-module-context@7.0.2
10
+ - @equinor/fusion-framework-module-telemetry@4.6.2
11
+
12
+ ## 7.4.3
13
+
14
+ ### Patch Changes
8
15
 
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-context@7.0.3-next.0
12
- - @equinor/fusion-framework-module-event@4.4.1-next.0
13
- - @equinor/fusion-framework-module-http@7.0.6-next.0
14
- - @equinor/fusion-framework-module@5.0.6-next.0
15
- - @equinor/fusion-framework-module-msal@7.0.0-next.0
16
- - @equinor/fusion-framework-module-service-discovery@9.0.5-next.0
17
- - @equinor/fusion-framework-module-services@7.1.6-next.0
16
+ - Updated dependencies [[`cb37cae`](https://github.com/equinor/fusion-framework/commit/cb37cae45e06778e8d1ea20faed31b582e49fcae)]:
17
+ - @equinor/fusion-framework-module-msal@7.0.0
18
+ - @equinor/fusion-framework-module-http@7.0.7
18
19
 
19
20
  ## 7.4.2
20
21
 
@@ -50,6 +51,7 @@
50
51
  ### Minor Changes
51
52
 
52
53
  - [#3492](https://github.com/equinor/fusion-framework/pull/3492) [`7ba4713`](https://github.com/equinor/fusion-framework/commit/7ba47139a8d7cfbb757bd4626425c611e22c2126) Thanks [@odinr](https://github.com/odinr)! - Integrate telemetry module into framework core.
54
+
53
55
  - Add TelemetryModule to FusionModules type definition
54
56
  - Enable telemetry in FrameworkConfigurator with default configuration
55
57
  - Add event$ observable with framework-specific event prefixing
@@ -60,6 +62,7 @@
60
62
  ### Patch Changes
61
63
 
62
64
  - [#3490](https://github.com/equinor/fusion-framework/pull/3490) [`45954e5`](https://github.com/equinor/fusion-framework/commit/45954e5db471a2faa24e88e41fc6d6c18817d6d1) Thanks [@odinr](https://github.com/odinr)! - Remove explicit logger initialization from configurator constructors in favor of telemetry.
65
+
63
66
  - Removed `this.logger = new ModuleConsoleLogger(...)` from FrameworkConfigurator, AppConfigurator, and WidgetConfigurator constructors
64
67
  - Logger functionality will be handled through telemetry module with console logging adapter
65
68
 
@@ -102,17 +105,20 @@
102
105
  Major version update of Vitest testing framework and coverage package.
103
106
 
104
107
  ### Breaking Changes
108
+
105
109
  - Updated from Vitest v2 to v3
106
110
  - Coverage reporting may have configuration changes
107
111
  - Test runner behavior improvements
108
112
 
109
113
  ### New Features
114
+
110
115
  - Enhanced coverage reporting capabilities
111
116
  - Improved test performance
112
117
  - Better error handling and reporting
113
118
  - Updated Vite integration (v6.3.5)
114
119
 
115
120
  ### Links
121
+
116
122
  - [Vitest v3.2.4 Release Notes](https://github.com/vitest-dev/vitest/releases/tag/v3.2.4)
117
123
  - [Vitest v3 Migration Guide](https://vitest.dev/guide/migration.html)
118
124
  - [Coverage v8 Documentation](https://vitest.dev/guide/coverage.html)
@@ -310,6 +316,7 @@
310
316
  **@equinor/fusion-framework:**
311
317
 
312
318
  Enhanced the `FrameworkConfigurator` class to improve the configuration of MSAL authentication.
319
+
313
320
  - Updated the `configureMsal` method to accept a callback function (`AuthConfigFn`) and an optional `requiresAuth` parameter.
314
321
  - The `configureMsal` method now adds a configuration object that sets the `requiresAuth` property and invokes the provided callback function with the builder.
315
322
 
@@ -335,7 +342,7 @@
335
342
  clientId: "...",
336
343
  redirectUri: "...",
337
344
  },
338
- true,
345
+ true
339
346
  );
340
347
  ```
341
348
 
@@ -492,6 +499,7 @@
492
499
  - [#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.
493
500
 
494
501
  Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
502
+
495
503
  1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
496
504
  2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
497
505
  3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
@@ -880,6 +888,7 @@
880
888
  ### Patch Changes
881
889
 
882
890
  - [#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**
891
+
883
892
  - align all versions of typescript
884
893
  - update types to build
885
894
  - 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
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '7.4.3-next.0';
2
+ export const version = '7.4.4';
3
3
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,MAAM,CAAC,MAAM,OAAO,GAAG,cAAc,CAAC"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC"}