@equinor/fusion-framework-module-bookmark 4.1.0 → 4.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 (42) 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 +13 -10
  5. package/CHANGELOG.md +0 -821
  6. package/src/BookmarkClient.interface.ts +0 -157
  7. package/src/BookmarkClient.ts +0 -290
  8. package/src/BookmarkFlowError.ts +0 -38
  9. package/src/BookmarkModuleConfigurator.ts +0 -412
  10. package/src/BookmarkProvider.events.ts +0 -87
  11. package/src/BookmarkProvider.interface.ts +0 -180
  12. package/src/BookmarkProvider.selectors.ts +0 -69
  13. package/src/BookmarkProvider.ts +0 -1549
  14. package/src/BookmarkProviderError.ts +0 -19
  15. package/src/__tests__/mock/bookmark-mock.test.ts +0 -199
  16. package/src/bookmark-actions.ts +0 -132
  17. package/src/bookmark-config.schema.ts +0 -55
  18. package/src/bookmark-flows/bookmark-api-flows.ts +0 -45
  19. package/src/bookmark-flows/handle-add-bookmark-as-favorite.ts +0 -49
  20. package/src/bookmark-flows/handle-create-bookmark.ts +0 -47
  21. package/src/bookmark-flows/handle-delete-bookmark.ts +0 -47
  22. package/src/bookmark-flows/handle-fetch-all-bookmark.ts +0 -53
  23. package/src/bookmark-flows/handle-fetch-bookmark-data.ts +0 -58
  24. package/src/bookmark-flows/handle-fetch-bookmark.ts +0 -64
  25. package/src/bookmark-flows/handle-remove-bookmark-from-favorites.ts +0 -49
  26. package/src/bookmark-flows/handle-remove-bookmark.ts +0 -76
  27. package/src/bookmark-flows/handle-update-bookmark.ts +0 -48
  28. package/src/bookmark-flows/index.ts +0 -10
  29. package/src/bookmark-module.ts +0 -98
  30. package/src/bookmark.schemas.ts +0 -81
  31. package/src/create-bookmark-reducer.ts +0 -149
  32. package/src/create-bookmark-store.ts +0 -61
  33. package/src/enable-bookmark.ts +0 -44
  34. package/src/index.ts +0 -43
  35. package/src/mock/BookmarkMockClient.ts +0 -310
  36. package/src/mock/BookmarkMockConfigurator.ts +0 -159
  37. package/src/mock/index.ts +0 -25
  38. package/src/mock/module.ts +0 -64
  39. package/src/types.ts +0 -121
  40. package/src/version.ts +0 -2
  41. package/tsconfig.json +0 -30
  42. package/vitest.config.ts +0 -11
