@equinor/fusion-framework-module-app 8.1.0 → 8.1.1

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.
Files changed (44) hide show
  1. package/dist/esm/version.js +1 -1
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/dist/types/version.d.ts +1 -1
  4. package/package.json +12 -9
  5. package/CHANGELOG.md +0 -1469
  6. package/src/AppClient.ts +0 -409
  7. package/src/AppConfig.ts +0 -99
  8. package/src/AppConfigSelector.ts +0 -25
  9. package/src/AppConfigurator.ts +0 -145
  10. package/src/AppModuleProvider.ts +0 -283
  11. package/src/__tests__/AppModuleProvider.test.ts +0 -47
  12. package/src/__tests__/MockAppClient.test.ts +0 -97
  13. package/src/app/App.ts +0 -984
  14. package/src/app/actions.ts +0 -112
  15. package/src/app/create-reducer.ts +0 -62
  16. package/src/app/create-state.ts +0 -52
  17. package/src/app/events.ts +0 -108
  18. package/src/app/filter-empty.ts +0 -11
  19. package/src/app/flows/handle-fetch-config.ts +0 -48
  20. package/src/app/flows/handle-fetch-manifest.ts +0 -53
  21. package/src/app/flows/handle-fetch-settings.ts +0 -50
  22. package/src/app/flows/handle-import-application.ts +0 -37
  23. package/src/app/flows/handle-update-settings.ts +0 -39
  24. package/src/app/flows/index.ts +0 -5
  25. package/src/app/index.ts +0 -10
  26. package/src/app/types.ts +0 -51
  27. package/src/enable-app-module.ts +0 -40
  28. package/src/errors/AppBuildError.ts +0 -47
  29. package/src/errors/AppConfigError.ts +0 -47
  30. package/src/errors/AppManifestError.ts +0 -47
  31. package/src/errors/AppScriptModuleError.ts +0 -20
  32. package/src/errors/AppSettingsError.ts +0 -47
  33. package/src/errors/app-error-type.ts +0 -9
  34. package/src/errors.ts +0 -6
  35. package/src/events.ts +0 -18
  36. package/src/index.ts +0 -40
  37. package/src/mock/MockAppClient.ts +0 -77
  38. package/src/mock/index.ts +0 -13
  39. package/src/module.ts +0 -59
  40. package/src/schemas.ts +0 -181
  41. package/src/types.ts +0 -263
  42. package/src/version.ts +0 -2
  43. package/tsconfig.json +0 -30
  44. package/vitest.config.ts +0 -11
