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