package/CHANGELOG.md DELETED
@@ -1,821 +0,0 @@
1
- # Change Log
2
-
3
- ## 4.1.0
4
-
5
- ### Minor Changes
6
-
7
- - f663b46: Add a purpose-built mock, exported from a new `/mock` subpath (`@equinor/fusion-framework-module-bookmark/mock`).
8
-
9
- `enableBookmarkMock` swaps in an in-memory `IBookmarkClient` behind the real `BookmarkModuleConfigurator`, `BookmarkProvider`, and store flows — create, update, delete, and favourite calls all reach the mock client through the real flow logic, not a stand-in. `BookmarkMockConfigurator` adds a bookmark-domain vocabulary for seeding state:
10
-
11
- ```typescript
12
- import { enableBookmarkMock } from '@equinor/fusion-framework-module-bookmark/mock';
13
-
14
- enableBookmarkMock(configurator, (builder) => {
15
- builder.setBookmarks([
16
- {
17
- id: 'bookmark-1',
18
- name: 'My Bookmark',
19
- appKey: 'my-app',
20
- payload: {},
21
- created: new Date(),
22
- createdBy: { id: 'mock-user', name: 'Mock User' },
23
- },
24
- ]);
25
- builder.setCurrentBookmark('bookmark-1');
26
- builder.setFavorite('bookmark-1', true);
27
- });
28
- ```
29
-
30
- The whole real builder API stays available, including `setClient`, so an explicit call to it still replaces the mock client outright. When no real `app`/`context` module is registered alongside the mock, `resolve.application`/`resolve.context` fall back to trivial resolvers automatically, since the module's config schema requires both.
31
-
32
- Related: equinor/fusion-core-tasks#1667.
33
-
34
- ## 4.0.4
35
-
36
- ### Patch Changes
37
-
38
- - de2b4fb: Added missing TSDoc comments on class fields flagged by the new `require-property-tsdoc` fusion-lint rule.
39
-
40
- ## 4.0.3
41
-
42
- ### Patch Changes
43
-
44
- - 80c3e4a: Internal: resolve `noExplicitAny`/`noConfusingVoidType` Biome warnings in `enableBookmark`'s configurator widening, `BookmarkCreateArgs`/`BookmarkPayloadGenerator`'s generic defaults, and safely tighten `BookmarkModuleConfigurator`'s internal resolver method return types from `| void` to `| undefined`. No public API or behavior change.
45
- - 80c3e4a: Internal: add required fusion-lint intent comments explaining `as unknown as T` casts in `BookmarkConfigurator` and `BookmarkProvider`. `bookmarkWithDataSchema`'s `schema` parameter is now optional instead of defaulted, to allow the default schema's cast to be documented with an intent comment; behavior is unchanged for all callers, which never pass a `schema` argument.
46
- - 80c3e4a: Internal: Resolve fusion-lint warnings across the module — added missing TSDoc `@throws`/`@template` tags and fixed stale parameter/return docs on `BookmarkProvider`'s public API, added intent comments for control-flow and RxJS `.pipe()` chains, and extracted `BookmarkProviderError` into its own file (re-exported from `BookmarkProvider.error.ts` for backwards compatibility).
47
-
48
- Split the 421-line `BookmarkProvider.flows.ts` into one-handler-per-file modules under `bookmark-flows/*.ts` for maintainability.
49
-
50
- - 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.
51
- - 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.
52
-
53
- ## 4.0.2
54
-
55
- ### Patch Changes
56
-
57
- - f045ac0: Internal: upgrade `zod` from 4.3.6 to 4.4.3 to resolve validation issues; no public API changes.
58
-
59
- ## 4.0.1
60
-
61
- ### Patch Changes
62
-
63
- - a6355fe: Internal: bump `uuid` from `13.0.0` to `14.0.0`.
64
-
65
- ## 4.0.0
66
-
67
- ### Major Changes
68
-
69
- - abffa53: Major version bump for Fusion Framework React 19 release.
70
-
71
- 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.
72
-
73
- **Breaking changes:**
74
- - Peer dependencies now require React 18 or 19 (`^18.0.0 || ^19.0.0`)
75
- - React Router upgraded from v6 to v7
76
- - Navigation module refactored with new history API
77
- - `renderComponent` and `renderApp` now use `createRoot` API
78
-
79
- **Migration:**
80
- - Update your React version to 18.0.0 or higher before upgrading
81
- - Replace `NavigationProvider.createRouter()` with `@equinor/fusion-framework-react-router`
82
- - See individual package changelogs for package-specific migration steps
83
-
84
- ### Patch Changes
85
-
86
- - Updated dependencies [abffa53]
87
- - Updated dependencies [abffa53]
88
- - Updated dependencies [abffa53]
89
- - Updated dependencies [abffa53]
90
- - @equinor/fusion-framework-module@6.0.0
91
- - @equinor/fusion-log@2.0.0
92
- - @equinor/fusion-observable@9.0.0
93
- - @equinor/fusion-query@7.0.0
94
-
95
- ## 3.0.6
96
-
97
- ### Patch Changes
98
-
99
- - [#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.
100
-
101
- - Updated dependencies [[`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581)]:
102
- - @equinor/fusion-framework-module@5.0.6
103
- - @equinor/fusion-log@1.1.8
104
- - @equinor/fusion-observable@8.5.8
105
- - @equinor/fusion-query@6.0.4
106
-
107
- ## 3.0.5
108
-
109
- ### Patch Changes
110
-
111
- - [#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
112
-
113
- 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.
114
-
115
- ## 3.0.4
116
-
117
- ### Patch Changes
118
-
119
- - [#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
120
-
121
- - Updated dependencies [[`9b6fc05`](https://github.com/equinor/fusion-framework/commit/9b6fc05d8305b179f11ed9f0bc993f2d88305136)]:
122
- - @equinor/fusion-observable@8.5.7
123
- - @equinor/fusion-query@6.0.2
124
-
125
- ## 3.0.3
126
-
127
- ### Patch Changes
128
-
129
- - [#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.
130
-
131
- - [#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.
132
-
133
- - Updated dependencies [[`67bcfa2`](https://github.com/equinor/fusion-framework/commit/67bcfa20f01cb8f209806905874ab594cb43538e), [`cd06a8a`](https://github.com/equinor/fusion-framework/commit/cd06a8a8de86a44edf349103fb9da6c8615a1d59)]:
134
- - @equinor/fusion-observable@8.5.6
135
- - @equinor/fusion-query@6.0.1
136
- - @equinor/fusion-framework-module@5.0.5
137
-
138
- ## 3.0.2
139
-
140
- ### Patch Changes
141
-
142
- - Updated dependencies [[`6cb288b`](https://github.com/equinor/fusion-framework/commit/6cb288b9e1ec4fae68ae6899735c176837bb4275), [`d3bcafe`](https://github.com/equinor/fusion-framework/commit/d3bcafed8b8c5a02ebe68693588cb376ed5e1b0e), [`45954e5`](https://github.com/equinor/fusion-framework/commit/45954e5db471a2faa24e88e41fc6d6c18817d6d1)]:
143
- - @equinor/fusion-observable@8.5.5
144
- - @equinor/fusion-query@6.0.0
145
- - @equinor/fusion-framework-module@5.0.3
146
-
147
- ## 3.0.1
148
-
149
- ### Patch Changes
150
-
151
- - [#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
152
- - **v4.1.10**: Fixed shape caching issue (#5263) improving validation performance for complex schemas
153
- - **v4.1.11**: Maintenance release with general improvements
154
-
155
- This patch update enhances schema validation performance without changing any APIs.
156
-
157
- - Updated dependencies [[`3b614f8`](https://github.com/equinor/fusion-framework/commit/3b614f87138f5a52f8ccc50ca8c6598ef3db37d6)]:
158
- - @equinor/fusion-observable@8.5.4
159
- - @equinor/fusion-framework-module@5.0.2
160
- - @equinor/fusion-query@5.2.14
161
-
162
- ## 3.0.0
163
-
164
- ### Major Changes
165
-
166
- - [#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
167
-
168
- 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 bookmark module to use explicit key and value types for records, simplified function schema definitions, and replaced zod-inferred types with explicit TypeScript interfaces.
169
-
170
- Key changes in source code:
171
- - Fixed record schema definitions to use explicit key and value types (`z.record(z.string(), z.unknown())`)
172
- - Simplified function schema definitions by removing complex chaining (`.args()` and `.returns()`)
173
- - Replaced zod-inferred types with explicit TypeScript interfaces for better performance
174
- - Enhanced `BookmarkData` type definition with proper generic constraints
175
- - Added helper functions for config parsing (`parseBookmarkConfig`)
176
-
177
- Breaking changes: Record schemas must specify both key and value types explicitly. Function schema definitions now require explicit typing.
178
-
179
- Links:
180
- - [Zod v4 Migration Guide](https://github.com/colinhacks/zod/releases/tag/v4.0.0)
181
- - [Zod v4.1.8 Release Notes](https://github.com/colinhacks/zod/releases/tag/v4.1.8)
182
-
183
- ## 2.2.1
184
-
185
- ### Patch Changes
186
-
187
- - [#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.
188
-
189
- ### Breaking Changes
190
- - Immer 10.x introduces stricter TypeScript types for draft functions
191
- - `ValidRecipeReturnType` type constraints have changed
192
- - Promise return types in draft functions are no longer automatically handled
193
-
194
- ### Fixes Applied
195
- - Updated BookmarkProvider to handle new immer type constraints
196
- - Fixed ObservableInput type assignments in mergeScan operations
197
- - Removed async/await from immer draft functions to comply with new type requirements
198
-
199
- ### Links
200
- - [Immer 10.0.0 Release Notes](https://github.com/immerjs/immer/releases/tag/v10.0.0)
201
- - [Immer Migration Guide](https://github.com/immerjs/immer/blob/main/MIGRATION.md)
202
-
203
- - [#3402](https://github.com/equinor/fusion-framework/pull/3402) [`7bb88c6`](https://github.com/equinor/fusion-framework/commit/7bb88c6247f3d93eccf363d610116c519f1ecff4) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @types/uuid from 9.0.8/10.0.0 to 11.0.0
204
-
205
- Updated TypeScript type definitions for UUID operations across multiple packages. This major version update provides improved type safety and compatibility with the latest UUID library features.
206
-
207
- ### Affected Packages
208
- - @equinor/fusion-framework-module-bookmark: @types/uuid ^9.0.8 → ^11.0.0
209
- - @equinor/fusion-framework-module-feature-flag: @types/uuid ^10.0.0 → ^11.0.0
210
- - @equinor/fusion-observable: @types/uuid ^10.0.0 → ^11.0.0
211
- - @equinor/fusion-query: @types/uuid ^10.0.0 → ^11.0.0
212
-
213
- ### Links
214
- - [@types/uuid on npm](https://www.npmjs.com/package/@types/uuid)
215
- - [DefinitelyTyped @types/uuid](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid)
216
-
217
- - [#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
218
-
219
- ### Breaking Changes
220
- - v13.0.0: Make browser exports the default
221
- - v12.0.0: Update to TypeScript 5.2, remove CommonJS support, drop Node 16 support
222
-
223
- ### New Features
224
- - Improved v4() performance
225
- - Added Node 24 to CI matrix
226
- - Restored node: prefix support
227
-
228
- ### Links
229
- - [GitHub releases](https://github.com/uuidjs/uuid/releases/tag/v13.0.0)
230
- - [npm changelog](https://www.npmjs.com/package/uuid?activeTab=versions)
231
-
232
- - 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)]:
233
- - @equinor/fusion-query@5.2.13
234
- - @equinor/fusion-observable@8.5.3
235
-
236
- ## 2.2.0
237
-
238
- ### Minor Changes
239
-
240
- - [#3075](https://github.com/equinor/fusion-framework/pull/3075) [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253) Thanks [@odinr](https://github.com/odinr)! - Refactored the `Bookmark` type to be an intersection of `BookmarkWithoutData` and an optional `payload` property, improving type safety and flexibility. Updated `useBookmarkNavigate` to use proper TypeScript typing for bookmark events.
241
-
242
- **Module Bookmark Changes:**
243
- - Refactored `Bookmark` type in `packages/modules/bookmark/src/types.ts`
244
- - Added export for `BookmarkProviderEvents` type in `packages/modules/bookmark/src/index.ts`
245
- - Updated JSDoc comment from `@note` to `@remarks` in `packages/modules/bookmark/src/BookmarkClient.ts`
246
- - Reordered tsconfig references (event before services)
247
-
248
- **React Changes:**
249
- - Updated `packages/react/modules/bookmark/src/portal/useBookmarkNavigate.ts` to use proper TypeScript typing for bookmark provider events
250
- - Removed React paths configuration from `packages/react/app/tsconfig.json`
251
-
252
- ### Patch Changes
253
-
254
- - [#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.
255
-
256
- - Updated dependencies [[`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253), [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253)]:
257
- - @equinor/fusion-framework-module@5.0.0
258
- - @equinor/fusion-log@1.1.5
259
-
260
- ## 2.1.15
261
-
262
- ### Patch Changes
263
-
264
- - [#3182](https://github.com/equinor/fusion-framework/pull/3182) [`0bdd7f4`](https://github.com/equinor/fusion-framework/commit/0bdd7f4c3f166421b7703c374821b52a578a24e6) Thanks [@Noggling](https://github.com/Noggling)! - Enable MapSet in the bookmark module since a new Set is used in BookmarkState.
265
-
266
- ## 2.1.14
267
-
268
- ### Patch Changes
269
-
270
- - [#3151](https://github.com/equinor/fusion-framework/pull/3151) [`9982c09`](https://github.com/equinor/fusion-framework/commit/9982c096f57e7928dbb65b3ca1d647646852963f) Thanks [@Noggling](https://github.com/Noggling)! - Remove unnecessary deepEqual check from the currentBookmark$ selector to ensure the current bookmark is always emitted, even when re-selected. This improves consistency and ensures consumers receive updates as expected.
271
-
272
- ## 2.1.13
273
-
274
- ### Patch Changes
275
-
276
- - [#3148](https://github.com/equinor/fusion-framework/pull/3148) [`9cc3adc`](https://github.com/equinor/fusion-framework/commit/9cc3adcf502a3488a80c7a9b2a71eae0910a7b9f) Thanks [@Noggling](https://github.com/Noggling)! - Allow reselection of the current bookmark by removing the check that prevented setting the same bookmark as current. This enables applications to reselect a bookmark even if it is already active, supporting scenarios where application state changes require a re-selection event.
277
-
278
- ## 2.1.12
279
-
280
- ### Patch Changes
281
-
282
- - [#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
283
- - Updated package.json typesVersions.
284
- - Ensures backward compatibility with older node versions.
285
- - Ensured consistency with workspace and repository configuration.
286
-
287
- - Updated dependencies [[`7441b13`](https://github.com/equinor/fusion-framework/commit/7441b13aa50dd7362d1629086a27b6b4e571575d)]:
288
- - @equinor/fusion-query@5.2.11
289
-
290
- ## 2.1.11
291
-
292
- ### Patch Changes
293
-
294
- - Updated dependencies [[`0d22e3c`](https://github.com/equinor/fusion-framework/commit/0d22e3c486ab11c40f14fb1f11f0b718e7bf1593)]:
295
- - @equinor/fusion-observable@8.5.1
296
- - @equinor/fusion-query@5.2.10
297
-
298
- ## 2.1.10
299
-
300
- ### Patch Changes
301
-
302
- - Updated dependencies [[`d247ec7`](https://github.com/equinor/fusion-framework/commit/d247ec7482a4d5231657875f6c6733ce37df07c9), [`89f80e4`](https://github.com/equinor/fusion-framework/commit/89f80e41dac04e71518c7314cada86ecc835708d)]:
303
- - @equinor/fusion-observable@8.5.0
304
- - @equinor/fusion-query@5.2.9
305
-
306
- ## 2.1.9
307
-
308
- ### Patch Changes
309
-
310
- - Updated dependencies [[`96bb1fb`](https://github.com/equinor/fusion-framework/commit/96bb1fb744d8dc2410e99fea6ca948d2d5489428)]:
311
- - @equinor/fusion-observable@8.4.9
312
- - @equinor/fusion-framework-module@4.4.2
313
- - @equinor/fusion-query@5.2.8
314
-
315
- ## 2.1.8
316
-
317
- ### Patch Changes
318
-
319
- - [#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
320
-
321
- - Updated dependencies [[`e49f916`](https://github.com/equinor/fusion-framework/commit/e49f9161557202df57248d02ade4d2ef50231bdc), [`c6af3a3`](https://github.com/equinor/fusion-framework/commit/c6af3a3c926fb245e9d056b506d47b8bf4f1efde)]:
322
- - @equinor/fusion-framework-module@4.4.1
323
- - @equinor/fusion-observable@8.4.8
324
- - @equinor/fusion-query@5.2.7
325
-
326
- ## 2.1.7
327
-
328
- ### Patch Changes
329
-
330
- - Updated dependencies [[`efd70a3`](https://github.com/equinor/fusion-framework/commit/efd70a34f734e0c155d3440e35ce4fa11a7abc42), [`3166a7a`](https://github.com/equinor/fusion-framework/commit/3166a7a92eff92f79c92490d442bcf1b63718b95)]:
331
- - @equinor/fusion-framework-module@4.4.0
332
- - @equinor/fusion-log@1.1.4
333
- - @equinor/fusion-query@5.2.6
334
-
335
- ## 2.1.6
336
-
337
- ### Patch Changes
338
-
339
- - [#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
340
-
341
- - Updated dependencies [[`f53b60b`](https://github.com/equinor/fusion-framework/commit/f53b60b7805706ce7617e614f0ac0c24317a2e43)]:
342
- - @equinor/fusion-observable@8.4.7
343
- - @equinor/fusion-framework-module@4.3.8
344
- - @equinor/fusion-query@5.2.5
345
-
346
- ## 2.1.5
347
-
348
- ### Patch Changes
349
-
350
- - Updated dependencies [[`08a4ebb`](https://github.com/equinor/fusion-framework/commit/08a4ebb74b9ce9da8c7a4b4dabe3cd476c67a86e)]:
351
- - @equinor/fusion-log@1.1.3
352
- - @equinor/fusion-query@5.2.4
353
-
354
- ## 2.1.4
355
-
356
- ### Patch Changes
357
-
358
- - [#2950](https://github.com/equinor/fusion-framework/pull/2950) [`88aab5c`](https://github.com/equinor/fusion-framework/commit/88aab5c50c3ae77d80ce420902db0ba843a8d85f) Thanks [@odinr](https://github.com/odinr)! - added missing return statement for `addStateCreator` method.
359
-
360
- ## 2.1.3
361
-
362
- ### Patch Changes
363
-
364
- - [#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`
365
-
366
- - 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)]:
367
- - @equinor/fusion-observable@8.4.6
368
- - @equinor/fusion-framework-module@4.3.7
369
- - @equinor/fusion-query@5.2.3
370
- - @equinor/fusion-log@1.1.2
371
-
372
- ## 2.1.2
373
-
374
- ### Patch Changes
375
-
376
- - [#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.
377
-
378
- - Updated dependencies [[`ba5d12e`](https://github.com/equinor/fusion-framework/commit/ba5d12eba0a38db412353765e997d02c1fbb478d), [`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)]:
379
- - @equinor/fusion-framework-module@4.3.6
380
- - @equinor/fusion-observable@8.4.5
381
- - @equinor/fusion-query@5.2.2
382
- - @equinor/fusion-log@1.1.1
383
-
384
- ## 2.1.1
385
-
386
- ### Patch Changes
387
-
388
- - Updated dependencies [[`7f4a381`](https://github.com/equinor/fusion-framework/commit/7f4a381ee3594a8cc1c77f0c13c1ba70223d8bf1)]:
389
- - @equinor/fusion-observable@8.4.4
390
- - @equinor/fusion-query@5.2.1
391
-
392
- ## 2.1.0
393
-
394
- ### Minor Changes
395
-
396
- - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb) Thanks [@odinr](https://github.com/odinr)! - - Exposed the `IBookmarkProvider` interface and updated references.
397
- - Improved handling of the parent provider in `BookmarkProvider`.
398
- - Fixed `BookmarkProvider.on` to only emit when the source of the event is the provider.
399
- - Refactored `BookmarkProvider.generatePayload` to better handle the creation and update of bookmark payloads.
400
- - Ensured all observable executions to the API are terminated after the first successful or failed response.
401
-
402
- ### Patch Changes
403
-
404
- - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb) Thanks [@odinr](https://github.com/odinr)! - improved typing and convertion from api
405
-
406
- ## 2.0.2
407
-
408
- ### Patch Changes
409
-
410
- - Updated dependencies [[`a965fbe`](https://github.com/equinor/fusion-framework/commit/a965fbeb9544b74f7d7b4aaa1e57c50d2ae4a564)]:
411
- - @equinor/fusion-query@5.2.0
412
-
413
- ## 2.0.1
414
-
415
- ### Patch Changes
416
-
417
- - Updated dependencies [[`30767a2`](https://github.com/equinor/fusion-framework/commit/30767a2f72b54c2a3ea98ce08186017e34ae16bd)]:
418
- - @equinor/fusion-observable@8.4.3
419
- - @equinor/fusion-query@5.1.5
420
-
421
- ## 2.0.0
422
-
423
- ### Major Changes
424
-
425
- - [#2410](https://github.com/equinor/fusion-framework/pull/2410) [`9d1cb90`](https://github.com/equinor/fusion-framework/commit/9d1cb9003fa10e7ccaa95c20ef86f0a618034641) Thanks [@odinr](https://github.com/odinr)! - rewrite bookmark module
426
-
427
- Needed rewrite of the bookmark module to better represent the api, and provide a more robust interface for working with bookmarks. Instead of fixing the current implementation, it was decided to rework the entire module to save time and confusion in the future.
428
-
429
- The v1 implementation had strong coupling with the portal code and was not a good representation of the api. The new implementation is more robust and independent of source systems. The new implementation uses zod schemas to validate requests and responses.
430
-
431
- The new implementation is not backwards compatible with the v1 implementation, so all ancestor modules should be updated to reflect the changes in this module.
432
-
433
- The new implementation has better state management and error handling, and should be easier to work with than the v1 implementation.
434
-
435
- **Highlights:**
436
- - has validation of configuration of the module.
437
- - uses the `BaseConfigBuilder` pattern for configuration.
438
- - has validation of requests and responses using zod schemas.
439
- - has better error handling and state management.
440
- - has better separation of concerns.
441
- - has better documentation.
442
- - has better state management.
443
- - has better flow control.
444
- - has better logging.
445
-
446
- **Migration:**
447
- - update config for enabling the module
448
- - check all direct access to provider interface if they are still valid
449
-
450
- **Breaking changes:**
451
- - The provider interface has changed
452
- - The client interface has changed
453
- - The configuration interface has changed
454
-
455
- ## 1.2.13
456
-
457
- ### Patch Changes
458
-
459
- - Updated dependencies [[`21db01b`](https://github.com/equinor/fusion-framework/commit/21db01bbe5113b07aaa715d554378561e1a5223d)]:
460
- - @equinor/fusion-observable@8.4.2
461
- - @equinor/fusion-query@5.1.4
462
-
463
- ## 1.2.12
464
-
465
- ### Patch Changes
466
-
467
- - Updated dependencies [[`2644b3d`](https://github.com/equinor/fusion-framework/commit/2644b3d63939aede736a3b1950db32dbd487877d)]:
468
- - @equinor/fusion-framework-module@4.3.5
469
-
470
- ## 1.2.11
471
-
472
- ### Patch Changes
473
-
474
- - Updated dependencies [[`f7c143d`](https://github.com/equinor/fusion-framework/commit/f7c143d44a88cc25c377d3ce8c3d1744114b891d)]:
475
- - @equinor/fusion-observable@8.4.1
476
- - @equinor/fusion-query@5.1.3
477
-
478
- ## 1.2.10
479
-
480
- ### Patch Changes
481
-
482
- - Updated dependencies [[`75d676d`](https://github.com/equinor/fusion-framework/commit/75d676d2c7919f30e036b5ae97c4d814c569aa87), [`be2e925`](https://github.com/equinor/fusion-framework/commit/be2e92532f4a4b8f0b2c9e12d4adf942d380423e), [`00d5e9c`](https://github.com/equinor/fusion-framework/commit/00d5e9c632876742c3d2a74efea2f126a0a169d9)]:
483
- - @equinor/fusion-framework-module@4.3.4
484
- - @equinor/fusion-query@5.1.2
485
-
486
- ## 1.2.9
487
-
488
- ### Patch Changes
489
-
490
- - 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), [`a1524e9`](https://github.com/equinor/fusion-framework/commit/a1524e9c4d83778da3db42dbcf99908b776a0592)]:
491
- - @equinor/fusion-observable@8.4.0
492
- - @equinor/fusion-query@5.1.1
493
- - @equinor/fusion-framework-module@4.3.3
494
-
495
- ## 1.2.8
496
-
497
- ### Patch Changes
498
-
499
- - [#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
500
-
501
- - [#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.
502
-
503
- Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
504
- 1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
505
- 2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
506
- 3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
507
-
508
- 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.
509
-
510
- Before:
511
-
512
- ```json
513
- {
514
- "compilerOptions": {
515
- "module": "ES2022",
516
- "target": "ES6",
517
- "incremental": true,
518
- "removeComments": true,
519
- "preserveConstEnums": true,
520
- "sourceMap": true,
521
- "moduleResolution": "node"
522
- }
523
- }
524
- ```
525
-
526
- After:
527
-
528
- ```json
529
- {
530
- "compilerOptions": {
531
- "module": "ES2022",
532
- "target": "ES6",
533
- "incremental": true,
534
- "preserveConstEnums": true,
535
- "sourceMap": true,
536
- "moduleResolution": "node"
537
- }
538
- }
539
- ```
540
-
541
- This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
542
-
543
- - Updated dependencies [[`2f74edc`](https://github.com/equinor/fusion-framework/commit/2f74edcd4a3ea2b87d69f0fd63492145c3c01663), [`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)]:
544
- - @equinor/fusion-framework-module@4.3.2
545
- - @equinor/fusion-query@5.1.0
546
- - @equinor/fusion-observable@8.3.3
547
-
548
- ## 1.2.7
549
-
550
- ### Patch Changes
551
-
552
- - Updated dependencies [[`97e41a5`](https://github.com/equinor/fusion-framework/commit/97e41a55d05644b6684c6cb165b65b115bd416eb)]:
553
- - @equinor/fusion-observable@8.3.2
554
- - @equinor/fusion-query@5.0.5
555
-
556
- ## 1.2.6
557
-
558
- ### Patch Changes
559
-
560
- - Updated dependencies [[`1681940`](https://github.com/equinor/fusion-framework/commit/16819401db191321637fb2a17390abd98738c103), [`72f48ec`](https://github.com/equinor/fusion-framework/commit/72f48eccc7262f6c419c60cc32f0dc829601ceab)]:
561
- - @equinor/fusion-query@5.0.4
562
- - @equinor/fusion-observable@8.3.1
563
-
564
- ## 1.2.5
565
-
566
- ### Patch Changes
567
-
568
- - Updated dependencies [[`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`6a81125`](https://github.com/equinor/fusion-framework/commit/6a81125ca856bbddbd1ec9e66a30e887cef93f66), [`cd737c2`](https://github.com/equinor/fusion-framework/commit/cd737c2f916747965ece46ed6f33fdadb776c90b)]:
569
- - @equinor/fusion-framework-module@4.3.1
570
- - @equinor/fusion-query@5.0.3
571
-
572
- ## 1.2.4
573
-
574
- ### Patch Changes
575
-
576
- - Updated dependencies [[`bd3d3e1`](https://github.com/equinor/fusion-framework/commit/bd3d3e165b3cbcef8f2c7b3219d21387731e5995)]:
577
- - @equinor/fusion-query@5.0.2
578
-
579
- ## 1.2.3
580
-
581
- ### Patch Changes
582
-
583
- - Updated dependencies [[`491c2e0`](https://github.com/equinor/fusion-framework/commit/491c2e05a2383dc7aa310f11ba6f7325a69e7197)]:
584
- - @equinor/fusion-query@5.0.1
585
-
586
- ## 1.2.2
587
-
588
- ### Patch Changes
589
-
590
- - 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)]:
591
- - @equinor/fusion-query@5.0.0
592
-
593
- ## 1.2.1
594
-
595
- ### Patch Changes
596
-
597
- - Updated dependencies [[`572a199`](https://github.com/equinor/fusion-framework/commit/572a199b8b3070af16d76238aa30d7aaf36a115a), [`f5e4090`](https://github.com/equinor/fusion-framework/commit/f5e4090fa285db8dc10e09b450cee5767437d883)]:
598
- - @equinor/fusion-observable@8.3.0
599
- - @equinor/fusion-query@4.2.0
600
-
601
- ## 1.2.0
602
-
603
- ### Minor Changes
604
-
605
- - [#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
606
-
607
- ### Patch Changes
608
-
609
- - Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
610
- - @equinor/fusion-framework-module@4.3.0
611
- - @equinor/fusion-observable@8.2.0
612
- - @equinor/fusion-query@4.1.0
613
-
614
- ## 1.1.2
615
-
616
- ### Patch Changes
617
-
618
- - Updated dependencies [[`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
619
- - @equinor/fusion-framework-module@4.2.7
620
-
621
- ## 1.1.1
622
-
623
- ### Patch Changes
624
-
625
- - Updated dependencies [[`036546f`](https://github.com/equinor/fusion-framework/commit/036546f2e3d9c0d289c7145da84e940673027b5e), [`d0c0c6a`](https://github.com/equinor/fusion-framework/commit/d0c0c6a971a478e3f447663bf50b4e3a7cb1517e)]:
626
- - @equinor/fusion-observable@8.1.5
627
- - @equinor/fusion-query@4.0.6
628
-
629
- ## 1.1.0
630
-
631
- ### Minor Changes
632
-
633
- - [#1693](https://github.com/equinor/fusion-framework/pull/1693) [`7fea31b`](https://github.com/equinor/fusion-framework/commit/7fea31b049cd7dcce9336ed1bc339165729b0d99) Thanks [@Noggling](https://github.com/Noggling)! - Fixing the infinite loading if a bookmark is created in classic fusion and allowing for sourceSystem to be undefined.
634
-
635
- ## 1.0.17
636
-
637
- ### Patch Changes
638
-
639
- - Updated dependencies [[`6ffaabf`](https://github.com/equinor/fusion-framework/commit/6ffaabf120704f2f4f4074a0fa0a17faf77fe22a)]:
640
- - @equinor/fusion-observable@8.1.4
641
- - @equinor/fusion-query@4.0.5
642
-
643
- ## 1.0.16
644
-
645
- ### Patch Changes
646
-
647
- - [#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
648
-
649
- - Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
650
- - @equinor/fusion-observable@8.1.3
651
- - @equinor/fusion-framework-module@4.2.6
652
- - @equinor/fusion-query@4.0.4
653
-
654
- ## 1.0.15
655
-
656
- ### Patch Changes
657
-
658
- - [`6f8c32b8`](https://github.com/equinor/fusion-framework/commit/6f8c32b8e0ae1f4431d09d201b2a305a883cf886) Thanks [@odinr](https://github.com/odinr)! - After creating a bookmark the bookmark module will no longer set it as current. This makes sense because the application is already in the correct state when the bookmark was created
659
-
660
- see: #1547
661
-
662
- https://github.com/equinor/fusion-framework/blob/main/packages/modules/navigation/src/module.ts#L13
663
-
664
- ## 1.0.14
665
-
666
- ### Patch Changes
667
-
668
- - Updated dependencies [[`446b63ce`](https://github.com/equinor/fusion-framework/commit/446b63ce44b59a3aaab4399c0d877d3a1b560a0e)]:
669
- - @equinor/fusion-query@4.0.3
670
-
671
- ## 1.0.13
672
-
673
- ### Patch Changes
674
-
675
- - Updated dependencies [[`7ad31761`](https://github.com/equinor/fusion-framework/commit/7ad3176102f92da108b67ede6fdf29b76149bed9)]:
676
- - @equinor/fusion-query@4.0.2
677
-
678
- ## 1.0.12
679
-
680
- ### Patch Changes
681
-
682
- - [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
683
-
684
- - Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
685
- - @equinor/fusion-framework-module@4.2.5
686
- - @equinor/fusion-observable@8.1.2
687
- - @equinor/fusion-query@4.0.1
688
-
689
- ## 1.0.11
690
-
691
- ### Patch Changes
692
-
693
- - Updated dependencies [[`ebcabd0e`](https://github.com/equinor/fusion-framework/commit/ebcabd0e6945e1420a0a9a7d82bd9255da1b8578), [`8739a5a6`](https://github.com/equinor/fusion-framework/commit/8739a5a65d8aaa46ce9ef56cce013efeeb006e8a)]:
694
- - @equinor/fusion-query@4.0.0
695
-
696
- ## 1.0.10
697
-
698
- ### Patch Changes
699
-
700
- - Updated dependencies [[`6f64d1aa`](https://github.com/equinor/fusion-framework/commit/6f64d1aa5e44af37f0abd76cef36e87761134760), [`758eaaf4`](https://github.com/equinor/fusion-framework/commit/758eaaf436ae28d180e7d91818b41abe0d9624c4), [`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
701
- - @equinor/fusion-observable@8.1.1
702
- - @equinor/fusion-framework-module@4.2.4
703
- - @equinor/fusion-query@3.0.7
704
-
705
- ## 1.0.9
706
-
707
- ### Patch Changes
708
-
709
- - Updated dependencies [[`066d843c`](https://github.com/equinor/fusion-framework/commit/066d843c88cb974150f23f4fb9e7d0b066c93594)]:
710
- - @equinor/fusion-query@3.0.6
711
-
712
- ## 1.0.8
713
-
714
- ### Patch Changes
715
-
716
- - [#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
717
-
718
- conflicts of `@types/react` made random outcomes when using `yarn`
719
-
720
- this change should not affect consumer of the packages, but might conflict dependent on local package manager.
721
-
722
- - [#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)
723
-
724
- - 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)]:
725
- - @equinor/fusion-observable@8.1.0
726
- - @equinor/fusion-framework-module@4.2.3
727
- - @equinor/fusion-query@3.0.5
728
-
729
- ## 1.0.7
730
-
731
- ### Patch Changes
732
-
733
- - [#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
734
-
735
- All notable changes to this project will be documented in this file.
736
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
737
-
738
- ## [1.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-bookmark@1.0.5...@equinor/fusion-framework-module-bookmark@1.0.6) (2023-05-23)
739
-
740
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
741
-
742
- ## 1.0.5 (2023-05-22)
743
-
744
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
745
-
746
- ## [1.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-bookmark@1.0.3...@equinor/fusion-framework-module-bookmark@1.0.4) (2023-05-05)
747
-
748
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
749
-
750
- ## 1.0.3 (2023-04-24)
751
-
752
- ### Bug Fixes
753
-
754
- - **bookmark-module:** favorites now updates the bookmarks state when adding and removing bookmarks ([0e43cb1](https://github.com/equinor/fusion-framework/commit/0e43cb1a4e2f9b8fe3fcff4df053846f585cca3d))
755
- - **bookmark-module:** get the last event from get all bookmarks, and added onBookmarksChange dispatch ([4b53fc3](https://github.com/equinor/fusion-framework/commit/4b53fc37c0d072604c336490dc82beca2310cd51))
756
-
757
- ## 1.0.2 (2023-04-18)
758
-
759
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
760
-
761
- ## 1.0.1 (2023-04-17)
762
-
763
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
764
-
765
- ## 1.0.0 (2023-04-16)
766
-
767
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
768
-
769
- ## 0.2.4 (2023-04-14)
770
-
771
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
772
-
773
- ## 0.2.3 (2023-04-14)
774
-
775
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
776
-
777
- ## 0.2.2 (2023-04-14)
778
-
779
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
780
-
781
- ## [0.2.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-bookmark@0.2.0...@equinor/fusion-framework-module-bookmark@0.2.1) (2023-04-13)
782
-
783
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
784
-
785
- ## 0.2.0 (2023-04-11)
786
-
787
- ### Features
788
-
789
- - **bookmark-module:** added functionality fro bookmark favorites ([0d66c30](https://github.com/equinor/fusion-framework/commit/0d66c301dd5d938c5e327273a6a48275bf29d5e1))
790
-
791
- ## [0.1.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-bookmark@0.1.3...@equinor/fusion-framework-module-bookmark@0.1.4) (2023-03-28)
792
-
793
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
794
-
795
- ## 0.1.3 (2023-03-27)
796
-
797
- **Note:** Version bump only for package @equinor/fusion-framework-module-bookmark
798
-
799
- ## [0.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-module-bookmark@0.1.1...@equinor/fusion-framework-module-bookmark@0.1.2) (2023-03-24)
800
-
801
- ### Bug Fixes
802
-
803
- - **bookmark-module:** invalidate cache for query by id ([24d6ca5](https://github.com/equinor/fusion-framework/commit/24d6ca5a59ce3e2a17291ddd65f0adb9f605e995))
804
-
805
- ## 0.1.1 (2023-03-24)
806
-
807
- ### Bug Fixes
808
-
809
- - **bookmark-module:** remove navigation provider resolver sins it not in use ([851a46b](https://github.com/equinor/fusion-framework/commit/851a46bb48cd01a51f630bc8b2e405660855152e))
810
-
811
- ## 0.1.0 (2023-03-22)
812
-
813
- ### Features
814
-
815
- - fusion bookmark module ([3f8259e](https://github.com/equinor/fusion-framework/commit/3f8259e47ea52637375d24ba3566c6ee1019c149))
816
-
817
- ### Bug Fixes
818
-
819
- - **bookmarks:** await dispatch of change event ([89c350a](https://github.com/equinor/fusion-framework/commit/89c350a6b26d036df8431064fd6641b6e546d324))
820
- - create example ([9a524ac](https://github.com/equinor/fusion-framework/commit/9a524ac354cd62ba084f05b456a2da857ed24575))
821
- - **pr:** Fixing pr comments ([4ee3fb3](https://github.com/equinor/fusion-framework/commit/4ee3fb3b509c7b7560378e18ee51d9c1759a8685))