@equinor/fusion-framework-module-widget 12.0.4-next.0 → 14.0.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 +16 -9
- 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 +12 -12
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 14.0.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Updated dependencies [[`434ce70`](https://github.com/equinor/fusion-framework/commit/434ce707d237b399f8438eebe742641b2a81b11f)]:
|
|
8
|
+
- @equinor/fusion-framework-module-service-discovery@9.1.0
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
- @equinor/fusion-framework-module@5.0.
|
|
15
|
-
- @equinor/fusion-framework-module-service-discovery@9.0.5-next.0
|
|
10
|
+
## 13.0.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`1f5a8e4`](https://github.com/equinor/fusion-framework/commit/1f5a8e475ea30fa1e0f32c7dab885a5a42c50bba)]:
|
|
15
|
+
- @equinor/fusion-framework-module-event@5.0.0
|
|
16
16
|
|
|
17
17
|
## 12.0.3
|
|
18
18
|
|
|
@@ -63,16 +63,19 @@
|
|
|
63
63
|
- [#3395](https://github.com/equinor/fusion-framework/pull/3395) [`29f6710`](https://github.com/equinor/fusion-framework/commit/29f6710238baf9b29f42394b30cb8b97f25462c3) Thanks [@odinr](https://github.com/odinr)! - Updated immer from 9.0.16 to 10.1.3 across all packages.
|
|
64
64
|
|
|
65
65
|
### Breaking Changes
|
|
66
|
+
|
|
66
67
|
- Immer 10.x introduces stricter TypeScript types for draft functions
|
|
67
68
|
- `ValidRecipeReturnType` type constraints have changed
|
|
68
69
|
- Promise return types in draft functions are no longer automatically handled
|
|
69
70
|
|
|
70
71
|
### Fixes Applied
|
|
72
|
+
|
|
71
73
|
- Updated BookmarkProvider to handle new immer type constraints
|
|
72
74
|
- Fixed ObservableInput type assignments in mergeScan operations
|
|
73
75
|
- Removed async/await from immer draft functions to comply with new type requirements
|
|
74
76
|
|
|
75
77
|
### Links
|
|
78
|
+
|
|
76
79
|
- [Immer 10.0.0 Release Notes](https://github.com/immerjs/immer/releases/tag/v10.0.0)
|
|
77
80
|
- [Immer Migration Guide](https://github.com/immerjs/immer/blob/main/MIGRATION.md)
|
|
78
81
|
|
|
@@ -95,6 +98,7 @@
|
|
|
95
98
|
### Patch Changes
|
|
96
99
|
|
|
97
100
|
- [#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
|
|
101
|
+
|
|
98
102
|
- Updated package.json typesVersions.
|
|
99
103
|
- Ensures backward compatibility with older node versions.
|
|
100
104
|
- Ensured consistency with workspace and repository configuration.
|
|
@@ -344,6 +348,7 @@
|
|
|
344
348
|
- [#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.
|
|
345
349
|
|
|
346
350
|
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
351
|
+
|
|
347
352
|
1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
|
|
348
353
|
2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
|
|
349
354
|
3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
|
|
@@ -396,6 +401,7 @@
|
|
|
396
401
|
### Patch Changes
|
|
397
402
|
|
|
398
403
|
- [#2235](https://github.com/equinor/fusion-framework/pull/2235) [`97e41a5`](https://github.com/equinor/fusion-framework/commit/97e41a55d05644b6684c6cb165b65b115bd416eb) Thanks [@odinr](https://github.com/odinr)! - - **Refactored**: The `actionBaseType` function has been renamed to `getBaseType` and its implementation has been updated.
|
|
404
|
+
|
|
399
405
|
- **Added**: New utility types and functions for handling action types and payloads in a more type-safe manner.
|
|
400
406
|
|
|
401
407
|
- [#2248](https://github.com/equinor/fusion-framework/pull/2248) [`da9dd83`](https://github.com/equinor/fusion-framework/commit/da9dd83c9352def5365b6c962dc8443589ac9526) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - #2235 renamed a method and changed type. This PR forgot to change to the correct param when using this method. Fixes typo - update to use actions `type` in the reducer.
|
|
@@ -667,6 +673,7 @@
|
|
|
667
673
|
### Patch Changes
|
|
668
674
|
|
|
669
675
|
- [#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**
|
|
676
|
+
|
|
670
677
|
- align all versions of typescript
|
|
671
678
|
- update types to build
|
|
672
679
|
- 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/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,QAAQ,CAAC"}
|