package/CHANGELOG.md DELETED
@@ -1,1469 +0,0 @@
1
- # Change Log
2
-
3
- ## 8.1.0
4
-
5
- ### Minor Changes
6
-
7
- - f663b46: Add `MockAppClient`, exported from a new `./mock` subpath, so a test can serve one app's own manifest and config locally instead of contacting the app service.
8
-
9
- ```ts
10
- import { MockAppClient } from '@equinor/fusion-framework-module-app/mock';
11
-
12
- enableAppModule(configurator, (builder) => {
13
- builder.setClient(async ({ requireInstance }) => {
14
- const http = await requireInstance('http');
15
- return new MockAppClient(http.createClient('apps'), manifest, config);
16
- });
17
- });
18
- ```
19
-
20
- `getAppManifest` only resolves locally for `manifest.appKey` with no `tag` at all. `getAppConfig` resolves for `manifest.appKey` when `tag` is either absent or equal to the manifest's own `build.version` — the same tag `App` requests when loading config for the manifest it already resolved. Every other request — other app keys, tagged requests, builds, settings — still goes through the real `AppClient` it wraps, so pointing service discovery at a different registry or a real local mock server keeps working unchanged.
21
-
22
- Also export `AppConfig` as a value from the package root (previously type-only), so a test can construct one directly with `new AppConfig({ environment, endpoints })`.
23
-
24
- ## 8.0.5
25
-
26
- ### Patch Changes
27
-
28
- - 4a00a7a: Internal: address fusion-lint warnings — mark `FrameworkOptionsSchema` as intentionally co-located per the file's existing convention, and add intent comments to `NavigationProvider`'s path-normalization loops.
29
-
30
- ## 8.0.4
31
-
32
- ### Patch Changes
33
-
34
- - de2b4fb: Added missing TSDoc comments on class fields flagged by the new `require-property-tsdoc` fusion-lint rule.
35
-
36
- ## 8.0.3
37
-
38
- ### Patch Changes
39
-
40
- - 80c3e4a: Internal: resolve `noExplicitAny` Biome warnings in `enableAppModule`'s configurator widening, `AppBundleState`/`AppBundleStateInitial`'s `TModules` generic default, and the `setModule` action creator, using explanatory `biome-ignore` comments. No public API or behavior change.
41
- - 80c3e4a: Internal: add a required fusion-lint intent comment explaining an `as unknown as AppModuleProvider` cast in the module's `dispose` hook. No behavior change.
42
- - 80c3e4a: Internal: Resolve fusion-lint warnings across the module — added missing TSDoc comments (including `@inheritdoc` for `IApp` interface implementations), added intent comments for control-flow and RxJS `.pipe()` chains, and referenced tracking issues for existing TODOs (#5123-#5133).
43
-
44
- Split multi-export files into one-symbol-per-file modules for maintainability: `errors.ts` into `errors/*.ts`, `app/flows.ts` into `app/flows/*.ts`, and extracted the `filterEmpty` operator from `app/App.ts` into `app/filter-empty.ts` (re-exported from `App.ts` for backwards compatibility).
45
-
46
- - 80c3e4a: Internal: renamed 45 source files across these packages to comply with the `filename-convention` lint rule (e.g. `AIConfigurator.ts` → `AiConfigurator.ts`, `BookmarkProvider.actions.ts` → `bookmark-actions.ts`, `errors/app-build-error.ts` → `errors/AppBuildError.ts`, `plugins/api/plugin.ts` → `plugins/api/ApiPlugin.ts`, `errors.ts` → `UnsupportedApiVersion.ts`, etc.). Also added `enable-signalr.ts` to the `filename-convention` exclude list since the suggested rename would incorrectly split the "SignalR" brand name. No public API changes.
47
- - 80c3e4a: Internal: added missing intent comments ahead of non-obvious control flow, RxJS `.pipe()` chains, iterator calls, and multi-source object merges to comply with the `require-intent-comment` and `require-tsdoc` lint rules. Also removed dead duplicate files left over from an earlier refactor in `navigation` (`events.ts`, `navigated-event.ts`, `history.flows.ts` — all fully superseded by their split replacements) and renamed `bookmarks/schemas.ts` to `bookmarks/bookmark.schemas.ts` in `services` to match the `*.schemas.ts` filename convention. No public API changes.
48
-
49
- ## 8.0.2
50
-
51
- ### Patch Changes
52
-
53
- - f045ac0: Internal: upgrade `zod` from 4.3.6 to 4.4.3 to resolve validation issues; no public API changes.
54
-
55
- ## 8.0.1
56
-
57
- ### Patch Changes
58
-
59
- - a6355fe: Internal: bump `uuid` from `13.0.0` to `14.0.0`.
60
-
61
- ## 8.0.0
62
-
63
- ### Major Changes
64
-
65
- - abffa53: Major version bump for Fusion Framework React 19 release.
66
-
67
- All packages are bumped to the next major version as part of the React 19 upgrade. This release drops support for React versions below 18 and includes breaking changes across the framework.
68
-
69
- **Breaking changes:**
70
- - Peer dependencies now require React 18 or 19 (`^18.0.0 || ^19.0.0`)
71
- - React Router upgraded from v6 to v7
72
- - Navigation module refactored with new history API
73
- - `renderComponent` and `renderApp` now use `createRoot` API
74
-
75
- **Migration:**
76
- - Update your React version to 18.0.0 or higher before upgrading
77
- - Replace `NavigationProvider.createRouter()` with `@equinor/fusion-framework-react-router`
78
- - See individual package changelogs for package-specific migration steps
79
-
80
- ### Minor Changes
81
-
82
- - abffa53: Add route schema support to app manifests for documentation and API schema generation.
83
-
84
- **New Features:**
85
- - **module-app**: Added `RouteSchemaEntry` type and `routes` field to `AppManifest` interface
86
- - **cli**: Added `RouteSchemaEntry` type export for app manifest generation
87
-
88
- Route schemas allow applications to document their routes in app manifests, enabling automatic API documentation and schema generation. The `RouteSchemaEntry` type represents a route with its path, description, and optional parameter/search schemas.
89
-
90
- ```typescript
91
- import type {
92
- RouteSchemaEntry,
93
- AppManifest,
94
- } from "@equinor/fusion-framework-module-app";
95
-
96
- const manifest: AppManifest = {
97
- appKey: "my-app",
98
- displayName: "My App",
99
- description: "My app description",
100
- type: "standalone",
101
- routes: [
102
- ["/", "Home page"],
103
- ["/products", "Products listing page"],
104
- ["/products/:id", "Product detail page", { id: "Product ID" }],
105
- ],
106
- };
107
- ```
108
-
109
- ### Patch Changes
110
-
111
- - Updated dependencies [abffa53]
112
- - Updated dependencies [abffa53]
113
- - Updated dependencies [abffa53]
114
- - Updated dependencies [abffa53]
115
- - @equinor/fusion-observable@9.0.0
116
- - @equinor/fusion-query@7.0.0
117
-
118
- ## 7.4.1
119
-
120
- ### Patch Changes
121
-
122
- - [#4157](https://github.com/equinor/fusion-framework/pull/4157) [`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581) Thanks [@Noggling](https://github.com/Noggling)! - Internal: patch release to align TypeScript types across packages for consistent type compatibility.
123
-
124
- - Updated dependencies [[`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581)]:
125
- - @equinor/fusion-observable@8.5.8
126
- - @equinor/fusion-query@6.0.4
127
-
128
- ## 7.4.0
129
-
130
- ### Minor Changes
131
-
132
- - [#3978](https://github.com/equinor/fusion-framework/pull/3978) [`54702d7`](https://github.com/equinor/fusion-framework/commit/54702d78e8d868d490817c015471e11ee648a98a) Thanks [@Noggling](https://github.com/Noggling)! - Allow custom string values for app build tags instead of restricting to 'latest' and 'preview'.
133
-
134
- The app module schema now accepts any string value for the `tag` field in `AppBuildManifest` and `ApiApplicationBuildSchema`. This enables using custom deployment tags like `dev`, `staging`, `v1.0`, or any other string value while maintaining backward compatibility with existing `latest` and `preview` tags.
135
-
136
- ```typescript
137
- // Before: only 'latest' | 'preview' allowed
138
- const build: AppBuildManifest = {
139
- version: "1.0.0",
140
- entryPoint: "index.js",
141
- tag: "latest", // or 'preview' only
142
- };
143
-
144
- // After: any string value allowed
145
- const build: AppBuildManifest = {
146
- version: "1.0.0",
147
- entryPoint: "index.js",
148
- tag: "dev", // or 'staging', 'v1.0', etc.
149
- };
150
- ```
151
-
152
- This aligns the schema validation with the CLI's existing flexibility for custom tags.
153
-
154
- Fixes: https://github.com/equinor/fusion-core-tasks/issues/252
155
-
156
- ## 7.3.0
157
-
158
- ### Minor Changes
159
-
160
- - [#3961](https://github.com/equinor/fusion-framework/pull/3961) [`343f5f9`](https://github.com/equinor/fusion-framework/commit/343f5f9cc0acbd8e69b62cc73dda577c9015a620) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Add possibility to configure and override service-discovery in AppConfig.
161
-
162
- Allows developers to define overrides in `app.config.[ENV].ts`:
163
-
164
- ```typescript
165
- export default defineAppConfig(() => ({
166
- endpoints: {
167
- admin: {
168
- url: "MY_OVERRIDDEN_URL", // e.g. an url to a PR-environment
169
- scopes: [],
170
- },
171
- },
172
- }));
173
- ```
174
-
175
- ## 7.2.2
176
-
177
- ### Patch Changes
178
-
179
- - [#3866](https://github.com/equinor/fusion-framework/pull/3866) [`f70d66f`](https://github.com/equinor/fusion-framework/commit/f70d66f1bc826e614140adb2c6ee052f98e3b3da) Thanks [@dependabot](https://github.com/apps/dependabot)! - Internal: Dedupe zod dependency to 4.3.5
180
-
181
- Deduplicated zod dependency to version 4.3.5 across all packages using `pnpm dedupe`. This aligns all packages (AI plugins upgraded from v3.25.76, other packages consolidated from v4.1.8/v4.1.11) to use the same latest stable version, improving consistency and reducing bundle size. All builds, tests, and linting pass successfully.
182
-
183
- ## 7.2.1
184
-
185
- ### Patch Changes
186
-
187
- - [#3845](https://github.com/equinor/fusion-framework/pull/3845) [`5114ac4`](https://github.com/equinor/fusion-framework/commit/5114ac4f71a60935d0194b9b2766f95adff0ba1e) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Fix tsconfig references
188
-
189
- ## 7.2.0
190
-
191
- ### Minor Changes
192
-
193
- - [#3842](https://github.com/equinor/fusion-framework/pull/3842) [`d38cd60`](https://github.com/equinor/fusion-framework/commit/d38cd60472380d60282c2a5672dc6e3bba3e7ca9) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Add module fusion-framework-module-analytics
194
-
195
- ## 7.1.1
196
-
197
- ### Patch Changes
198
-
199
- - [#3786](https://github.com/equinor/fusion-framework/pull/3786) [`9b6fc05`](https://github.com/equinor/fusion-framework/commit/9b6fc05d8305b179f11ed9f0bc993f2d88305136) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump immer from 10.2.0 to 11.0.0
200
-
201
- - Updated dependencies [[`9b6fc05`](https://github.com/equinor/fusion-framework/commit/9b6fc05d8305b179f11ed9f0bc993f2d88305136)]:
202
- - @equinor/fusion-observable@8.5.7
203
- - @equinor/fusion-query@6.0.2
204
-
205
- ## 7.1.0
206
-
207
- ### Minor Changes
208
-
209
- - [#3713](https://github.com/equinor/fusion-framework/pull/3713) [`eaa6871`](https://github.com/equinor/fusion-framework/commit/eaa6871edc07054138e88bc706a4137a3fcc261a) Thanks [@Noggling](https://github.com/Noggling)! - # Add app tag/version support for specific app builds
210
-
211
- This changeset introduces comprehensive support for loading specific app versions using tags, enabling developers to test different app builds and manage version-specific deployments.
212
-
213
- ## New Features
214
-
215
- ### App Tag/Version Support
216
- - **App Client**: Added `getAppBuild` method to fetch build manifests by app key and tag
217
- - **App Module Provider**: Enhanced `getAppManifest` to accept optional tag parameter
218
- - **App Loading**: Modified `setCurrentApp` to support `AppReference` objects with tag specification
219
- - **URL Integration**: Added `getAppTagFromUrl` utility to extract app tags from URL parameters
220
-
221
- ### Enhanced Type System
222
- - Added `AppReference` type for specifying app key and optional tag
223
- - Extended `AppBundleState` to include optional `tag` property
224
- - Updated `AppBuildManifest` type definition for build-specific metadata
225
-
226
- ### API Improvements
227
- - **AppClient**: Updated interface to support tag-based manifest and build fetching
228
- - **App Class**: Added `tag` getter property for accessing current app tag
229
- - **Action System**: Enhanced `fetchManifest` action to handle tag parameters
230
-
231
- ## Changes by Package
232
-
233
- ### `@equinor/fusion-framework-module-app`
234
- - **AppClient.ts**: Added `getAppBuild` method with tag support and updated `getAppManifest` signature
235
- - **AppModuleProvider.ts**: Enhanced `setCurrentApp` method to handle `AppReference` objects with tags
236
- - **App.ts**: Added `tag` getter and improved error handling in initialization
237
- - **types.ts**: Added `AppReference` type and extended `AppBundleState` with tag property
238
- - **actions.ts**: Updated `fetchManifest` action to accept tag parameter
239
- - **flows.ts**: Modified manifest fetching flow to handle tag-based requests
240
-
241
- ### `@equinor/fusion-framework-dev-portal`
242
- - **AppLoader.tsx**: Added `getAppTagFromUrl` utility function and integrated tag-based app loading
243
-
244
- ## Usage Examples
245
-
246
- ### Loading specific app version by tag
247
-
248
- ```typescript
249
- // Set current app with specific tag or version
250
- app.setCurrentApp({ appKey: "my-app", tag: "1.2.3" });
251
-
252
- app.setCurrentApp({ appKey: "my-app", tag: "preview" });
253
-
254
- // Extract tag from URL and load app
255
- const tag = getAppTagFromUrl();
256
- if (tag) {
257
- app.setCurrentApp({ appKey: "my-app", tag });
258
- }
259
- ```
260
-
261
- ### Fetching app builds
262
-
263
- ```typescript
264
- // Get build manifest for specific tag
265
- const buildManifest = await appClient.getAppBuild({
266
- appKey: "my-app",
267
- tag: "latest",
268
- });
269
- ```
270
-
271
- ## Migration Guide
272
-
273
- ### For App Consumers
274
- - No breaking changes - existing code continues to work
275
- - Optionally use new tag-based loading for version-specific deployments
276
-
277
- ### For App Developers
278
- - Consider adding `&tag` URL parameter support for testing different versions
279
- - Use new `AppReference` type when programmatically setting current apps with tags
280
-
281
- ## Technical Details
282
- - **Backward Compatibility**: All changes are backward compatible
283
- - **Caching**: Tag-based manifests and builds are cached separately
284
- - **Error Handling**: Enhanced error handling for build and manifest loading failures
285
- - **Type Safety**: Full TypeScript support for all new features
286
-
287
- closes: AB#65777
288
- related to: AB#65452
289
-
290
- ## 7.0.3
291
-
292
- ### Patch Changes
293
-
294
- - [#3654](https://github.com/equinor/fusion-framework/pull/3654) [`67bcfa2`](https://github.com/equinor/fusion-framework/commit/67bcfa20f01cb8f209806905874ab594cb43538e) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update immer from 10.1.3 to 10.2.0 for performance improvements, including optimized caching and iteration logic.
295
-
296
- - [#3544](https://github.com/equinor/fusion-framework/pull/3544) [`443414f`](https://github.com/equinor/fusion-framework/commit/443414fe0351b529cecf0a667383640567d05e74) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update zod from 4.1.11 to 4.1.12, which includes a critical bug fix for ZodError.flatten() preventing crashes on 'toString' key and improved error handling throughout the framework.
297
-
298
- - Updated dependencies [[`67bcfa2`](https://github.com/equinor/fusion-framework/commit/67bcfa20f01cb8f209806905874ab594cb43538e)]:
299
- - @equinor/fusion-observable@8.5.6
300
- - @equinor/fusion-query@6.0.1
301
-
302
- ## 7.0.2
303
-
304
- ### Patch Changes
305
-
306
- - Updated dependencies [[`6cb288b`](https://github.com/equinor/fusion-framework/commit/6cb288b9e1ec4fae68ae6899735c176837bb4275), [`d3bcafe`](https://github.com/equinor/fusion-framework/commit/d3bcafed8b8c5a02ebe68693588cb376ed5e1b0e)]:
307
- - @equinor/fusion-observable@8.5.5
308
- - @equinor/fusion-query@6.0.0
309
-
310
- ## 7.0.1
311
-
312
- ### Patch Changes
313
-
314
- - [#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
315
- - **v4.1.10**: Fixed shape caching issue (#5263) improving validation performance for complex schemas
316
- - **v4.1.11**: Maintenance release with general improvements
317
-
318
- This patch update enhances schema validation performance without changing any APIs.
319
-
320
- - Updated dependencies [[`3b614f8`](https://github.com/equinor/fusion-framework/commit/3b614f87138f5a52f8ccc50ca8c6598ef3db37d6)]:
321
- - @equinor/fusion-observable@8.5.4
322
- - @equinor/fusion-query@5.2.14
323
-
324
- ## 7.0.0
325
-
326
- ### Major Changes
327
-
328
- - [#3394](https://github.com/equinor/fusion-framework/pull/3394) [`c222c67`](https://github.com/equinor/fusion-framework/commit/c222c673bc7cdefff6eb0cd9436bfa3d1f185295) Thanks [@odinr](https://github.com/odinr)! - feat: migrate to zod v4
329
-
330
- Updated source code to migrate from zod v3 to v4. Updated zod dependency from v3.25.76 to v4.1.8 and modified schema definitions in the app module to use explicit key and value types for records and updated error message format from `description` to `message` for zod v4 compatibility.
331
-
332
- Key changes in source code:
333
- - Fixed record schema definitions to use explicit key and value types (`z.record(z.string(), z.any())`)
334
- - Updated error message options format (replaced `description` with `message`)
335
- - Enhanced `ApiAppConfigSchema` with proper record type definitions for environment and endpoints
336
- - Updated `ApiApplicationPersonSchema` to use zod v4 error message format
337
-
338
- Breaking changes: Record schemas must specify both key and value types explicitly. Error message format has changed from zod v3 to v4 format. Function schema definitions now require explicit typing.
339
-
340
- Links:
341
- - [Zod v4 Migration Guide](https://github.com/colinhacks/zod/releases/tag/v4.0.0)
342
- - [Zod v4.1.8 Release Notes](https://github.com/colinhacks/zod/releases/tag/v4.1.8)
343
-
344
- ## 6.1.19
345
-
346
- ### Patch Changes
347
-
348
- - [#3367](https://github.com/equinor/fusion-framework/pull/3367) [`e7de2b7`](https://github.com/equinor/fusion-framework/commit/e7de2b7c1114094da445625a761fc9a3be6bdf87) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Add `landing-page` to union of `AppType`
349
-
350
- - [#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.
351
-
352
- ### Breaking Changes
353
- - Immer 10.x introduces stricter TypeScript types for draft functions
354
- - `ValidRecipeReturnType` type constraints have changed
355
- - Promise return types in draft functions are no longer automatically handled
356
-
357
- ### Fixes Applied
358
- - Updated BookmarkProvider to handle new immer type constraints
359
- - Fixed ObservableInput type assignments in mergeScan operations
360
- - Removed async/await from immer draft functions to comply with new type requirements
361
-
362
- ### Links
363
- - [Immer 10.0.0 Release Notes](https://github.com/immerjs/immer/releases/tag/v10.0.0)
364
- - [Immer Migration Guide](https://github.com/immerjs/immer/blob/main/MIGRATION.md)
365
-
366
- - [#3386](https://github.com/equinor/fusion-framework/pull/3386) [`d740b78`](https://github.com/equinor/fusion-framework/commit/d740b7829694efb73edcd32006ec1f26e0075e9a) Thanks [@eikeland](https://github.com/eikeland)! - Added 'template-app' as a new app type to the AppType union.
367
-
368
- This change extends the available app types that consumers can use when configuring applications, providing support for template-based apps.
369
-
370
- - [#3347](https://github.com/equinor/fusion-framework/pull/3347) [`11143fa`](https://github.com/equinor/fusion-framework/commit/11143fa3002fb8a6c095052a04c7e596c56bafa8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump uuid from 11.0.3 to 13.0.0
371
-
372
- ### Breaking Changes
373
- - v13.0.0: Make browser exports the default
374
- - v12.0.0: Update to TypeScript 5.2, remove CommonJS support, drop Node 16 support
375
-
376
- ### New Features
377
- - Improved v4() performance
378
- - Added Node 24 to CI matrix
379
- - Restored node: prefix support
380
-
381
- ### Links
382
- - [GitHub releases](https://github.com/uuidjs/uuid/releases/tag/v13.0.0)
383
- - [npm changelog](https://www.npmjs.com/package/uuid?activeTab=versions)
384
-
385
- - Updated dependencies [[`29f6710`](https://github.com/equinor/fusion-framework/commit/29f6710238baf9b29f42394b30cb8b97f25462c3), [`7bb88c6`](https://github.com/equinor/fusion-framework/commit/7bb88c6247f3d93eccf363d610116c519f1ecff4), [`11143fa`](https://github.com/equinor/fusion-framework/commit/11143fa3002fb8a6c095052a04c7e596c56bafa8)]:
386
- - @equinor/fusion-query@5.2.13
387
- - @equinor/fusion-observable@8.5.3
388
-
389
- ## 6.1.18
390
-
391
- ### Patch Changes
392
-
393
- - [#3315](https://github.com/equinor/fusion-framework/pull/3315) [`2ea9fb6`](https://github.com/equinor/fusion-framework/commit/2ea9fb63bdf967e0d010ddae2af9f6fb32077240) Thanks [@Noggling](https://github.com/Noggling)! - Improve error handling in AppClient
394
- - Add support for HTTP 410 (Gone) status code handling across all error types
395
- - Import and use `HttpJsonResponseError` for more specific error handling in `getAppManifest`
396
- - Add 'deleted' error type to handle when application resources have been deleted
397
- - Update error handling logic to properly handle different error types in the catch blocks
398
- - Ensure proper error propagation and type checking for manifest, config, and settings errors
399
-
400
- ## 6.1.17
401
-
402
- ### Patch Changes
403
-
404
- - [#3075](https://github.com/equinor/fusion-framework/pull/3075) [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253) Thanks [@odinr](https://github.com/odinr)! - Upgrade zod dependency to ^3.25.76 in all affected packages.
405
-
406
- ## 6.1.16
407
-
408
- ### Patch Changes
409
-
410
- - [#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
411
- - Updated package.json typesVersions.
412
- - Ensures backward compatibility with older node versions.
413
- - Ensured consistency with workspace and repository configuration.
414
-
415
- - Updated dependencies [[`7441b13`](https://github.com/equinor/fusion-framework/commit/7441b13aa50dd7362d1629086a27b6b4e571575d)]:
416
- - @equinor/fusion-query@5.2.11
417
-
418
- ## 6.1.15
419
-
420
- ### Patch Changes
421
-
422
- - Updated dependencies [[`0d22e3c`](https://github.com/equinor/fusion-framework/commit/0d22e3c486ab11c40f14fb1f11f0b718e7bf1593)]:
423
- - @equinor/fusion-observable@8.5.1
424
- - @equinor/fusion-query@5.2.10
425
-
426
- ## 6.1.14
427
-
428
- ### Patch Changes
429
-
430
- - Updated dependencies [[`d247ec7`](https://github.com/equinor/fusion-framework/commit/d247ec7482a4d5231657875f6c6733ce37df07c9), [`89f80e4`](https://github.com/equinor/fusion-framework/commit/89f80e41dac04e71518c7314cada86ecc835708d)]:
431
- - @equinor/fusion-observable@8.5.0
432
- - @equinor/fusion-query@5.2.9
433
-
434
- ## 6.1.13
435
-
436
- ### Patch Changes
437
-
438
- - Updated dependencies [[`96bb1fb`](https://github.com/equinor/fusion-framework/commit/96bb1fb744d8dc2410e99fea6ca948d2d5489428)]:
439
- - @equinor/fusion-observable@8.4.9
440
- - @equinor/fusion-query@5.2.8
441
-
442
- ## 6.1.12
443
-
444
- ### Patch Changes
445
-
446
- - [#3054](https://github.com/equinor/fusion-framework/pull/3054) [`c6af3a3`](https://github.com/equinor/fusion-framework/commit/c6af3a3c926fb245e9d056b506d47b8bf4f1efde) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Re-add typesVersions from package.json files
447
-
448
- - Updated dependencies [[`c6af3a3`](https://github.com/equinor/fusion-framework/commit/c6af3a3c926fb245e9d056b506d47b8bf4f1efde)]:
449
- - @equinor/fusion-observable@8.4.8
450
- - @equinor/fusion-query@5.2.7
451
-
452
- ## 6.1.11
453
-
454
- ### Patch Changes
455
-
456
- - Updated dependencies []:
457
- - @equinor/fusion-query@5.2.6
458
-
459
- ## 6.1.10
460
-
461
- ### Patch Changes
462
-
463
- - [#3012](https://github.com/equinor/fusion-framework/pull/3012) [`f53b60b`](https://github.com/equinor/fusion-framework/commit/f53b60b7805706ce7617e614f0ac0c24317a2e43) Thanks [@odinr](https://github.com/odinr)! - removed `typesVersions` from packages, since we no longer support TS < 4.7, also corrected `types` path in package.json
464
-
465
- - Updated dependencies [[`f53b60b`](https://github.com/equinor/fusion-framework/commit/f53b60b7805706ce7617e614f0ac0c24317a2e43)]:
466
- - @equinor/fusion-observable@8.4.7
467
- - @equinor/fusion-query@5.2.5
468
-
469
- ## 6.1.9
470
-
471
- ### Patch Changes
472
-
473
- - Updated dependencies []:
474
- - @equinor/fusion-query@5.2.4
475
-
476
- ## 6.1.8
477
-
478
- ### Patch Changes
479
-
480
- - [#2929](https://github.com/equinor/fusion-framework/pull/2929) [`e3de5fa`](https://github.com/equinor/fusion-framework/commit/e3de5fa01528705f8032f673bb03fe48ac97a152) Thanks [@AndrejNikolicEq](https://github.com/AndrejNikolicEq)! - Added `queueOperator: "merge"` to manifest and config in AppClient
481
-
482
- ## 6.1.7
483
-
484
- ### Patch Changes
485
-
486
- - [#2917](https://github.com/equinor/fusion-framework/pull/2917) [`378f897`](https://github.com/equinor/fusion-framework/commit/378f89707a357d165b84ea82b74147b7f0d87f52) Thanks [@AndrejNikolicEq](https://github.com/AndrejNikolicEq)! - Add `webpackIgnore` to module import for application
487
-
488
- ## 6.1.6
489
-
490
- ### Patch Changes
491
-
492
- - [#2885](https://github.com/equinor/fusion-framework/pull/2885) [`abb3560`](https://github.com/equinor/fusion-framework/commit/abb3560a22ad8830df19904272035458433f4237) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update he `Typescript` version `^5.7.3` to `^5.8.2`
493
-
494
- - Updated dependencies [[`abb3560`](https://github.com/equinor/fusion-framework/commit/abb3560a22ad8830df19904272035458433f4237), [`d20db24`](https://github.com/equinor/fusion-framework/commit/d20db24c73690e90a5860fe5160909c77efa41cb), [`e695290`](https://github.com/equinor/fusion-framework/commit/e69529086e90b1d0d8aaf6d4b1de0e1167ce9424), [`e695290`](https://github.com/equinor/fusion-framework/commit/e69529086e90b1d0d8aaf6d4b1de0e1167ce9424), [`e695290`](https://github.com/equinor/fusion-framework/commit/e69529086e90b1d0d8aaf6d4b1de0e1167ce9424)]:
495
- - @equinor/fusion-observable@8.4.6
496
- - @equinor/fusion-query@5.2.3
497
-
498
- ## 6.1.5
499
-
500
- ### Patch Changes
501
-
502
- - [#2852](https://github.com/equinor/fusion-framework/pull/2852) [`ba5d12e`](https://github.com/equinor/fusion-framework/commit/ba5d12eba0a38db412353765e997d02c1fbb478d) Thanks [@odinr](https://github.com/odinr)! - replaced forEach with for-of loops for better readability
503
-
504
- - [#2848](https://github.com/equinor/fusion-framework/pull/2848) [`dcd2fb1`](https://github.com/equinor/fusion-framework/commit/dcd2fb1394e175d0cc2a4289ed3ede8e0271d67d) Thanks [@odinr](https://github.com/odinr)! - Refactored imports to use `type` when importing types from a module, to conform with the `useImportType` rule in Biome.
505
-
506
- - Updated dependencies [[`811f1a0`](https://github.com/equinor/fusion-framework/commit/811f1a0139ff4d1b0c3fba1ec2b77cc84ba080d1), [`2fe6241`](https://github.com/equinor/fusion-framework/commit/2fe624186640c3b30079c7d76f0e3af65f64f5d2), [`dcd2fb1`](https://github.com/equinor/fusion-framework/commit/dcd2fb1394e175d0cc2a4289ed3ede8e0271d67d)]:
507
- - @equinor/fusion-observable@8.4.5
508
- - @equinor/fusion-query@5.2.2
509
-
510
- ## 6.1.4
511
-
512
- ### Patch Changes
513
-
514
- - Updated dependencies [[`7f4a381`](https://github.com/equinor/fusion-framework/commit/7f4a381ee3594a8cc1c77f0c13c1ba70223d8bf1)]:
515
- - @equinor/fusion-observable@8.4.4
516
- - @equinor/fusion-query@5.2.1
517
-
518
- ## 6.1.3
519
-
520
- ### Patch Changes
521
-
522
- - [#2519](https://github.com/equinor/fusion-framework/pull/2519) [`83a7ee9`](https://github.com/equinor/fusion-framework/commit/83a7ee971785343bccedc2d72cc02486193615af) Thanks [@eikeland](https://github.com/eikeland)! - ### Changes:
523
- - Updated `AppClient` class to improve the query for fetching app manifests:
524
- - Adjusted the query path manifests method to include `$expand=category,admins,owners,keywords` when `filterByCurrentUser` is not specified.
525
- - Minor formatting changes for better readability.
526
-
527
- ## 6.1.2
528
-
529
- ### Patch Changes
530
-
531
- - [#2685](https://github.com/equinor/fusion-framework/pull/2685) [`add2e98`](https://github.com/equinor/fusion-framework/commit/add2e98d23e683a801729e9af543cfa15c574e27) Thanks [@eikeland](https://github.com/eikeland)! - Added versioning support to `AppModuleProvider`.
532
-
533
- **Modified files:**
534
- - `packages/modules/app/src/AppModuleProvider.ts`
535
-
536
- **Changes:**
537
- - Imported `SemanticVersion` from `@equinor/fusion-framework-module`.
538
- - Imported `version` from `./version`.
539
- - Added a `version` getter to `AppModuleProvider` that returns a `SemanticVersion` instance.
540
-
541
- - Updated dependencies [[`a965fbe`](https://github.com/equinor/fusion-framework/commit/a965fbeb9544b74f7d7b4aaa1e57c50d2ae4a564)]:
542
- - @equinor/fusion-query@5.2.0
543
-
544
- ## 6.1.1
545
-
546
- ### Patch Changes
547
-
548
- - [#2654](https://github.com/equinor/fusion-framework/pull/2654) [`59ab642`](https://github.com/equinor/fusion-framework/commit/59ab6424f3ce80649f42ddb6804b46f6789607ba) Thanks [@eikeland](https://github.com/eikeland)! - Reverting update to the `manifests` call `selector` function in `AppClient` to use `jsonSelector` and parse the response with `ApplicationSchema`.
549
-
550
- **Modified files:**
551
- - `packages/modules/app/src/AppClient.ts`
552
-
553
- **Changes:**
554
- - Replaced `res.json()` with `jsonSelector(res)`
555
- - Parsed the response using `ApplicationSchema.array().parse(response.value)`
556
-
557
- ## 6.1.0
558
-
559
- ### Minor Changes
560
-
561
- - [#2577](https://github.com/equinor/fusion-framework/pull/2577) [`c3ba9f1`](https://github.com/equinor/fusion-framework/commit/c3ba9f109d9f96d6dc6ee2f0ddac00c8b3090982) Thanks [@eikeland](https://github.com/eikeland)! - Added `updateSetting` and `updateSettingAsync` to the `App` class. This allows updating a setting in settings without the need to handle the settings object directly. This wil ensure that the settings are mutated correctly.
562
-
563
- ```ts
564
- const app = new App();
565
- // the app class will fetch the latest settings before updating the setting
566
- app.updateSetting("property", "value");
567
- ```
568
-
569
- example of flux state of settings:
570
-
571
- ```ts
572
- const app = new App();
573
- const settings = app.getSettings();
574
-
575
- setTimeout(() => {
576
- settings.foo = "foo";
577
- app.updateSettingsAsync(settings);
578
- }, 1000);
579
-
580
- setTimeout(() => {
581
- settings.bar = "bar";
582
- app.updateSettingsAsync(settings);
583
- // foo is now reset to its original value, which is not what we want
584
- }, 2000);
585
- ```
586
-
587
- - [#2577](https://github.com/equinor/fusion-framework/pull/2577) [`c3ba9f1`](https://github.com/equinor/fusion-framework/commit/c3ba9f109d9f96d6dc6ee2f0ddac00c8b3090982) Thanks [@eikeland](https://github.com/eikeland)! - #### Changes:
588
- 1. **AppClient.ts**
589
- - Added `updateAppSettings` method to set app settings by appKey.
590
- 2. **AppModuleProvider.ts**
591
- - Added `updateAppSettings` method to update app settings.
592
- 3. **App.ts**
593
- - Added `updateSettings` and `updateSettingsAsync` methods to set app settings.
594
- - Added effects to monitor and dispatch events for settings updates.
595
- 4. **actions.ts**
596
- - Added `updateSettings` async action for updating settings.
597
- 5. **create-reducer.ts**
598
- - Added reducer case for `updateSettings.success` to update state settings.
599
- 6. **create-state.ts**
600
- - Added `handleUpdateSettings` flow to handle updating settings.
601
- 7. **events.ts**
602
- - Added new events: `onAppSettingsUpdate`, `onAppSettingsUpdated`, and `onAppSettingsUpdateFailure`.
603
- 8. **flows.ts**
604
- - Added `handleUpdateSettings` flow to handle the set settings action.
605
- 9. **package.json**
606
- - Added `settings` entry to exports and types.
607
- 10. **index.ts**
608
- - Created new file to export `useAppSettings`.
609
- 11. **useAppSettings.ts**
610
- - Created new hook for handling app settings.
611
- 12. **app-proxy-plugin.ts**
612
- - Add conditional handler for persons/me/appKey/settings to prevent matching against appmanifest path
613
-
614
- ## 6.0.3
615
-
616
- ### Patch Changes
617
-
618
- - Updated dependencies [[`30767a2`](https://github.com/equinor/fusion-framework/commit/30767a2f72b54c2a3ea98ce08186017e34ae16bd)]:
619
- - @equinor/fusion-observable@8.4.3
620
- - @equinor/fusion-query@5.1.5
621
-
622
- ## 6.0.2
623
-
624
- ### Patch Changes
625
-
626
- - Updated dependencies [[`21db01b`](https://github.com/equinor/fusion-framework/commit/21db01bbe5113b07aaa715d554378561e1a5223d)]:
627
- - @equinor/fusion-observable@8.4.2
628
- - @equinor/fusion-query@5.1.4
629
-
630
- ## 6.0.1
631
-
632
- ### Patch Changes
633
-
634
- - [#2520](https://github.com/equinor/fusion-framework/pull/2520) [`248ee1f`](https://github.com/equinor/fusion-framework/commit/248ee1f83978a158dfb88dd47d8e8bcaac0e3574) Thanks [@eikeland](https://github.com/eikeland)! - ### Changes:
635
- - Updated the `AppClient` class to modify the query path in the `fn` method for fetching app manifests:
636
- - Changed the path from `/apps/${appKey}` to `/persons/me/apps/${appKey}`.
637
-
638
- ## 6.0.0
639
-
640
- ### Major Changes
641
-
642
- - [#2494](https://github.com/equinor/fusion-framework/pull/2494) [`e11ad64`](https://github.com/equinor/fusion-framework/commit/e11ad64a42210443bdfd9ab9eb2fb95e7e345251) Thanks [@odinr](https://github.com/odinr)! - Adjusted module to the new app service API.
643
-
644
- > [!WARNING]
645
- > This will introduce breaking changes to the configuration of `AppConfigurator.client`.
646
-
647
- **Added**
648
- - Introduced `AppClient` class to handle application manifest and configuration queries.
649
- - Added `zod` to validate the application manifest.
650
-
651
- **Changed**
652
- - Updated `AppModuleProvider` to use `AppClient` for fetching application manifests and configurations.
653
- - Modified `AppConfigurator` to utilize `AppClient` for client configuration.
654
- - Updated `useApps` hook with new input parameter for `filterByCurrentUser` in `fusion-framework-react`.
655
-
656
- **Migration**
657
-
658
- before:
659
-
660
- ```ts
661
- configurator.setClient({
662
- getAppManifest: {
663
- client: {
664
- fn: ({ appKey }) => httpClient.json$<ApiApp>(`/apps/${appKey}`),
665
- },
666
- key: ({ appKey }) => appKey,
667
- },
668
- getAppManifests: {
669
- client: {
670
- fn: () => httpClient.json$<ApiApp[]>(`/apps`),
671
- },
672
- key: () => `all-apps`,
673
- },
674
- getAppConfig: {
675
- client: {
676
- fn: ({ appKey }) => httpClient.json$<ApiApp>(`/apps/${appKey}/config`),
677
- },
678
- key: ({ appKey }) => appKey,
679
- },
680
- });
681
- ```
682
-
683
- after:
684
-
685
- ```ts
686
- import { AppClient } from `@equinor/fusion-framework-module-app`;
687
- configurator.setClient(new AppClient());
688
- ```
689
-
690
- custom client implementation:
691
-
692
- ```ts
693
- import { AppClient } from `@equinor/fusion-framework-module-app`;
694
- class CustomAppClient implements IAppClient { ... }
695
- configurator.setClient(new CustomAppClient());
696
- ```
697
-
698
- ## 5.3.11
699
-
700
- ### Patch Changes
701
-
702
- - Updated dependencies [[`f7c143d`](https://github.com/equinor/fusion-framework/commit/f7c143d44a88cc25c377d3ce8c3d1744114b891d)]:
703
- - @equinor/fusion-observable@8.4.1
704
- - @equinor/fusion-query@5.1.3
705
-
706
- ## 5.3.10
707
-
708
- ### Patch Changes
709
-
710
- - Updated dependencies [[`be2e925`](https://github.com/equinor/fusion-framework/commit/be2e92532f4a4b8f0b2c9e12d4adf942d380423e)]:
711
- - @equinor/fusion-query@5.1.2
712
-
713
- ## 5.3.9
714
-
715
- ### Patch Changes
716
-
717
- - Updated dependencies [[`bbde502`](https://github.com/equinor/fusion-framework/commit/bbde502e638f459379f63968febbc97ebe282b76), [`decb9e9`](https://github.com/equinor/fusion-framework/commit/decb9e9e3d1bb1b0577b729a1e7ae812afdd83cb), [`e092f75`](https://github.com/equinor/fusion-framework/commit/e092f7599f1f2e0e0676a9f10565299272813594)]:
718
- - @equinor/fusion-observable@8.4.0
719
- - @equinor/fusion-query@5.1.1
720
-
721
- ## 5.3.8
722
-
723
- ### Patch Changes
724
-
725
- - [#2333](https://github.com/equinor/fusion-framework/pull/2333) [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1) Thanks [@odinr](https://github.com/odinr)! - Updated `TypeScript` to 5.5.3
726
-
727
- - [#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.
728
-
729
- Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
730
- 1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
731
- 2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
732
- 3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
733
-
734
- No action is required from consumers of the library. This change affects the build process and doesn't introduce any breaking changes or new features.
735
-
736
- Before:
737
-
738
- ```json
739
- {
740
- "compilerOptions": {
741
- "module": "ES2022",
742
- "target": "ES6",
743
- "incremental": true,
744
- "removeComments": true,
745
- "preserveConstEnums": true,
746
- "sourceMap": true,
747
- "moduleResolution": "node"
748
- }
749
- }
750
- ```
751
-
752
- After:
753
-
754
- ```json
755
- {
756
- "compilerOptions": {
757
- "module": "ES2022",
758
- "target": "ES6",
759
- "incremental": true,
760
- "preserveConstEnums": true,
761
- "sourceMap": true,
762
- "moduleResolution": "node"
763
- }
764
- }
765
- ```
766
-
767
- This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
768
-
769
- - Updated dependencies [[`5e20ce1`](https://github.com/equinor/fusion-framework/commit/5e20ce17af709f0443b7110bfc952ff8d8d81dee), [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1), [`29ff796`](https://github.com/equinor/fusion-framework/commit/29ff796ebb3a643c604e4153b6798bde5992363c), [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee), [`5e20ce1`](https://github.com/equinor/fusion-framework/commit/5e20ce17af709f0443b7110bfc952ff8d8d81dee)]:
770
- - @equinor/fusion-query@5.1.0
771
- - @equinor/fusion-observable@8.3.3
772
-
773
- ## 5.3.7
774
-
775
- ### Patch Changes
776
-
777
- - [#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.
778
- - **Added**: New utility types and functions for handling action types and payloads in a more type-safe manner.
779
-
780
- - [#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.
781
-
782
- - Updated dependencies [[`97e41a5`](https://github.com/equinor/fusion-framework/commit/97e41a55d05644b6684c6cb165b65b115bd416eb)]:
783
- - @equinor/fusion-observable@8.3.2
784
- - @equinor/fusion-query@5.0.5
785
-
786
- ## 5.3.6
787
-
788
- ### Patch Changes
789
-
790
- - Updated dependencies [[`1681940`](https://github.com/equinor/fusion-framework/commit/16819401db191321637fb2a17390abd98738c103), [`72f48ec`](https://github.com/equinor/fusion-framework/commit/72f48eccc7262f6c419c60cc32f0dc829601ceab)]:
791
- - @equinor/fusion-query@5.0.4
792
- - @equinor/fusion-observable@8.3.1
793
-
794
- ## 5.3.5
795
-
796
- ### Patch Changes
797
-
798
- - Updated dependencies [[`6a81125`](https://github.com/equinor/fusion-framework/commit/6a81125ca856bbddbd1ec9e66a30e887cef93f66), [`cd737c2`](https://github.com/equinor/fusion-framework/commit/cd737c2f916747965ece46ed6f33fdadb776c90b)]:
799
- - @equinor/fusion-query@5.0.3
800
-
801
- ## 5.3.4
802
-
803
- ### Patch Changes
804
-
805
- - Updated dependencies [[`bd3d3e1`](https://github.com/equinor/fusion-framework/commit/bd3d3e165b3cbcef8f2c7b3219d21387731e5995)]:
806
- - @equinor/fusion-query@5.0.2
807
-
808
- ## 5.3.3
809
-
810
- ### Patch Changes
811
-
812
- - Updated dependencies [[`491c2e0`](https://github.com/equinor/fusion-framework/commit/491c2e05a2383dc7aa310f11ba6f7325a69e7197)]:
813
- - @equinor/fusion-query@5.0.1
814
-
815
- ## 5.3.2
816
-
817
- ### Patch Changes
818
-
819
- - Updated dependencies [[`b9c1643`](https://github.com/equinor/fusion-framework/commit/b9c164337d984e760d4701d1c534b14cb52aa7e2), [`b9c1643`](https://github.com/equinor/fusion-framework/commit/b9c164337d984e760d4701d1c534b14cb52aa7e2), [`b9c1643`](https://github.com/equinor/fusion-framework/commit/b9c164337d984e760d4701d1c534b14cb52aa7e2)]:
820
- - @equinor/fusion-query@5.0.0
821
-
822
- ## 5.3.1
823
-
824
- ### Patch Changes
825
-
826
- - Updated dependencies [[`572a199`](https://github.com/equinor/fusion-framework/commit/572a199b8b3070af16d76238aa30d7aaf36a115a), [`f5e4090`](https://github.com/equinor/fusion-framework/commit/f5e4090fa285db8dc10e09b450cee5767437d883)]:
827
- - @equinor/fusion-observable@8.3.0
828
- - @equinor/fusion-query@4.2.0
829
-
830
- ## 5.3.0
831
-
832
- ### Minor Changes
833
-
834
- - [#1953](https://github.com/equinor/fusion-framework/pull/1953) [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904) Thanks [@odinr](https://github.com/odinr)! - updated typescript to 5.4.2
835
-
836
- ### Patch Changes
837
-
838
- - Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
839
- - @equinor/fusion-observable@8.2.0
840
- - @equinor/fusion-query@4.1.0
841
-
842
- ## 5.2.14
843
-
844
- ### Patch Changes
845
-
846
- - [#1879](https://github.com/equinor/fusion-framework/pull/1879) [`2acd475`](https://github.com/equinor/fusion-framework/commit/2acd47532fe680f498fdf7229309cddb2594e391) Thanks [@odinr](https://github.com/odinr)! - improved documentation
847
-
848
- ## 5.2.13
849
-
850
- ### Patch Changes
851
-
852
- - [#1763](https://github.com/equinor/fusion-framework/pull/1763) [`1ca8264`](https://github.com/equinor/fusion-framework/commit/1ca826489a0d1dd755324344a12bbf6659a3be12) Thanks [@odinr](https://github.com/odinr)! - improve type of current application
853
- - result will be `undefined` if current application has never been set
854
- - result will be `IApplication` if current application is set
855
- - result will be `null` if current application is cleared
856
-
857
- - Updated dependencies [[`036546f`](https://github.com/equinor/fusion-framework/commit/036546f2e3d9c0d289c7145da84e940673027b5e), [`d0c0c6a`](https://github.com/equinor/fusion-framework/commit/d0c0c6a971a478e3f447663bf50b4e3a7cb1517e)]:
858
- - @equinor/fusion-observable@8.1.5
859
- - @equinor/fusion-query@4.0.6
860
-
861
- ## 5.2.12
862
-
863
- ### Patch Changes
864
-
865
- - Updated dependencies [[`6ffaabf`](https://github.com/equinor/fusion-framework/commit/6ffaabf120704f2f4f4074a0fa0a17faf77fe22a)]:
866
- - @equinor/fusion-observable@8.1.4
867
- - @equinor/fusion-query@4.0.5
868
-
869
- ## 5.2.11
870
-
871
- ### Patch Changes
872
-
873
- - [#1595](https://github.com/equinor/fusion-framework/pull/1595) [`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125) Thanks [@Gustav-Eikaas](https://github.com/Gustav-Eikaas)! - support for module resolution NodeNext & Bundler
874
-
875
- - Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
876
- - @equinor/fusion-observable@8.1.3
877
- - @equinor/fusion-query@4.0.4
878
-
879
- ## 5.2.10
880
-
881
- ### Patch Changes
882
-
883
- - [#1545](https://github.com/equinor/fusion-framework/pull/1545) [`6d303787`](https://github.com/equinor/fusion-framework/commit/6d303787f647bb2fc3c90456eccac751abb264c4) Thanks [@odinr](https://github.com/odinr)! - fixed emittet event detials
884
-
885
- ## 5.2.9
886
-
887
- ### Patch Changes
888
-
889
- - [#1529](https://github.com/equinor/fusion-framework/pull/1529) [`8274dca1`](https://github.com/equinor/fusion-framework/commit/8274dca10a773e1d29ffbce82a6f6f2bae818316) Thanks [@odinr](https://github.com/odinr)! - - improved app event dispatch
890
- - added mapping for all app events
891
-
892
- ## 5.2.8
893
-
894
- ### Patch Changes
895
-
896
- - Updated dependencies [[`446b63ce`](https://github.com/equinor/fusion-framework/commit/446b63ce44b59a3aaab4399c0d877d3a1b560a0e)]:
897
- - @equinor/fusion-query@4.0.3
898
-
899
- ## 5.2.7
900
-
901
- ### Patch Changes
902
-
903
- - [#1305](https://github.com/equinor/fusion-framework/pull/1305) [`7ad31761`](https://github.com/equinor/fusion-framework/commit/7ad3176102f92da108b67ede6fdf29b76149bed9) Thanks [@odinr](https://github.com/odinr)! - fixed duplicate calls from flows
904
-
905
- alignment after changes to `@equinor/fusion-query`
906
-
907
- - Updated dependencies [[`7ad31761`](https://github.com/equinor/fusion-framework/commit/7ad3176102f92da108b67ede6fdf29b76149bed9)]:
908
- - @equinor/fusion-query@4.0.2
909
-
910
- ## 5.2.6
911
-
912
- ### Patch Changes
913
-
914
- - [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
915
-
916
- - Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
917
- - @equinor/fusion-observable@8.1.2
918
- - @equinor/fusion-query@4.0.1
919
-
920
- ## 5.2.5
921
-
922
- ### Patch Changes
923
-
924
- - Updated dependencies [[`ebcabd0e`](https://github.com/equinor/fusion-framework/commit/ebcabd0e6945e1420a0a9a7d82bd9255da1b8578), [`8739a5a6`](https://github.com/equinor/fusion-framework/commit/8739a5a65d8aaa46ce9ef56cce013efeeb006e8a)]:
925
- - @equinor/fusion-query@4.0.0
926
-
927
- ## 5.2.4
928
-
929
- ### Patch Changes
930
-
931
- - Updated dependencies [[`6f64d1aa`](https://github.com/equinor/fusion-framework/commit/6f64d1aa5e44af37f0abd76cef36e87761134760), [`758eaaf4`](https://github.com/equinor/fusion-framework/commit/758eaaf436ae28d180e7d91818b41abe0d9624c4)]:
932
- - @equinor/fusion-observable@8.1.1
933
- - @equinor/fusion-query@3.0.7
934
-
935
- ## 5.2.3
936
-
937
- ### Patch Changes
938
-
939
- - Updated dependencies [[`066d843c`](https://github.com/equinor/fusion-framework/commit/066d843c88cb974150f23f4fb9e7d0b066c93594)]:
940
- - @equinor/fusion-query@3.0.6
941
-
942
- ## 5.2.2
943
-
944
- ### Patch Changes
945
-
946
- - [#1109](https://github.com/equinor/fusion-framework/pull/1109) [`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862) Thanks [@odinr](https://github.com/odinr)! - Change packaged manager from yarn to pnpm
947
-
948
- conflicts of `@types/react` made random outcomes when using `yarn`
949
-
950
- this change should not affect consumer of the packages, but might conflict dependent on local package manager.
951
-
952
- - [#1145](https://github.com/equinor/fusion-framework/pull/1145) [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump rxjs from 7.5.7 to [7.8.1](https://github.com/ReactiveX/rxjs/blob/7.8.1/CHANGELOG.md)
953
-
954
- - Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`2dccccd1`](https://github.com/equinor/fusion-framework/commit/2dccccd124fbe3cdde2132c29c27d3da9fc6f1f5), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
955
- - @equinor/fusion-observable@8.1.0
956
- - @equinor/fusion-query@3.0.5
957
-
958
- ## 5.2.1
959
-
960
- ### Patch Changes
961
-
962
- - [#946](https://github.com/equinor/fusion-framework/pull/946) [`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352) Thanks [@odinr](https://github.com/odinr)! - Build/update typescript to 5
963
-
964
- ## 5.2.0
965
-
966
- ### Minor Changes
967
-
968
- - [#927](https://github.com/equinor/fusion-framework/pull/927) [`8bc4c5d6`](https://github.com/equinor/fusion-framework/commit/8bc4c5d6ed900e424efcab5572047c106d7ec04a) Thanks [@odinr](https://github.com/odinr)! - Create and expose interface for App
969
- - deprecate [AppModuleProvider.createApp](https://github.com/equinor/fusion-framework/blob/cf08d5ae3cef473e5025fd973a2a7a45a3b22dee/packages/modules/app/src/AppModuleProvider.ts#L171)
970
-
971
- this should not create any breaking changes since apps was only created from provider.
972
- if the class is still needed it can be imported:
973
-
974
- ```ts
975
- import { App } from "@equinor/fusion-framework-module-app/app";
976
- ```
977
-
978
- - [#927](https://github.com/equinor/fusion-framework/pull/927) [`8bc4c5d6`](https://github.com/equinor/fusion-framework/commit/8bc4c5d6ed900e424efcab5572047c106d7ec04a) Thanks [@odinr](https://github.com/odinr)! - Allow updating manifest of application
979
- - add meta data for `setManifest` action to flag if `merge` or `replace`
980
- - add method on `App` to update manifest, _default flag `merge`_
981
- - check in state reducer if `setManifest` action is `update` or `merge`
982
- - update flow `handleFetchManifest` to prop passing of flag
983
-
984
- ## 5.1.3
985
-
986
- ### Patch Changes
987
-
988
- - [#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**
989
- - align all versions of typescript
990
- - update types to build
991
- - 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
992
-
993
- All notable changes to this project will be documented in this file.
994
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
995
-
996
- ## [5.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@5.1.1...@equinor/fusion-framework-module-app@5.1.2) (2023-05-23)
997
-
998
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
999
-
1000
- ## 5.1.1 (2023-05-22)
1001
-
1002
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1003
-
1004
- ## 5.1.0 (2023-05-22)
1005
-
1006
- ### Features
1007
-
1008
- - **module-app:** allow type hinting modules and env ([c80be46](https://github.com/equinor/fusion-framework/commit/c80be46c3c16a40b53506c29debfe6196ea7d945))
1009
-
1010
- ## 5.0.1 (2023-05-05)
1011
-
1012
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1013
-
1014
- ## 5.0.0 (2023-04-16)
1015
-
1016
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1017
-
1018
- ## 4.0.8 (2023-03-22)
1019
-
1020
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1021
-
1022
- ## [4.0.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@4.0.6...@equinor/fusion-framework-module-app@4.0.7) (2023-03-20)
1023
-
1024
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1025
-
1026
- ## [4.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@4.0.5...@equinor/fusion-framework-module-app@4.0.6) (2023-02-22)
1027
-
1028
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1029
-
1030
- ## [4.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@4.0.4...@equinor/fusion-framework-module-app@4.0.5) (2023-02-20)
1031
-
1032
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1033
-
1034
- ## [4.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@4.0.3...@equinor/fusion-framework-module-app@4.0.4) (2023-02-13)
1035
-
1036
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1037
-
1038
- ## [4.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@4.0.2...@equinor/fusion-framework-module-app@4.0.3) (2023-02-09)
1039
-
1040
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1041
-
1042
- ## 4.0.2 (2023-02-02)
1043
-
1044
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1045
-
1046
- ## 4.0.1 (2023-01-30)
1047
-
1048
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1049
-
1050
- ## [4.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@3.2.5...@equinor/fusion-framework-module-app@4.0.0) (2023-01-27)
1051
-
1052
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1053
-
1054
- ## [4.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@3.2.5...@equinor/fusion-framework-module-app@4.0.0-alpha.0) (2023-01-26)
1055
-
1056
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1057
-
1058
- ## 3.2.5 (2023-01-26)
1059
-
1060
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1061
-
1062
- ## [3.2.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@3.2.3...@equinor/fusion-framework-module-app@3.2.4) (2023-01-17)
1063
-
1064
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1065
-
1066
- ## [3.2.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@3.2.2...@equinor/fusion-framework-module-app@3.2.3) (2023-01-16)
1067
-
1068
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1069
-
1070
- ## 3.2.2 (2023-01-16)
1071
-
1072
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1073
-
1074
- ## 3.2.1 (2023-01-12)
1075
-
1076
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1077
-
1078
- ## 3.2.0 (2023-01-10)
1079
-
1080
- ### Features
1081
-
1082
- - make app state sync ([c8b4567](https://github.com/equinor/fusion-framework/commit/c8b456743ff5b2b397ce928a1006936cb8de5488))
1083
-
1084
- ## 3.1.0 (2023-01-04)
1085
-
1086
- ### Features
1087
-
1088
- - **module-app:** allow clearing current app ([c7f4c14](https://github.com/equinor/fusion-framework/commit/c7f4c144c29c2c40df42eafcdaabfb8214e1e88d))
1089
-
1090
- ## 3.0.0 (2023-01-04)
1091
-
1092
- ### ⚠ BREAKING CHANGES
1093
-
1094
- - **module-app:** manifest prop rename
1095
-
1096
- ### Bug Fixes
1097
-
1098
- - **module-app:** rename `appKey` to `key` ([9ee97b1](https://github.com/equinor/fusion-framework/commit/9ee97b149b9167a3747da371de76490e287d9514))
1099
-
1100
- ## 2.8.1 (2022-12-21)
1101
-
1102
- ### Bug Fixes
1103
-
1104
- - **module-app:** fix typo ([7db0811](https://github.com/equinor/fusion-framework/commit/7db08113697761ecfa75b5684272e6244ec9e137))
1105
-
1106
- ## 2.8.0 (2022-12-21)
1107
-
1108
- ### Features
1109
-
1110
- - **module-app:** expose current state of app ([accb084](https://github.com/equinor/fusion-framework/commit/accb08477416541beaa39574ff966ab2784ad430))
1111
-
1112
- ## [2.7.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.7.0...@equinor/fusion-framework-module-app@2.7.1) (2022-12-16)
1113
-
1114
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1115
-
1116
- ## [2.7.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.6.0...@equinor/fusion-framework-module-app@2.7.0) (2022-12-16)
1117
-
1118
- ### Features
1119
-
1120
- - **module-app:** expose config builder ([ed0fe34](https://github.com/equinor/fusion-framework/commit/ed0fe34c6ba67c1487b1d4087a5bddb7e8eaf3c8))
1121
-
1122
- ### Bug Fixes
1123
-
1124
- - **module-app:** fix import ([4b08ae1](https://github.com/equinor/fusion-framework/commit/4b08ae1ec2316142961d464b4be9346fc9403430))
1125
-
1126
- ## [2.6.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.5.0...@equinor/fusion-framework-module-app@2.6.0) (2022-12-16)
1127
-
1128
- ### Features
1129
-
1130
- - **module-app:** add app events ([f302a89](https://github.com/equinor/fusion-framework/commit/f302a8986042567129737d181f376e0fded418f0))
1131
-
1132
- ## 2.5.0 (2022-12-14)
1133
-
1134
- ### Features
1135
-
1136
- - **module-app:** update manifest interface ([ba740ef](https://github.com/equinor/fusion-framework/commit/ba740ef6f7a37eb72b1386d929cc27bf0530218a))
1137
-
1138
- ### Bug Fixes
1139
-
1140
- - **module-app:** correct import and exports ([d9de2d7](https://github.com/equinor/fusion-framework/commit/d9de2d71cb2521fb4b38843e54a4928646294df8))
1141
- - **module-app:** fix key for fetching all manifest ([2df1815](https://github.com/equinor/fusion-framework/commit/2df18159d1128546b801c374f419b1e9528ca8c2))
1142
- - **module-app:** make app module optional ([fa5c0ed](https://github.com/equinor/fusion-framework/commit/fa5c0ed0a9afc1f9ade3adb6e52e4425a59a7aa6))
1143
-
1144
- ## [2.4.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.3.0...@equinor/fusion-framework-module-app@2.4.0) (2022-12-12)
1145
-
1146
- ### Features
1147
-
1148
- - **module-app:** allow creating app instance ([d2d3080](https://github.com/equinor/fusion-framework/commit/d2d3080f4822fefca5df5a4a1ce46f138095d567))
1149
-
1150
- ## 2.3.0 (2022-12-12)
1151
-
1152
- ### Features
1153
-
1154
- - **module-app:** add config builder ([0fe107c](https://github.com/equinor/fusion-framework/commit/0fe107c87a129c6e63044e6298914cdfc4e0d626))
1155
-
1156
- ## [2.2.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.1.6...@equinor/fusion-framework-module-app@2.2.0) (2022-12-12)
1157
-
1158
- ### Features
1159
-
1160
- - create instance container for application ([d5cbd74](https://github.com/equinor/fusion-framework/commit/d5cbd74b89cd9cba0dabef4a62f585c72e3c14be))
1161
- - **module-app:** load javascript modules ([bb3d2a1](https://github.com/equinor/fusion-framework/commit/bb3d2a1cb00b5753462094ebdf24c8ba3c614c9f))
1162
-
1163
- ## [2.1.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.1.5...@equinor/fusion-framework-module-app@2.1.6) (2022-12-08)
1164
-
1165
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1166
-
1167
- ## [2.1.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.1.4...@equinor/fusion-framework-module-app@2.1.5) (2022-12-08)
1168
-
1169
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1170
-
1171
- ## [2.1.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.1.3...@equinor/fusion-framework-module-app@2.1.4) (2022-12-08)
1172
-
1173
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1174
-
1175
- ## [2.1.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.1.2...@equinor/fusion-framework-module-app@2.1.3) (2022-12-08)
1176
-
1177
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1178
-
1179
- ## [2.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.1.1...@equinor/fusion-framework-module-app@2.1.2) (2022-12-08)
1180
-
1181
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1182
-
1183
- ## [2.1.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.1.0...@equinor/fusion-framework-module-app@2.1.1) (2022-12-06)
1184
-
1185
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1186
-
1187
- ## [2.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.0.1...@equinor/fusion-framework-module-app@2.1.0) (2022-12-05)
1188
-
1189
- ### Features
1190
-
1191
- - **context-selector:** header type contextselector and appcheck ([8ab0a50](https://github.com/equinor/fusion-framework/commit/8ab0a50e3f7ea3487796735c868f2e65d84fecd2))
1192
-
1193
- ## [2.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.0.1...@equinor/fusion-framework-module-app@2.0.2) (2022-12-05)
1194
-
1195
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1196
-
1197
- ## [2.0.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@2.0.0...@equinor/fusion-framework-module-app@2.0.1) (2022-12-02)
1198
-
1199
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1200
-
1201
- ## [2.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.11...@equinor/fusion-framework-module-app@2.0.0) (2022-12-02)
1202
-
1203
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1204
-
1205
- ## [2.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.11...@equinor/fusion-framework-module-app@2.0.0-alpha.0) (2022-12-02)
1206
-
1207
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1208
-
1209
- ## [1.5.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.10...@equinor/fusion-framework-module-app@1.5.11) (2022-12-01)
1210
-
1211
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1212
-
1213
- ## [1.5.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.9...@equinor/fusion-framework-module-app@1.5.10) (2022-12-01)
1214
-
1215
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1216
-
1217
- ## [1.5.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.8...@equinor/fusion-framework-module-app@1.5.9) (2022-12-01)
1218
-
1219
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1220
-
1221
- ## [1.5.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.7...@equinor/fusion-framework-module-app@1.5.8) (2022-12-01)
1222
-
1223
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1224
-
1225
- ## [1.5.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.6...@equinor/fusion-framework-module-app@1.5.7) (2022-12-01)
1226
-
1227
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1228
-
1229
- ## [1.5.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.5...@equinor/fusion-framework-module-app@1.5.6) (2022-12-01)
1230
-
1231
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1232
-
1233
- ## [1.5.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.4...@equinor/fusion-framework-module-app@1.5.5) (2022-12-01)
1234
-
1235
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1236
-
1237
- ## [1.5.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.3...@equinor/fusion-framework-module-app@1.5.4) (2022-12-01)
1238
-
1239
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1240
-
1241
- ## [1.5.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.2...@equinor/fusion-framework-module-app@1.5.3) (2022-12-01)
1242
-
1243
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1244
-
1245
- ## [1.5.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.1...@equinor/fusion-framework-module-app@1.5.2) (2022-12-01)
1246
-
1247
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1248
-
1249
- ## [1.5.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.5.0...@equinor/fusion-framework-module-app@1.5.1) (2022-12-01)
1250
-
1251
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1252
-
1253
- ## [1.5.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.4.4...@equinor/fusion-framework-module-app@1.5.0) (2022-12-01)
1254
-
1255
- ### Features
1256
-
1257
- - **query:** separate query from observable ([1408609](https://github.com/equinor/fusion-framework/commit/140860976c3ee9430a30deebcc8b08da857e5772))
1258
-
1259
- ## 1.4.4 (2022-12-01)
1260
-
1261
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1262
-
1263
- ## [1.4.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.4.2...@equinor/fusion-framework-module-app@1.4.3) (2022-11-20)
1264
-
1265
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1266
-
1267
- ## 1.4.2 (2022-11-18)
1268
-
1269
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1270
-
1271
- ## [1.4.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.4.0...@equinor/fusion-framework-module-app@1.4.1) (2022-11-18)
1272
-
1273
- ### Bug Fixes
1274
-
1275
- - **module-app:** fallback to portal ([6778624](https://github.com/equinor/fusion-framework/commit/67786241c809e27d60a2411dd6bffba315d5f3a3))
1276
-
1277
- ## 1.4.0 (2022-11-17)
1278
-
1279
- ### Features
1280
-
1281
- - **module-navigation:** initial ([891e69d](https://github.com/equinor/fusion-framework/commit/891e69d9a98ba02ee1f9dd1c5b0cb31ff1b5fd0f))
1282
-
1283
- ## [1.3.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.3.0...@equinor/fusion-framework-module-app@1.3.1) (2022-11-14)
1284
-
1285
- ### Bug Fixes
1286
-
1287
- - **module-app:** throw error when config or app not loading ([e4bd23a](https://github.com/equinor/fusion-framework/commit/e4bd23a4071bd68334aeaed9ed9ea12cac93222c))
1288
-
1289
- ## 1.3.0 (2022-11-14)
1290
-
1291
- ### Features
1292
-
1293
- - **module-app:** add app loader ([0ef0b71](https://github.com/equinor/fusion-framework/commit/0ef0b71de27f1dccc757aa7eceea558072a1db60))
1294
-
1295
- ## [1.2.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.1.6...@equinor/fusion-framework-module-app@1.2.0) (2022-11-14)
1296
-
1297
- ### Features
1298
-
1299
- - update packages to use observable ([98024aa](https://github.com/equinor/fusion-framework/commit/98024aa466c68f03bd793bd564cf7b6bf65def72))
1300
-
1301
- ## [1.1.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.1.5...@equinor/fusion-framework-module-app@1.1.6) (2022-11-11)
1302
-
1303
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1304
-
1305
- ## [1.1.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.1.4...@equinor/fusion-framework-module-app@1.1.5) (2022-11-11)
1306
-
1307
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1308
-
1309
- ## 1.1.4 (2022-11-11)
1310
-
1311
- ### Bug Fixes
1312
-
1313
- - **module-auth:** make http module await auth ([18a0ed9](https://github.com/equinor/fusion-framework/commit/18a0ed947e128bf1cdc86aa45d31e73c1f8c4bbb))
1314
-
1315
- ## 1.1.3 (2022-11-03)
1316
-
1317
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1318
-
1319
- ## [1.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.1.1...@equinor/fusion-framework-module-app@1.1.2) (2022-11-02)
1320
-
1321
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1322
-
1323
- ## 1.1.1 (2022-11-02)
1324
-
1325
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1326
-
1327
- ## 1.1.0 (2022-11-01)
1328
-
1329
- ### Features
1330
-
1331
- - **module-app:** initial app module ([ce5aed1](https://github.com/equinor/fusion-framework/commit/ce5aed124431afbe55b9cf11a50a5c8d5499260e))
1332
-
1333
- ## 1.0.12 (2022-10-27)
1334
-
1335
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1336
-
1337
- ## 1.0.11 (2022-10-21)
1338
-
1339
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1340
-
1341
- ## [1.0.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.9...@equinor/fusion-framework-module-app@1.0.10) (2022-10-17)
1342
-
1343
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1344
-
1345
- ## 1.0.9 (2022-10-03)
1346
-
1347
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1348
-
1349
- ## [1.0.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.7...@equinor/fusion-framework-module-app@1.0.8) (2022-09-29)
1350
-
1351
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1352
-
1353
- ## 1.0.7 (2022-09-27)
1354
-
1355
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1356
-
1357
- ## 1.0.6 (2022-09-20)
1358
-
1359
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1360
-
1361
- ## [1.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.4...@equinor/fusion-framework-module-app@1.0.5) (2022-09-14)
1362
-
1363
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1364
-
1365
- ## [1.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.3...@equinor/fusion-framework-module-app@1.0.4) (2022-09-13)
1366
-
1367
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1368
-
1369
- ## [1.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.2...@equinor/fusion-framework-module-app@1.0.3) (2022-09-13)
1370
-
1371
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1372
-
1373
- ## [1.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.1...@equinor/fusion-framework-module-app@1.0.2) (2022-09-13)
1374
-
1375
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1376
-
1377
- ## [1.0.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.1-next.1...@equinor/fusion-framework-module-app@1.0.1) (2022-09-12)
1378
-
1379
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1380
-
1381
- ## [1.0.1-next.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.1-next.0...@equinor/fusion-framework-module-app@1.0.1-next.1) (2022-09-12)
1382
-
1383
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1384
-
1385
- ## [1.0.1-next.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@1.0.0...@equinor/fusion-framework-module-app@1.0.1-next.0) (2022-09-12)
1386
-
1387
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1388
-
1389
- ## 1.0.0 (2022-09-12)
1390
-
1391
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1392
-
1393
- ## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.17...@equinor/fusion-framework-module-app@1.0.0-alpha.0) (2022-09-12)
1394
-
1395
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1396
-
1397
- ## 0.1.17 (2022-09-05)
1398
-
1399
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1400
-
1401
- ## 0.1.16 (2022-09-05)
1402
-
1403
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1404
-
1405
- ## 0.1.15 (2022-08-19)
1406
-
1407
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1408
-
1409
- ## [0.1.14](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.13...@equinor/fusion-framework-module-app@0.1.14) (2022-08-15)
1410
-
1411
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1412
-
1413
- ## 0.1.13 (2022-08-11)
1414
-
1415
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1416
-
1417
- ## [0.1.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.11...@equinor/fusion-framework-module-app@0.1.12) (2022-08-04)
1418
-
1419
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1420
-
1421
- ## 0.1.11 (2022-08-01)
1422
-
1423
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1424
-
1425
- ## [0.1.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.9...@equinor/fusion-framework-module-app@0.1.10) (2022-07-01)
1426
-
1427
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1428
-
1429
- ## [0.1.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.8...@equinor/fusion-framework-module-app@0.1.9) (2022-06-30)
1430
-
1431
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1432
-
1433
- ## [0.1.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.7...@equinor/fusion-framework-module-app@0.1.8) (2022-06-30)
1434
-
1435
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1436
-
1437
- ## [0.1.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.6...@equinor/fusion-framework-module-app@0.1.7) (2022-06-28)
1438
-
1439
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1440
-
1441
- ## [0.1.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.5...@equinor/fusion-framework-module-app@0.1.6) (2022-06-28)
1442
-
1443
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1444
-
1445
- ## [0.1.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-app@0.1.4...@equinor/fusion-framework-module-app@0.1.5) (2022-06-28)
1446
-
1447
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1448
-
1449
- ## 0.1.4 (2022-06-28)
1450
-
1451
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1452
-
1453
- ## 0.1.3 (2022-06-13)
1454
-
1455
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1456
-
1457
- ## 0.1.2 (2022-06-10)
1458
-
1459
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1460
-
1461
- ## 0.1.1 (2022-02-09)
1462
-
1463
- **Note:** Version bump only for package @equinor/fusion-framework-module-app
1464
-
1465
- # 0.1.0 (2022-02-07)
1466
-
1467
- ### Features
1468
-
1469
- - add module for application loading ([61d4e5f](https://github.com/equinor/fusion-framework/commit/61d4e5fa0df6308155bf830e68d902cecb8146c2))