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