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

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,12 @@
1
1
  # Change Log
2
2
 
3
- ## 7.4.3-next.0
3
+ ## 7.4.3
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
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-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
7
+ - Updated dependencies [[`cb37cae`](https://github.com/equinor/fusion-framework/commit/cb37cae45e06778e8d1ea20faed31b582e49fcae)]:
8
+ - @equinor/fusion-framework-module-msal@7.0.0
9
+ - @equinor/fusion-framework-module-http@7.0.7
18
10
 
19
11
  ## 7.4.2
20
12
 
@@ -50,6 +42,7 @@
50
42
  ### Minor Changes
51
43
 
52
44
  - [#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.
45
+
53
46
  - Add TelemetryModule to FusionModules type definition
54
47
  - Enable telemetry in FrameworkConfigurator with default configuration
55
48
  - Add event$ observable with framework-specific event prefixing
@@ -60,6 +53,7 @@
60
53
  ### Patch Changes
61
54
 
62
55
  - [#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.
56
+
63
57
  - Removed `this.logger = new ModuleConsoleLogger(...)` from FrameworkConfigurator, AppConfigurator, and WidgetConfigurator constructors
64
58
  - Logger functionality will be handled through telemetry module with console logging adapter
65
59
 
@@ -102,17 +96,20 @@
102
96
  Major version update of Vitest testing framework and coverage package.
103
97
 
104
98
  ### Breaking Changes
99
+
105
100
  - Updated from Vitest v2 to v3
106
101
  - Coverage reporting may have configuration changes
107
102
  - Test runner behavior improvements
108
103
 
109
104
  ### New Features
105
+
110
106
  - Enhanced coverage reporting capabilities
111
107
  - Improved test performance
112
108
  - Better error handling and reporting
113
109
  - Updated Vite integration (v6.3.5)
114
110
 
115
111
  ### Links
112
+
116
113
  - [Vitest v3.2.4 Release Notes](https://github.com/vitest-dev/vitest/releases/tag/v3.2.4)
117
114
  - [Vitest v3 Migration Guide](https://vitest.dev/guide/migration.html)
118
115
  - [Coverage v8 Documentation](https://vitest.dev/guide/coverage.html)
@@ -310,6 +307,7 @@
310
307
  **@equinor/fusion-framework:**
311
308
 
312
309
  Enhanced the `FrameworkConfigurator` class to improve the configuration of MSAL authentication.
310
+
313
311
  - Updated the `configureMsal` method to accept a callback function (`AuthConfigFn`) and an optional `requiresAuth` parameter.
314
312
  - The `configureMsal` method now adds a configuration object that sets the `requiresAuth` property and invokes the provided callback function with the builder.
315
313
 
@@ -335,7 +333,7 @@
335
333
  clientId: "...",
336
334
  redirectUri: "...",
337
335
  },
338
- true,
336
+ true
339
337
  );
340
338
  ```
341
339
 
@@ -492,6 +490,7 @@
492
490
  - [#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
491
 
494
492
  Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
493
+
495
494
  1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
496
495
  2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
497
496
  3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
@@ -880,6 +879,7 @@
880
879
  ### Patch Changes
881
880
 
882
881
  - [#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**
882
+
883
883
  - align all versions of typescript
884
884
  - update types to build
885
885
  - 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.3';
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"}