@equinor/fusion-framework 8.1.0-next.2 → 8.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +12 -9
- package/CHANGELOG.md +0 -2050
- package/docs/testing-api.md +0 -25
- package/docs/testing-choosing-a-layer.md +0 -90
- package/docs/testing-design.md +0 -63
- package/docs/testing-extending.md +0 -102
- package/docs/testing.md +0 -178
- package/src/FrameworkConfigurator.ts +0 -273
- package/src/__tests__/FrameworkConfigurator.test.ts +0 -35
- package/src/__tests__/mock/application-module.test.ts +0 -87
- package/src/__tests__/mock/documented-usage.test.ts +0 -98
- package/src/__tests__/mock/mock-framework.test.ts +0 -278
- package/src/index.ts +0 -44
- package/src/init.ts +0 -61
- package/src/mock/FrameworkMockConfigurator.ts +0 -270
- package/src/mock/index.ts +0 -62
- package/src/mock/mock-framework.ts +0 -72
- package/src/types.ts +0 -82
- package/src/version.ts +0 -2
- package/tsconfig.json +0 -36
- package/vitest.config.ts +0 -10
package/CHANGELOG.md
DELETED
|
@@ -1,2050 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
## 8.1.0-next.2
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies [53d5e4c]
|
|
8
|
-
- @equinor/fusion-framework-module-msal@11.0.0-next.1
|
|
9
|
-
|
|
10
|
-
## 8.1.0-next.1
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- @equinor/fusion-framework-module-telemetry@8.0.0-next.1
|
|
15
|
-
|
|
16
|
-
## 8.1.0-next.0
|
|
17
|
-
|
|
18
|
-
### Minor Changes
|
|
19
|
-
|
|
20
|
-
- 2836e0b: Restructure documentation so each README is an entry point rather than a manual.
|
|
21
|
-
|
|
22
|
-
Long-form content moved into per-package `docs/` folders, matching the convention already used by `@equinor/fusion-framework-module` and `@equinor/fusion-framework-module-http`. Each README now keeps the elevator pitch, the shortest working example and a documentation table linking to the rest.
|
|
23
|
-
|
|
24
|
-
- **msal** — `docs/api-reference.md`, `docs/auth-code-flow.md`, `docs/testing.md`, `docs/version-management.md`, `docs/migration-v2-to-v4.md`, `docs/troubleshooting.md`. The README also gained the top-level heading it was missing.
|
|
25
|
-
- **service-discovery** — `docs/configuration.md`, `docs/testing.md`, `docs/session-overrides.md`, `docs/api-reference.md`.
|
|
26
|
-
- **framework** — `docs/testing-choosing-a-layer.md`, `docs/testing.md`, `docs/testing-design.md`, `docs/testing-extending.md`, `docs/testing-api.md`.
|
|
27
|
-
|
|
28
|
-
Both module READMEs now document their `/mock` entry point, which was previously undocumented, and state that spying on an individual call is the test runner's job rather than something these packages provide.
|
|
29
|
-
|
|
30
|
-
- 2836e0b: `FrameworkMockConfigurator.context` is now backed by `ContextMockConfigurator` from `@equinor/fusion-framework-module-context/mock` instead of the real `ContextModuleConfigurator` — context resolution in tests no longer performs real I/O:
|
|
31
|
-
|
|
32
|
-
```typescript
|
|
33
|
-
const configurator = new FrameworkMockConfigurator();
|
|
34
|
-
configurator.context.setCurrentContext({
|
|
35
|
-
id: "my-ctx",
|
|
36
|
-
type: { id: "ProjectMaster" },
|
|
37
|
-
value: {},
|
|
38
|
-
});
|
|
39
|
-
|
|
40
|
-
const fusion = await init(configurator);
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
This changes the type returned by `.context` from `ContextModuleConfigurator` to `ContextMockConfigurator` (which extends it) — code relying on `.context` being exactly `ContextModuleConfigurator` should switch to seeding data through the new mock methods (`setCurrentContext`, `setContexts`, `addContext`, `setRelatedContexts`, `setResolver`) instead of configuring a real client.
|
|
44
|
-
|
|
45
|
-
`docs/testing.md`, `docs/testing-extending.md` and `docs/testing-api.md` are updated to describe both mocking strategies now available for context: the in-memory `ContextMockConfigurator` above, and mocking the context API's HTTP responses directly for tests that need to exercise the real configurator/services/HTTP pipeline.
|
|
46
|
-
|
|
47
|
-
- 2836e0b: Add `_pin` and `_getConfig` to `FrameworkMockConfigurator`, so a module supplied through `TModules` can get the same kind of named accessor `.msal` and `.serviceDiscovery` already have.
|
|
48
|
-
|
|
49
|
-
Previously that pinning was hand-written twice, once per built-in mock, with no way for anything else to do the same. A subclass now reuses it directly:
|
|
50
|
-
|
|
51
|
-
```typescript
|
|
52
|
-
class AppMockConfigurator extends FrameworkMockConfigurator<[InvoiceModule]> {
|
|
53
|
-
constructor() {
|
|
54
|
-
super();
|
|
55
|
-
this._pin(invoiceMockModule);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
get invoices(): InvoiceMockConfigurator {
|
|
59
|
-
return this._getConfig("invoices");
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
`_pin(module)` replaces the module's own `configure` factory with one that always returns the same instance, and registers it — pinning it before initialization runs is what lets a test reach the accessor synchronously and have it be the configurator the module is actually built from. `_getConfig(name)` looks that instance up by the module's name, throwing if nothing was pinned for it.
|
|
65
|
-
|
|
66
|
-
`.msal` and `.serviceDiscovery` are unchanged for consumers; they are now built from `_pin`/`_getConfig` themselves rather than from two private fields.
|
|
67
|
-
|
|
68
|
-
- 2836e0b: Add `.services`, `.context` and `.telemetry` accessors to `FrameworkMockConfigurator`, alongside the existing `.msal`, `.serviceDiscovery` and `.http`.
|
|
69
|
-
|
|
70
|
-
These three modules have no test double yet, so anything read through `.services`, `.context` or `.telemetry` still performs real I/O — but their configurators are now reachable synchronously the same way `.msal` and `.serviceDiscovery` already are, since none of their `configure` factories depend on `ref`:
|
|
71
|
-
|
|
72
|
-
```typescript
|
|
73
|
-
const configurator = new FrameworkMockConfigurator();
|
|
74
|
-
configurator.services.configureClient("my-api", {
|
|
75
|
-
baseUri: "http://localhost:6669",
|
|
76
|
-
});
|
|
77
|
-
|
|
78
|
-
const fusion = await init(configurator);
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
`event` is intentionally left out: its `configure` factory reads `ref` to wire event bubbling to a parent event provider when `FrameworkMockConfigurator` is hoisted inside a host framework, and pinning it would call `configure()` with `ref` always `undefined` — silently disabling that bubbling.
|
|
82
|
-
|
|
83
|
-
- 2836e0b: Add a `./mock` entry point for initializing the framework in a test.
|
|
84
|
-
|
|
85
|
-
```typescript
|
|
86
|
-
import { mockFramework } from "@equinor/fusion-framework/mock";
|
|
87
|
-
|
|
88
|
-
const fusion = await mockFramework();
|
|
89
|
-
```
|
|
90
|
-
|
|
91
|
-
`mockFramework` runs the real configure → initialize pipeline with the real built-in modules and substitutes only the boundaries that leave the process — the MSAL client and the service discovery client. Module wiring, configuration validation and lifecycle hooks behave as they do in production, so a test still catches wiring mistakes that a hand-built replacement for the module graph would hide.
|
|
92
|
-
|
|
93
|
-
It takes a single callback receiving a `FrameworkMockConfigurator`, which **is** a `FrameworkConfigurator`. Modules whose boundary is mocked expose their own configurator as a property, so a test configures them without registering a callback:
|
|
94
|
-
|
|
95
|
-
```typescript
|
|
96
|
-
const fusion = await mockFramework((configurator) => {
|
|
97
|
-
configurator.msal.setAccount({ name: "Ada Lovelace" });
|
|
98
|
-
configurator.serviceDiscovery.setBaseUri("http://localhost:6669");
|
|
99
|
-
configurator.serviceDiscovery.addService({ key: "my-api" });
|
|
100
|
-
});
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
Because it is a real configurator, every `enableX` helper an application already uses accepts it unchanged — including the ones a team writes for their own modules. Those modules can be passed as a type argument so they are typed on the configurator _and_ on the resulting `fusion.modules` without a cast:
|
|
104
|
-
|
|
105
|
-
```typescript
|
|
106
|
-
const fusion = await mockFramework<[InvoiceModule]>((configurator) => {
|
|
107
|
-
enableInvoicesMock(configurator, { total: 42 });
|
|
108
|
-
});
|
|
109
|
-
|
|
110
|
-
await fusion.modules.invoices.getInvoice("inv-1"); // typed
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
`FrameworkMockConfigurator` is also exported for tests that need to hold on to the configurator and call `init` themselves.
|
|
114
|
-
|
|
115
|
-
The entry point owns no mock logic. Each module exports its own test double from its own `./mock` entry point, and this one composes the built-in set; an application module follows the same pattern and plugs in without any support from this package. It has no test-runner dependency and provides no mocking API, because replacing an individual call belongs to your test runner.
|
|
116
|
-
|
|
117
|
-
- 2836e0b: `FrameworkMockConfigurator.telemetry` is now backed by `TelemetryMockConfigurator` from `@equinor/fusion-framework-module-telemetry/mock` instead of the real `TelemetryConfigurator` — telemetry tracked through a mocked framework instance no longer reaches Application Insights or any real endpoint:
|
|
118
|
-
|
|
119
|
-
```typescript
|
|
120
|
-
import { filter } from "rxjs";
|
|
121
|
-
|
|
122
|
-
const fusion = await mockFramework();
|
|
123
|
-
|
|
124
|
-
fusion.modules.telemetry.items
|
|
125
|
-
.pipe(filter((item) => item.name === "button-click"))
|
|
126
|
-
.subscribe((item) => {
|
|
127
|
-
// ...
|
|
128
|
-
});
|
|
129
|
-
|
|
130
|
-
fusion.modules.telemetry.trackEvent({ name: "button-click" });
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
A test can register its own adapter alongside the mock's default one, the same way `enableTelemetry` already does:
|
|
134
|
-
|
|
135
|
-
```typescript
|
|
136
|
-
const myAdapter: ITelemetryAdapter = {
|
|
137
|
-
processItem: (item) => forwardSomewhere(item),
|
|
138
|
-
};
|
|
139
|
-
const fusion = await mockFramework((configurator) => {
|
|
140
|
-
configurator.telemetry.setAdapter("my-adapter", myAdapter);
|
|
141
|
-
});
|
|
142
|
-
```
|
|
143
|
-
|
|
144
|
-
This changes the type returned by `.telemetry` from `ITelemetryConfigurator` to `TelemetryMockConfigurator` (which extends the real `TelemetryConfigurator`) — code relying on `.telemetry` being exactly the real configurator should read tracked items back through `.telemetry.adapter` (`getItems`/`waitForItem`) instead of asserting against a real telemetry backend.
|
|
145
|
-
|
|
146
|
-
- 2836e0b: Add a `.http` accessor to `FrameworkMockConfigurator`, backed by the real `IHttpClientConfigurator` — fake a response by registering a short-circuiting middleware through `.http.addMiddleware(...)` instead of swapping the module out:
|
|
147
|
-
|
|
148
|
-
```ts
|
|
149
|
-
const configurator = new FrameworkMockConfigurator();
|
|
150
|
-
configurator.http.addMiddleware(async (uri, init, next) =>
|
|
151
|
-
uri === "https://api.example.com/items"
|
|
152
|
-
? Response.json([{ id: 1 }])
|
|
153
|
-
: next(uri, init),
|
|
154
|
-
);
|
|
155
|
-
```
|
|
156
|
-
|
|
157
|
-
See `@equinor/fusion-framework-module-http`'s `addMiddleware` changeset for the full API.
|
|
158
|
-
|
|
159
|
-
### Patch Changes
|
|
160
|
-
|
|
161
|
-
- e8aae1f: Internal: publish every package on the `next` pre-release tag so the whole framework can be installed as a coherent set.
|
|
162
|
-
|
|
163
|
-
Packages without their own changes are bumped only to receive a `-next.N` version and the `next` dist-tag on npm. Install with:
|
|
164
|
-
|
|
165
|
-
```bash
|
|
166
|
-
pnpm add @equinor/fusion-framework-react-app@next
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
- 2836e0b: `init` no longer throws when no DOM is present.
|
|
170
|
-
|
|
171
|
-
The running instance is published as `window.Fusion` for portal shells and widgets. That assignment was unguarded, so initializing the framework anywhere without a `window` — a test runner using the `node` environment, or a server-side render — failed with `ReferenceError: window is not defined`.
|
|
172
|
-
|
|
173
|
-
The assignment is now skipped when `window` is undefined. Browser behaviour is unchanged.
|
|
174
|
-
|
|
175
|
-
- Updated dependencies [e8aae1f]
|
|
176
|
-
- Updated dependencies [2836e0b]
|
|
177
|
-
- Updated dependencies [2836e0b]
|
|
178
|
-
- Updated dependencies [2836e0b]
|
|
179
|
-
- Updated dependencies [2836e0b]
|
|
180
|
-
- Updated dependencies [2836e0b]
|
|
181
|
-
- Updated dependencies [2836e0b]
|
|
182
|
-
- Updated dependencies [2836e0b]
|
|
183
|
-
- Updated dependencies [2836e0b]
|
|
184
|
-
- Updated dependencies [2836e0b]
|
|
185
|
-
- Updated dependencies [2836e0b]
|
|
186
|
-
- Updated dependencies [2836e0b]
|
|
187
|
-
- Updated dependencies [2836e0b]
|
|
188
|
-
- Updated dependencies [2836e0b]
|
|
189
|
-
- Updated dependencies [2836e0b]
|
|
190
|
-
- Updated dependencies [2836e0b]
|
|
191
|
-
- Updated dependencies [2836e0b]
|
|
192
|
-
- Updated dependencies [2836e0b]
|
|
193
|
-
- Updated dependencies [2836e0b]
|
|
194
|
-
- Updated dependencies [2836e0b]
|
|
195
|
-
- Updated dependencies [2836e0b]
|
|
196
|
-
- Updated dependencies [2836e0b]
|
|
197
|
-
- Updated dependencies [2836e0b]
|
|
198
|
-
- @equinor/fusion-framework-module@6.1.3-next.0
|
|
199
|
-
- @equinor/fusion-framework-module-context@9.0.0-next.0
|
|
200
|
-
- @equinor/fusion-framework-module-event@6.1.0-next.0
|
|
201
|
-
- @equinor/fusion-framework-module-http@8.1.0-next.0
|
|
202
|
-
- @equinor/fusion-framework-module-msal@11.0.0-next.0
|
|
203
|
-
- @equinor/fusion-framework-module-service-discovery@10.1.0-next.0
|
|
204
|
-
- @equinor/fusion-framework-module-services@8.1.1-next.0
|
|
205
|
-
- @equinor/fusion-framework-module-telemetry@8.0.0-next.0
|
|
206
|
-
|
|
207
|
-
## 8.0.15
|
|
208
|
-
|
|
209
|
-
### Patch Changes
|
|
210
|
-
|
|
211
|
-
- Updated dependencies [73bfe52]
|
|
212
|
-
- @equinor/fusion-framework-module-context@8.0.3
|
|
213
|
-
|
|
214
|
-
## 8.0.14
|
|
215
|
-
|
|
216
|
-
### Patch Changes
|
|
217
|
-
|
|
218
|
-
- Updated dependencies [c9d7bd4]
|
|
219
|
-
- @equinor/fusion-framework-module-services@8.1.0
|
|
220
|
-
|
|
221
|
-
## 8.0.13
|
|
222
|
-
|
|
223
|
-
### Patch Changes
|
|
224
|
-
|
|
225
|
-
- Updated dependencies [1b9d026]
|
|
226
|
-
- Updated dependencies [b92698d]
|
|
227
|
-
- @equinor/fusion-framework-module-context@8.0.2
|
|
228
|
-
- @equinor/fusion-framework-module@6.1.2
|
|
229
|
-
- @equinor/fusion-framework-module-telemetry@7.0.2
|
|
230
|
-
|
|
231
|
-
## 8.0.12
|
|
232
|
-
|
|
233
|
-
### Patch Changes
|
|
234
|
-
|
|
235
|
-
- Updated dependencies [de2b4fb]
|
|
236
|
-
- @equinor/fusion-framework-module-http@8.0.5
|
|
237
|
-
- @equinor/fusion-framework-module-services@8.0.3
|
|
238
|
-
|
|
239
|
-
## 8.0.11
|
|
240
|
-
|
|
241
|
-
### Patch Changes
|
|
242
|
-
|
|
243
|
-
- 80c3e4a: Internal: add clarifying intent comments to satisfy fusion-lint; no behavior changes.
|
|
244
|
-
- 80c3e4a: Internal: resolve `noExplicitAny` Biome warning on `FrameworkConfigurator`'s `TRef` generic default with an explanatory `biome-ignore` comment (the default must remain bivariant `any`). No public API or behavior change.
|
|
245
|
-
- Updated dependencies [80c3e4a]
|
|
246
|
-
- Updated dependencies [80c3e4a]
|
|
247
|
-
- Updated dependencies [80c3e4a]
|
|
248
|
-
- Updated dependencies [80c3e4a]
|
|
249
|
-
- Updated dependencies [80c3e4a]
|
|
250
|
-
- Updated dependencies [80c3e4a]
|
|
251
|
-
- Updated dependencies [80c3e4a]
|
|
252
|
-
- Updated dependencies [80c3e4a]
|
|
253
|
-
- Updated dependencies [80c3e4a]
|
|
254
|
-
- Updated dependencies [80c3e4a]
|
|
255
|
-
- Updated dependencies [80c3e4a]
|
|
256
|
-
- Updated dependencies [80c3e4a]
|
|
257
|
-
- Updated dependencies [80c3e4a]
|
|
258
|
-
- Updated dependencies [80c3e4a]
|
|
259
|
-
- Updated dependencies [80c3e4a]
|
|
260
|
-
- Updated dependencies [80c3e4a]
|
|
261
|
-
- Updated dependencies [80c3e4a]
|
|
262
|
-
- Updated dependencies [80c3e4a]
|
|
263
|
-
- Updated dependencies [80c3e4a]
|
|
264
|
-
- Updated dependencies [80c3e4a]
|
|
265
|
-
- Updated dependencies [80c3e4a]
|
|
266
|
-
- Updated dependencies [80c3e4a]
|
|
267
|
-
- Updated dependencies [80c3e4a]
|
|
268
|
-
- Updated dependencies [80c3e4a]
|
|
269
|
-
- Updated dependencies [80c3e4a]
|
|
270
|
-
- Updated dependencies [80c3e4a]
|
|
271
|
-
- Updated dependencies [80c3e4a]
|
|
272
|
-
- @equinor/fusion-framework-module-context@8.0.1
|
|
273
|
-
- @equinor/fusion-framework-module-event@6.0.1
|
|
274
|
-
- @equinor/fusion-framework-module-http@8.0.4
|
|
275
|
-
- @equinor/fusion-framework-module-msal@10.0.2
|
|
276
|
-
- @equinor/fusion-framework-module-service-discovery@10.0.2
|
|
277
|
-
- @equinor/fusion-framework-module-services@8.0.2
|
|
278
|
-
- @equinor/fusion-framework-module@6.1.1
|
|
279
|
-
- @equinor/fusion-framework-module-telemetry@7.0.1
|
|
280
|
-
|
|
281
|
-
## 8.0.10
|
|
282
|
-
|
|
283
|
-
### Patch Changes
|
|
284
|
-
|
|
285
|
-
- Updated dependencies [7508555]
|
|
286
|
-
- @equinor/fusion-framework-module-msal@10.0.1
|
|
287
|
-
|
|
288
|
-
## 8.0.9
|
|
289
|
-
|
|
290
|
-
### Patch Changes
|
|
291
|
-
|
|
292
|
-
- @equinor/fusion-framework-module-telemetry@7.0.0
|
|
293
|
-
- @equinor/fusion-framework-module-msal@10.0.0
|
|
294
|
-
- @equinor/fusion-framework-module-http@8.0.3
|
|
295
|
-
|
|
296
|
-
## 8.0.8
|
|
297
|
-
|
|
298
|
-
### Patch Changes
|
|
299
|
-
|
|
300
|
-
- @equinor/fusion-framework-module-telemetry@6.0.1
|
|
301
|
-
|
|
302
|
-
## 8.0.7
|
|
303
|
-
|
|
304
|
-
### Patch Changes
|
|
305
|
-
|
|
306
|
-
- Updated dependencies [b7b1d9a]
|
|
307
|
-
- Updated dependencies [b7b1d9a]
|
|
308
|
-
- Updated dependencies [b7b1d9a]
|
|
309
|
-
- @equinor/fusion-framework-module@6.1.0
|
|
310
|
-
- @equinor/fusion-framework-module-telemetry@6.0.0
|
|
311
|
-
- @equinor/fusion-framework-module-msal@9.0.0
|
|
312
|
-
- @equinor/fusion-framework-module-http@8.0.2
|
|
313
|
-
|
|
314
|
-
## 8.0.6
|
|
315
|
-
|
|
316
|
-
### Patch Changes
|
|
317
|
-
|
|
318
|
-
- Updated dependencies [730d51a]
|
|
319
|
-
- @equinor/fusion-framework-module-msal@8.0.5
|
|
320
|
-
|
|
321
|
-
## 8.0.5
|
|
322
|
-
|
|
323
|
-
### Patch Changes
|
|
324
|
-
|
|
325
|
-
- Updated dependencies [f045ac0]
|
|
326
|
-
- Updated dependencies [f045ac0]
|
|
327
|
-
- @equinor/fusion-framework-module-msal@8.0.4
|
|
328
|
-
- @equinor/fusion-framework-module-http@8.0.1
|
|
329
|
-
- @equinor/fusion-framework-module-service-discovery@10.0.1
|
|
330
|
-
- @equinor/fusion-framework-module-services@8.0.1
|
|
331
|
-
- @equinor/fusion-framework-module-telemetry@5.0.2
|
|
332
|
-
|
|
333
|
-
## 8.0.4
|
|
334
|
-
|
|
335
|
-
### Patch Changes
|
|
336
|
-
|
|
337
|
-
- Updated dependencies [51e6e50]
|
|
338
|
-
- @equinor/fusion-framework-module-msal@8.0.3
|
|
339
|
-
|
|
340
|
-
## 8.0.3
|
|
341
|
-
|
|
342
|
-
### Patch Changes
|
|
343
|
-
|
|
344
|
-
- @equinor/fusion-framework-module-telemetry@5.0.1
|
|
345
|
-
|
|
346
|
-
## 8.0.2
|
|
347
|
-
|
|
348
|
-
### Patch Changes
|
|
349
|
-
|
|
350
|
-
- Updated dependencies [02a5859]
|
|
351
|
-
- @equinor/fusion-framework-module-msal@8.0.2
|
|
352
|
-
|
|
353
|
-
## 8.0.1
|
|
354
|
-
|
|
355
|
-
### Patch Changes
|
|
356
|
-
|
|
357
|
-
- Updated dependencies [244b995]
|
|
358
|
-
- @equinor/fusion-framework-module-msal@8.0.1
|
|
359
|
-
|
|
360
|
-
## 8.0.0
|
|
361
|
-
|
|
362
|
-
### Major Changes
|
|
363
|
-
|
|
364
|
-
- abffa53: Major version bump for Fusion Framework React 19 release.
|
|
365
|
-
|
|
366
|
-
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.
|
|
367
|
-
|
|
368
|
-
**Breaking changes:**
|
|
369
|
-
- Peer dependencies now require React 18 or 19 (`^18.0.0 || ^19.0.0`)
|
|
370
|
-
- React Router upgraded from v6 to v7
|
|
371
|
-
- Navigation module refactored with new history API
|
|
372
|
-
- `renderComponent` and `renderApp` now use `createRoot` API
|
|
373
|
-
|
|
374
|
-
**Migration:**
|
|
375
|
-
- Update your React version to 18.0.0 or higher before upgrading
|
|
376
|
-
- Replace `NavigationProvider.createRouter()` with `@equinor/fusion-framework-react-router`
|
|
377
|
-
- See individual package changelogs for package-specific migration steps
|
|
378
|
-
|
|
379
|
-
### Patch Changes
|
|
380
|
-
|
|
381
|
-
- aaa3f74: fix(security): address undici multiple vulnerabilities (CVE-2026-1524, 1527, 1528, 2581)
|
|
382
|
-
|
|
383
|
-
Upgrade undici from 7.22.0 to 7.24.3 to fix multiple security vulnerabilities affecting WebSocket parsing, HTTP header validation, and request deduplication:
|
|
384
|
-
- **CVE-2026-1528** (HIGH): WebSocket 64-bit length integer overflow causing process crash
|
|
385
|
-
- **CVE-2026-1524** (MODERATE): HTTP/1.1 response field header injection
|
|
386
|
-
- **CVE-2026-1527** (MODERATE): CRLF injection via upgrade option enabling protocol smuggling
|
|
387
|
-
- **CVE-2026-2581** (MODERATE): Unbounded memory consumption in deduplication handler
|
|
388
|
-
|
|
389
|
-
These are non-breaking security patches that harden undici against untrusted upstream endpoints and malicious WebSocket frames.
|
|
390
|
-
|
|
391
|
-
**Advisories**: GHSA-f269-vfmq-vjvj, GHSA-v9p9-hfj2-hcw8, GHSA-4992-7rv2-5pvq, GHSA-phc3-fgpg-7m6h
|
|
392
|
-
**Fixed in**: undici 7.24.0+ (deployed 7.24.3)
|
|
393
|
-
|
|
394
|
-
- Updated dependencies [abffa53]
|
|
395
|
-
- Updated dependencies [abffa53]
|
|
396
|
-
- Updated dependencies [abffa53]
|
|
397
|
-
- Updated dependencies [8f30948]
|
|
398
|
-
- Updated dependencies [abffa53]
|
|
399
|
-
- @equinor/fusion-framework-module@6.0.0
|
|
400
|
-
- @equinor/fusion-framework-module-context@8.0.0
|
|
401
|
-
- @equinor/fusion-framework-module-event@6.0.0
|
|
402
|
-
- @equinor/fusion-framework-module-http@8.0.0
|
|
403
|
-
- @equinor/fusion-framework-module-msal@8.0.0
|
|
404
|
-
- @equinor/fusion-framework-module-service-discovery@10.0.0
|
|
405
|
-
- @equinor/fusion-framework-module-services@8.0.0
|
|
406
|
-
- @equinor/fusion-framework-module-telemetry@5.0.0
|
|
407
|
-
|
|
408
|
-
## 7.4.13
|
|
409
|
-
|
|
410
|
-
### Patch Changes
|
|
411
|
-
|
|
412
|
-
- [#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.
|
|
413
|
-
|
|
414
|
-
- Updated dependencies [[`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581), [`db8fa81`](https://github.com/equinor/fusion-framework/commit/db8fa8134b77a628b15e06f7f72b50f04ef97458)]:
|
|
415
|
-
- @equinor/fusion-framework-module-context@7.0.3
|
|
416
|
-
- @equinor/fusion-framework-module-event@5.0.1
|
|
417
|
-
- @equinor/fusion-framework-module-http@7.0.8
|
|
418
|
-
- @equinor/fusion-framework-module@5.0.6
|
|
419
|
-
- @equinor/fusion-framework-module-msal@7.3.1
|
|
420
|
-
- @equinor/fusion-framework-module-service-discovery@9.1.1
|
|
421
|
-
- @equinor/fusion-framework-module-services@7.2.1
|
|
422
|
-
- @equinor/fusion-framework-module-telemetry@4.6.4
|
|
423
|
-
|
|
424
|
-
## 7.4.12
|
|
425
|
-
|
|
426
|
-
### Patch Changes
|
|
427
|
-
|
|
428
|
-
- Updated dependencies [[`ec7d2ce`](https://github.com/equinor/fusion-framework/commit/ec7d2ce0ed3f1d447b8cf410d2ef94fb1b557bbb)]:
|
|
429
|
-
- @equinor/fusion-framework-module-msal@7.3.0
|
|
430
|
-
|
|
431
|
-
## 7.4.11
|
|
432
|
-
|
|
433
|
-
### Patch Changes
|
|
434
|
-
|
|
435
|
-
- Updated dependencies [[`f09b26f`](https://github.com/equinor/fusion-framework/commit/f09b26f100a94bf3c841be9830525aa2c734b180)]:
|
|
436
|
-
- @equinor/fusion-framework-module-services@7.2.0
|
|
437
|
-
|
|
438
|
-
## 7.4.10
|
|
439
|
-
|
|
440
|
-
### Patch Changes
|
|
441
|
-
|
|
442
|
-
- Updated dependencies [[`c8e27eb`](https://github.com/equinor/fusion-framework/commit/c8e27eb3a119b4077effe20a10dfb2dfd3dc865e)]:
|
|
443
|
-
- @equinor/fusion-framework-module-msal@7.2.2
|
|
444
|
-
|
|
445
|
-
## 7.4.9
|
|
446
|
-
|
|
447
|
-
### Patch Changes
|
|
448
|
-
|
|
449
|
-
- Updated dependencies [[`1594ed8`](https://github.com/equinor/fusion-framework/commit/1594ed879579d0db6e42c5052a33174f7bf9346c), [`1594ed8`](https://github.com/equinor/fusion-framework/commit/1594ed879579d0db6e42c5052a33174f7bf9346c)]:
|
|
450
|
-
- @equinor/fusion-framework-module-msal@7.2.1
|
|
451
|
-
|
|
452
|
-
## 7.4.8
|
|
453
|
-
|
|
454
|
-
### Patch Changes
|
|
455
|
-
|
|
456
|
-
- Updated dependencies [[`dcf51aa`](https://github.com/equinor/fusion-framework/commit/dcf51aa87ac79200893ec4909632554464e75055)]:
|
|
457
|
-
- @equinor/fusion-framework-module-msal@7.2.0
|
|
458
|
-
|
|
459
|
-
## 7.4.7
|
|
460
|
-
|
|
461
|
-
### Patch Changes
|
|
462
|
-
|
|
463
|
-
- Updated dependencies [[`0b34d5d`](https://github.com/equinor/fusion-framework/commit/0b34d5d895c740a77fc995abeca910fdca1cf633)]:
|
|
464
|
-
- @equinor/fusion-framework-module-msal@7.1.0
|
|
465
|
-
|
|
466
|
-
## 7.4.6
|
|
467
|
-
|
|
468
|
-
### Patch Changes
|
|
469
|
-
|
|
470
|
-
- Updated dependencies [[`21458e5`](https://github.com/equinor/fusion-framework/commit/21458e5e7585f0bf266c66d6f4135396fd7c1529)]:
|
|
471
|
-
- @equinor/fusion-framework-module-telemetry@4.6.3
|
|
472
|
-
|
|
473
|
-
## 7.4.5
|
|
474
|
-
|
|
475
|
-
### Patch Changes
|
|
476
|
-
|
|
477
|
-
- Updated dependencies [[`434ce70`](https://github.com/equinor/fusion-framework/commit/434ce707d237b399f8438eebe742641b2a81b11f)]:
|
|
478
|
-
- @equinor/fusion-framework-module-service-discovery@9.1.0
|
|
479
|
-
|
|
480
|
-
## 7.4.4
|
|
481
|
-
|
|
482
|
-
### Patch Changes
|
|
483
|
-
|
|
484
|
-
- Updated dependencies [[`1f5a8e4`](https://github.com/equinor/fusion-framework/commit/1f5a8e475ea30fa1e0f32c7dab885a5a42c50bba)]:
|
|
485
|
-
- @equinor/fusion-framework-module-event@5.0.0
|
|
486
|
-
- @equinor/fusion-framework-module-context@7.0.2
|
|
487
|
-
- @equinor/fusion-framework-module-telemetry@4.6.2
|
|
488
|
-
|
|
489
|
-
## 7.4.3
|
|
490
|
-
|
|
491
|
-
### Patch Changes
|
|
492
|
-
|
|
493
|
-
- Updated dependencies [[`cb37cae`](https://github.com/equinor/fusion-framework/commit/cb37cae45e06778e8d1ea20faed31b582e49fcae)]:
|
|
494
|
-
- @equinor/fusion-framework-module-msal@7.0.0
|
|
495
|
-
- @equinor/fusion-framework-module-http@7.0.7
|
|
496
|
-
|
|
497
|
-
## 7.4.2
|
|
498
|
-
|
|
499
|
-
### Patch Changes
|
|
500
|
-
|
|
501
|
-
- [#3714](https://github.com/equinor/fusion-framework/pull/3714) [`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8) Thanks [@odinr](https://github.com/odinr)! - Update FrameworkConfigurator.configureMsal to use MsalClientConfig instead of AuthClientConfig.
|
|
502
|
-
|
|
503
|
-
This change aligns the framework configurator with the updated MSAL module types while maintaining backward compatibility through type aliases.
|
|
504
|
-
|
|
505
|
-
- Updated dependencies [[`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8), [`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8), [`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8), [`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8)]:
|
|
506
|
-
- @equinor/fusion-framework-module-http@7.0.5
|
|
507
|
-
- @equinor/fusion-framework-module-telemetry@4.4.0
|
|
508
|
-
- @equinor/fusion-framework-module-msal@6.0.0
|
|
509
|
-
|
|
510
|
-
## 7.4.1
|
|
511
|
-
|
|
512
|
-
### Patch Changes
|
|
513
|
-
|
|
514
|
-
- [#3590](https://github.com/equinor/fusion-framework/pull/3590) [`0bc6b38`](https://github.com/equinor/fusion-framework/commit/0bc6b38e61c98a2f9dea7b55fa9983f268f860be) Thanks [@odinr](https://github.com/odinr)! - Internal: Add static className properties to configurator classes (ModulesConfigurator, FrameworkConfigurator, AppConfigurator) to prevent constructor name mangling during compilation and ensure proper event naming.
|
|
515
|
-
|
|
516
|
-
- Updated dependencies [[`d08ee58`](https://github.com/equinor/fusion-framework/commit/d08ee5850acf5bbbf63ac93c8da81647e3ca55b5), [`dcdec9f`](https://github.com/equinor/fusion-framework/commit/dcdec9f87d591781d11db34c24e6bf85de3a3f48), [`6dfb29e`](https://github.com/equinor/fusion-framework/commit/6dfb29eef67548228c05668b44ad02a34c83b050), [`6900d98`](https://github.com/equinor/fusion-framework/commit/6900d98142c84f4703095f8d03b09af57a1d7d2e), [`e1a94c5`](https://github.com/equinor/fusion-framework/commit/e1a94c5a1df4ac2ec92ed25b75648397a3dbfa7b), [`e1a94c5`](https://github.com/equinor/fusion-framework/commit/e1a94c5a1df4ac2ec92ed25b75648397a3dbfa7b), [`88e0e58`](https://github.com/equinor/fusion-framework/commit/88e0e58fcdcfa069be2c652ac46a4bb11e91abb1), [`31e2581`](https://github.com/equinor/fusion-framework/commit/31e2581fca2765dc7caf54f74db3db51020b53b7), [`0bc6b38`](https://github.com/equinor/fusion-framework/commit/0bc6b38e61c98a2f9dea7b55fa9983f268f860be), [`a13de68`](https://github.com/equinor/fusion-framework/commit/a13de68b2f196a779ea850af055d8db7926941ce)]:
|
|
517
|
-
- @equinor/fusion-framework-module-context@7.0.2
|
|
518
|
-
- @equinor/fusion-framework-module-event@4.4.0
|
|
519
|
-
- @equinor/fusion-framework-module-services@7.1.3
|
|
520
|
-
- @equinor/fusion-framework-module-http@7.0.3
|
|
521
|
-
- @equinor/fusion-framework-module@5.0.4
|
|
522
|
-
- @equinor/fusion-framework-module-msal@5.1.1
|
|
523
|
-
- @equinor/fusion-framework-module-telemetry@4.3.0
|
|
524
|
-
- @equinor/fusion-framework-module-service-discovery@9.0.3
|
|
525
|
-
|
|
526
|
-
## 7.4.0
|
|
527
|
-
|
|
528
|
-
### Minor Changes
|
|
529
|
-
|
|
530
|
-
- [#3492](https://github.com/equinor/fusion-framework/pull/3492) [`7ba4713`](https://github.com/equinor/fusion-framework/commit/7ba47139a8d7cfbb757bd4626425c611e22c2126) Thanks [@odinr](https://github.com/odinr)! - Integrate telemetry module into framework core.
|
|
531
|
-
- Add TelemetryModule to FusionModules type definition
|
|
532
|
-
- Enable telemetry in FrameworkConfigurator with default configuration
|
|
533
|
-
- Add event$ observable with framework-specific event prefixing
|
|
534
|
-
- Include framework metadata in telemetry collection
|
|
535
|
-
|
|
536
|
-
resolves: [#3491](https://github.com/equinor/fusion-framework/issues/3491)
|
|
537
|
-
|
|
538
|
-
### Patch Changes
|
|
539
|
-
|
|
540
|
-
- [#3490](https://github.com/equinor/fusion-framework/pull/3490) [`45954e5`](https://github.com/equinor/fusion-framework/commit/45954e5db471a2faa24e88e41fc6d6c18817d6d1) Thanks [@odinr](https://github.com/odinr)! - Remove explicit logger initialization from configurator constructors in favor of telemetry.
|
|
541
|
-
- Removed `this.logger = new ModuleConsoleLogger(...)` from FrameworkConfigurator, AppConfigurator, and WidgetConfigurator constructors
|
|
542
|
-
- Logger functionality will be handled through telemetry module with console logging adapter
|
|
543
|
-
|
|
544
|
-
This prepares the configurators to use telemetry for logging instead of direct console logger initialization.
|
|
545
|
-
|
|
546
|
-
- Updated dependencies [[`6cb288b`](https://github.com/equinor/fusion-framework/commit/6cb288b9e1ec4fae68ae6899735c176837bb4275), [`a66d70a`](https://github.com/equinor/fusion-framework/commit/a66d70a9fa40ab14f2534be4f22b6d1f602097a0), [`45954e5`](https://github.com/equinor/fusion-framework/commit/45954e5db471a2faa24e88e41fc6d6c18817d6d1), [`4e78565`](https://github.com/equinor/fusion-framework/commit/4e7856590f73fee840b065a0e4d89962e167ed9e), [`0bad642`](https://github.com/equinor/fusion-framework/commit/0bad642205a7f780dcb6685243102b65b3755fa2), [`45954e5`](https://github.com/equinor/fusion-framework/commit/45954e5db471a2faa24e88e41fc6d6c18817d6d1)]:
|
|
547
|
-
- @equinor/fusion-framework-module-context@7.0.1
|
|
548
|
-
- @equinor/fusion-framework-module-http@7.0.2
|
|
549
|
-
- @equinor/fusion-framework-module@5.0.3
|
|
550
|
-
- @equinor/fusion-framework-module-telemetry@4.2.0
|
|
551
|
-
- @equinor/fusion-framework-module-service-discovery@9.0.2
|
|
552
|
-
|
|
553
|
-
## 7.3.20
|
|
554
|
-
|
|
555
|
-
### Patch Changes
|
|
556
|
-
|
|
557
|
-
- [#3465](https://github.com/equinor/fusion-framework/pull/3465) [`df88854`](https://github.com/equinor/fusion-framework/commit/df888548eb50dd2d130e6651596ab4f7fac41f2c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump rollup from 4.52.2 to 4.52.3
|
|
558
|
-
|
|
559
|
-
This updates the rollup build tool to the latest patch version, which includes bug fixes for native loader environments that don't support reports.
|
|
560
|
-
|
|
561
|
-
- Updated dependencies [[`5b2b300`](https://github.com/equinor/fusion-framework/commit/5b2b300492ff7f3e2bf9aa10d6697178486028ec)]:
|
|
562
|
-
- @equinor/fusion-framework-module-services@7.1.2
|
|
563
|
-
|
|
564
|
-
## 7.3.19
|
|
565
|
-
|
|
566
|
-
### Patch Changes
|
|
567
|
-
|
|
568
|
-
- Updated dependencies [[`c222c67`](https://github.com/equinor/fusion-framework/commit/c222c673bc7cdefff6eb0cd9436bfa3d1f185295), [`c222c67`](https://github.com/equinor/fusion-framework/commit/c222c673bc7cdefff6eb0cd9436bfa3d1f185295), [`c222c67`](https://github.com/equinor/fusion-framework/commit/c222c673bc7cdefff6eb0cd9436bfa3d1f185295), [`c222c67`](https://github.com/equinor/fusion-framework/commit/c222c673bc7cdefff6eb0cd9436bfa3d1f185295)]:
|
|
569
|
-
- @equinor/fusion-framework-module-http@7.0.0
|
|
570
|
-
- @equinor/fusion-framework-module-msal@5.0.0
|
|
571
|
-
- @equinor/fusion-framework-module-service-discovery@9.0.0
|
|
572
|
-
- @equinor/fusion-framework-module-services@7.1.0
|
|
573
|
-
|
|
574
|
-
## 7.3.18
|
|
575
|
-
|
|
576
|
-
### Patch Changes
|
|
577
|
-
|
|
578
|
-
- [#3391](https://github.com/equinor/fusion-framework/pull/3391) [`7792659`](https://github.com/equinor/fusion-framework/commit/7792659bf2ade10dba5e54c610d5abff522324b6) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump vitest and @vitest/coverage-v8 from 2.0.1 to 3.2.4
|
|
579
|
-
|
|
580
|
-
Major version update of Vitest testing framework and coverage package.
|
|
581
|
-
|
|
582
|
-
### Breaking Changes
|
|
583
|
-
- Updated from Vitest v2 to v3
|
|
584
|
-
- Coverage reporting may have configuration changes
|
|
585
|
-
- Test runner behavior improvements
|
|
586
|
-
|
|
587
|
-
### New Features
|
|
588
|
-
- Enhanced coverage reporting capabilities
|
|
589
|
-
- Improved test performance
|
|
590
|
-
- Better error handling and reporting
|
|
591
|
-
- Updated Vite integration (v6.3.5)
|
|
592
|
-
|
|
593
|
-
### Links
|
|
594
|
-
- [Vitest v3.2.4 Release Notes](https://github.com/vitest-dev/vitest/releases/tag/v3.2.4)
|
|
595
|
-
- [Vitest v3 Migration Guide](https://vitest.dev/guide/migration.html)
|
|
596
|
-
- [Coverage v8 Documentation](https://vitest.dev/guide/coverage.html)
|
|
597
|
-
|
|
598
|
-
- Updated dependencies [[`da373ad`](https://github.com/equinor/fusion-framework/commit/da373ade663898b2628e28529b6e3dea3b91ed43), [`3ce5a18`](https://github.com/equinor/fusion-framework/commit/3ce5a1887c8fb90f24c3367f8926db69cc9a1914)]:
|
|
599
|
-
- @equinor/fusion-framework-module-msal@4.1.0
|
|
600
|
-
- @equinor/fusion-framework-module-services@7.0.2
|
|
601
|
-
|
|
602
|
-
## 7.3.17
|
|
603
|
-
|
|
604
|
-
### Patch Changes
|
|
605
|
-
|
|
606
|
-
- Updated dependencies [[`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253), [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253), [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253), [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253), [`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253)]:
|
|
607
|
-
- @equinor/fusion-framework-module-http@6.3.4
|
|
608
|
-
- @equinor/fusion-framework-module@5.0.0
|
|
609
|
-
- @equinor/fusion-framework-module-msal@4.0.8
|
|
610
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.18
|
|
611
|
-
- @equinor/fusion-framework-module-services@7.0.0
|
|
612
|
-
- @equinor/fusion-framework-module-context@7.0.0
|
|
613
|
-
- @equinor/fusion-framework-module-event@4.3.7
|
|
614
|
-
|
|
615
|
-
## 7.3.16
|
|
616
|
-
|
|
617
|
-
### Patch Changes
|
|
618
|
-
|
|
619
|
-
- Updated dependencies [[`4447dd9`](https://github.com/equinor/fusion-framework/commit/4447dd9da60305eade68241ffbe670c4c7dde19a)]:
|
|
620
|
-
- @equinor/fusion-framework-module-services@6.0.4
|
|
621
|
-
- @equinor/fusion-framework-module-context@6.0.6
|
|
622
|
-
|
|
623
|
-
## 7.3.15
|
|
624
|
-
|
|
625
|
-
### Patch Changes
|
|
626
|
-
|
|
627
|
-
- Updated dependencies [[`7441b13`](https://github.com/equinor/fusion-framework/commit/7441b13aa50dd7362d1629086a27b6b4e571575d)]:
|
|
628
|
-
- @equinor/fusion-framework-module-services@6.0.3
|
|
629
|
-
- @equinor/fusion-framework-module-http@6.3.3
|
|
630
|
-
- @equinor/fusion-framework-module-msal@4.0.7
|
|
631
|
-
- @equinor/fusion-framework-module-context@6.0.6
|
|
632
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.17
|
|
633
|
-
|
|
634
|
-
## 7.3.14
|
|
635
|
-
|
|
636
|
-
### Patch Changes
|
|
637
|
-
|
|
638
|
-
- Updated dependencies []:
|
|
639
|
-
- @equinor/fusion-framework-module-context@6.0.5
|
|
640
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.16
|
|
641
|
-
- @equinor/fusion-framework-module-services@6.0.2
|
|
642
|
-
|
|
643
|
-
## 7.3.13
|
|
644
|
-
|
|
645
|
-
### Patch Changes
|
|
646
|
-
|
|
647
|
-
- Updated dependencies []:
|
|
648
|
-
- @equinor/fusion-framework-module-context@6.0.4
|
|
649
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.15
|
|
650
|
-
- @equinor/fusion-framework-module-services@6.0.2
|
|
651
|
-
|
|
652
|
-
## 7.3.12
|
|
653
|
-
|
|
654
|
-
### Patch Changes
|
|
655
|
-
|
|
656
|
-
- Updated dependencies [[`231e24e`](https://github.com/equinor/fusion-framework/commit/231e24eef9ca33db2fbde2fdd1c918eeb620c8c4)]:
|
|
657
|
-
- @equinor/fusion-framework-module-context@6.0.3
|
|
658
|
-
|
|
659
|
-
## 7.3.11
|
|
660
|
-
|
|
661
|
-
### Patch Changes
|
|
662
|
-
|
|
663
|
-
- Updated dependencies [[`96bb1fb`](https://github.com/equinor/fusion-framework/commit/96bb1fb744d8dc2410e99fea6ca948d2d5489428)]:
|
|
664
|
-
- @equinor/fusion-framework-module-context@6.0.2
|
|
665
|
-
- @equinor/fusion-framework-module@4.4.2
|
|
666
|
-
- @equinor/fusion-framework-module-event@4.3.6
|
|
667
|
-
- @equinor/fusion-framework-module-http@6.3.2
|
|
668
|
-
- @equinor/fusion-framework-module-msal@4.0.6
|
|
669
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.14
|
|
670
|
-
- @equinor/fusion-framework-module-services@6.0.2
|
|
671
|
-
|
|
672
|
-
## 7.3.10
|
|
673
|
-
|
|
674
|
-
### Patch Changes
|
|
675
|
-
|
|
676
|
-
- Updated dependencies [[`e49f916`](https://github.com/equinor/fusion-framework/commit/e49f9161557202df57248d02ade4d2ef50231bdc), [`c6af3a3`](https://github.com/equinor/fusion-framework/commit/c6af3a3c926fb245e9d056b506d47b8bf4f1efde)]:
|
|
677
|
-
- @equinor/fusion-framework-module@4.4.1
|
|
678
|
-
- @equinor/fusion-framework-module-services@6.0.1
|
|
679
|
-
- @equinor/fusion-framework-module-event@4.3.5
|
|
680
|
-
- @equinor/fusion-framework-module-http@6.3.1
|
|
681
|
-
- @equinor/fusion-framework-module-msal@4.0.5
|
|
682
|
-
- @equinor/fusion-framework-module-context@6.0.1
|
|
683
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.13
|
|
684
|
-
|
|
685
|
-
## 7.3.9
|
|
686
|
-
|
|
687
|
-
### Patch Changes
|
|
688
|
-
|
|
689
|
-
- Updated dependencies [[`efd70a3`](https://github.com/equinor/fusion-framework/commit/efd70a34f734e0c155d3440e35ce4fa11a7abc42), [`7a0a510`](https://github.com/equinor/fusion-framework/commit/7a0a510e0af1f0769c596e1b9aaa391250efd95d)]:
|
|
690
|
-
- @equinor/fusion-framework-module@4.4.0
|
|
691
|
-
- @equinor/fusion-framework-module-http@6.3.0
|
|
692
|
-
- @equinor/fusion-framework-module-context@6.0.0
|
|
693
|
-
- @equinor/fusion-framework-module-event@4.3.4
|
|
694
|
-
- @equinor/fusion-framework-module-msal@4.0.4
|
|
695
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.12
|
|
696
|
-
- @equinor/fusion-framework-module-services@6.0.0
|
|
697
|
-
|
|
698
|
-
## 7.3.8
|
|
699
|
-
|
|
700
|
-
### Patch Changes
|
|
701
|
-
|
|
702
|
-
- Updated dependencies [[`f53b60b`](https://github.com/equinor/fusion-framework/commit/f53b60b7805706ce7617e614f0ac0c24317a2e43)]:
|
|
703
|
-
- @equinor/fusion-framework-module-services@5.1.4
|
|
704
|
-
- @equinor/fusion-framework-module@4.3.8
|
|
705
|
-
- @equinor/fusion-framework-module-event@4.3.3
|
|
706
|
-
- @equinor/fusion-framework-module-http@6.2.5
|
|
707
|
-
- @equinor/fusion-framework-module-msal@4.0.3
|
|
708
|
-
- @equinor/fusion-framework-module-context@5.1.3
|
|
709
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.11
|
|
710
|
-
|
|
711
|
-
## 7.3.7
|
|
712
|
-
|
|
713
|
-
### Patch Changes
|
|
714
|
-
|
|
715
|
-
- Updated dependencies [[`2c9fcd6`](https://github.com/equinor/fusion-framework/commit/2c9fcd6bcacb3e1b94d7aa4ad2e9d216a329faa5)]:
|
|
716
|
-
- @equinor/fusion-framework-module-context@5.1.2
|
|
717
|
-
|
|
718
|
-
## 7.3.6
|
|
719
|
-
|
|
720
|
-
### Patch Changes
|
|
721
|
-
|
|
722
|
-
- Updated dependencies [[`134863f`](https://github.com/equinor/fusion-framework/commit/134863fa96bcd5f799bc621f755b1605d0c1255c)]:
|
|
723
|
-
- @equinor/fusion-framework-module-services@5.1.3
|
|
724
|
-
- @equinor/fusion-framework-module-context@5.1.1
|
|
725
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.10
|
|
726
|
-
|
|
727
|
-
## 7.3.5
|
|
728
|
-
|
|
729
|
-
### Patch Changes
|
|
730
|
-
|
|
731
|
-
- Updated dependencies [[`e164abc`](https://github.com/equinor/fusion-framework/commit/e164abcf52ff84d181ed5406d2a28441d54da9a8)]:
|
|
732
|
-
- @equinor/fusion-framework-module-http@6.2.4
|
|
733
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.9
|
|
734
|
-
- @equinor/fusion-framework-module-services@5.1.2
|
|
735
|
-
|
|
736
|
-
## 7.3.4
|
|
737
|
-
|
|
738
|
-
### Patch Changes
|
|
739
|
-
|
|
740
|
-
- Updated dependencies [[`5da6b2d`](https://github.com/equinor/fusion-framework/commit/5da6b2d4cb7fb93ff3784753a0052d3362ab828d)]:
|
|
741
|
-
- @equinor/fusion-framework-module-context@5.1.0
|
|
742
|
-
|
|
743
|
-
## 7.3.3
|
|
744
|
-
|
|
745
|
-
### Patch Changes
|
|
746
|
-
|
|
747
|
-
- [#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`
|
|
748
|
-
|
|
749
|
-
- Updated dependencies [[`abb3560`](https://github.com/equinor/fusion-framework/commit/abb3560a22ad8830df19904272035458433f4237), [`8c6c598`](https://github.com/equinor/fusion-framework/commit/8c6c598fce973f9c24426d5e108cc3301d2da139), [`fdd057e`](https://github.com/equinor/fusion-framework/commit/fdd057e0920ffb93e07b6338e3ff592a65dabbc6), [`0a7cfc1`](https://github.com/equinor/fusion-framework/commit/0a7cfc18a2debea272bc934c473ede9510c0368d)]:
|
|
750
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.8
|
|
751
|
-
- @equinor/fusion-framework-module-services@5.1.2
|
|
752
|
-
- @equinor/fusion-framework-module-context@5.0.19
|
|
753
|
-
- @equinor/fusion-framework-module@4.3.7
|
|
754
|
-
- @equinor/fusion-framework-module-event@4.3.2
|
|
755
|
-
- @equinor/fusion-framework-module-http@6.2.3
|
|
756
|
-
- @equinor/fusion-framework-module-msal@4.0.2
|
|
757
|
-
|
|
758
|
-
## 7.3.2
|
|
759
|
-
|
|
760
|
-
### Patch Changes
|
|
761
|
-
|
|
762
|
-
- Updated dependencies [[`11e18fd`](https://github.com/equinor/fusion-framework/commit/11e18fd755e65d1bbbb9b98638fdb9a98c2c23ab)]:
|
|
763
|
-
- @equinor/fusion-framework-module-context@5.0.18
|
|
764
|
-
|
|
765
|
-
## 7.3.1
|
|
766
|
-
|
|
767
|
-
### Patch Changes
|
|
768
|
-
|
|
769
|
-
- [#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.
|
|
770
|
-
|
|
771
|
-
- Updated dependencies [[`ba5d12e`](https://github.com/equinor/fusion-framework/commit/ba5d12eba0a38db412353765e997d02c1fbb478d), [`6efabb7`](https://github.com/equinor/fusion-framework/commit/6efabb7837a97319e976e122db855d8b88b031a6), [`1953dd2`](https://github.com/equinor/fusion-framework/commit/1953dd217d85fa4880856b2c97b6305fcbaf2e24), [`dcd2fb1`](https://github.com/equinor/fusion-framework/commit/dcd2fb1394e175d0cc2a4289ed3ede8e0271d67d)]:
|
|
772
|
-
- @equinor/fusion-framework-module@4.3.6
|
|
773
|
-
- @equinor/fusion-framework-module-http@6.2.2
|
|
774
|
-
- @equinor/fusion-framework-module-msal@4.0.1
|
|
775
|
-
- @equinor/fusion-framework-module-services@5.1.1
|
|
776
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.7
|
|
777
|
-
- @equinor/fusion-framework-module-context@5.0.17
|
|
778
|
-
- @equinor/fusion-framework-module-event@4.3.1
|
|
779
|
-
|
|
780
|
-
## 7.3.0
|
|
781
|
-
|
|
782
|
-
### Minor Changes
|
|
783
|
-
|
|
784
|
-
- [#2814](https://github.com/equinor/fusion-framework/pull/2814) [`ea4b522`](https://github.com/equinor/fusion-framework/commit/ea4b5221b30719289fc947b5dbb0acd3ea52ffaa) Thanks [@odinr](https://github.com/odinr)! - ---
|
|
785
|
-
|
|
786
|
-
## "@equinor/fusion-framework": minor
|
|
787
|
-
|
|
788
|
-
**@equinor/fusion-framework:**
|
|
789
|
-
|
|
790
|
-
Enhanced the `FrameworkConfigurator` class to improve the configuration of MSAL authentication.
|
|
791
|
-
- Updated the `configureMsal` method to accept a callback function (`AuthConfigFn`) and an optional `requiresAuth` parameter.
|
|
792
|
-
- The `configureMsal` method now adds a configuration object that sets the `requiresAuth` property and invokes the provided callback function with the builder.
|
|
793
|
-
|
|
794
|
-
```ts
|
|
795
|
-
/** Example of using the updated `configureMsal` method */
|
|
796
|
-
import { FrameworkConfigurator } from "@equinor/fusion-framework";
|
|
797
|
-
|
|
798
|
-
const configurator = new FrameworkConfigurator();
|
|
799
|
-
// prefered way to configure MSAL
|
|
800
|
-
configurator.configureMsal((builder) => {
|
|
801
|
-
builder.setClientConfig({
|
|
802
|
-
tentantId: "...",
|
|
803
|
-
clientId: "...",
|
|
804
|
-
redirectUri: "...",
|
|
805
|
-
});
|
|
806
|
-
builder.setRequiresAuth(true);
|
|
807
|
-
});
|
|
808
|
-
|
|
809
|
-
// backward compatible way to configure MSAL
|
|
810
|
-
configurator.configureMsal(
|
|
811
|
-
{
|
|
812
|
-
tentantId: "...",
|
|
813
|
-
clientId: "...",
|
|
814
|
-
redirectUri: "...",
|
|
815
|
-
},
|
|
816
|
-
true,
|
|
817
|
-
);
|
|
818
|
-
```
|
|
819
|
-
|
|
820
|
-
This change is **backward compatible** and does not require any changes to existing code, but it is recommended to use the new callback function for better readability and maintainability.
|
|
821
|
-
|
|
822
|
-
### Patch Changes
|
|
823
|
-
|
|
824
|
-
- Updated dependencies [[`ea4b522`](https://github.com/equinor/fusion-framework/commit/ea4b5221b30719289fc947b5dbb0acd3ea52ffaa)]:
|
|
825
|
-
- @equinor/fusion-framework-module-msal@4.0.0
|
|
826
|
-
- @equinor/fusion-framework-module-http@6.2.1
|
|
827
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.6
|
|
828
|
-
- @equinor/fusion-framework-module-services@5.1.0
|
|
829
|
-
|
|
830
|
-
## 7.2.16
|
|
831
|
-
|
|
832
|
-
### Patch Changes
|
|
833
|
-
|
|
834
|
-
- Updated dependencies []:
|
|
835
|
-
- @equinor/fusion-framework-module-context@5.0.16
|
|
836
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.5
|
|
837
|
-
- @equinor/fusion-framework-module-services@5.1.0
|
|
838
|
-
|
|
839
|
-
## 7.2.15
|
|
840
|
-
|
|
841
|
-
### Patch Changes
|
|
842
|
-
|
|
843
|
-
- Updated dependencies [[`a551b01`](https://github.com/equinor/fusion-framework/commit/a551b01d552b9b9770d1f5132803f92cc91d4bc6)]:
|
|
844
|
-
- @equinor/fusion-framework-module-event@4.3.0
|
|
845
|
-
- @equinor/fusion-framework-module-context@5.0.15
|
|
846
|
-
|
|
847
|
-
## 7.2.14
|
|
848
|
-
|
|
849
|
-
### Patch Changes
|
|
850
|
-
|
|
851
|
-
- Updated dependencies [[`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb)]:
|
|
852
|
-
- @equinor/fusion-framework-module-services@5.1.0
|
|
853
|
-
- @equinor/fusion-framework-module-context@5.0.15
|
|
854
|
-
|
|
855
|
-
## 7.2.13
|
|
856
|
-
|
|
857
|
-
### Patch Changes
|
|
858
|
-
|
|
859
|
-
- Updated dependencies []:
|
|
860
|
-
- @equinor/fusion-framework-module-context@5.0.15
|
|
861
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.4
|
|
862
|
-
- @equinor/fusion-framework-module-services@5.0.1
|
|
863
|
-
|
|
864
|
-
## 7.2.12
|
|
865
|
-
|
|
866
|
-
### Patch Changes
|
|
867
|
-
|
|
868
|
-
- Updated dependencies [[`2343667`](https://github.com/equinor/fusion-framework/commit/234366756878550ed7405610f384d69fb6a89967)]:
|
|
869
|
-
- @equinor/fusion-framework-module-services@5.0.1
|
|
870
|
-
- @equinor/fusion-framework-module-context@5.0.14
|
|
871
|
-
|
|
872
|
-
## 7.2.11
|
|
873
|
-
|
|
874
|
-
### Patch Changes
|
|
875
|
-
|
|
876
|
-
- Updated dependencies []:
|
|
877
|
-
- @equinor/fusion-framework-module-context@5.0.14
|
|
878
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.3
|
|
879
|
-
- @equinor/fusion-framework-module-services@5.0.0
|
|
880
|
-
|
|
881
|
-
## 7.2.10
|
|
882
|
-
|
|
883
|
-
### Patch Changes
|
|
884
|
-
|
|
885
|
-
- Updated dependencies [[`9d1cb90`](https://github.com/equinor/fusion-framework/commit/9d1cb9003fa10e7ccaa95c20ef86f0a618034641)]:
|
|
886
|
-
- @equinor/fusion-framework-module-services@5.0.0
|
|
887
|
-
- @equinor/fusion-framework-module-context@5.0.13
|
|
888
|
-
|
|
889
|
-
## 7.2.9
|
|
890
|
-
|
|
891
|
-
### Patch Changes
|
|
892
|
-
|
|
893
|
-
- Updated dependencies []:
|
|
894
|
-
- @equinor/fusion-framework-module-context@5.0.13
|
|
895
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.2
|
|
896
|
-
- @equinor/fusion-framework-module-services@4.1.5
|
|
897
|
-
|
|
898
|
-
## 7.2.8
|
|
899
|
-
|
|
900
|
-
### Patch Changes
|
|
901
|
-
|
|
902
|
-
- Updated dependencies [[`73af73e`](https://github.com/equinor/fusion-framework/commit/73af73e5582ca27b132210af8ba308b80e036d51), [`73af73e`](https://github.com/equinor/fusion-framework/commit/73af73e5582ca27b132210af8ba308b80e036d51), [`73af73e`](https://github.com/equinor/fusion-framework/commit/73af73e5582ca27b132210af8ba308b80e036d51), [`73af73e`](https://github.com/equinor/fusion-framework/commit/73af73e5582ca27b132210af8ba308b80e036d51), [`73af73e`](https://github.com/equinor/fusion-framework/commit/73af73e5582ca27b132210af8ba308b80e036d51)]:
|
|
903
|
-
- @equinor/fusion-framework-module-http@6.2.0
|
|
904
|
-
- @equinor/fusion-framework-module-services@4.1.5
|
|
905
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.1
|
|
906
|
-
- @equinor/fusion-framework-module-context@5.0.12
|
|
907
|
-
|
|
908
|
-
## 7.2.7
|
|
909
|
-
|
|
910
|
-
### Patch Changes
|
|
911
|
-
|
|
912
|
-
- Updated dependencies [[`c776845`](https://github.com/equinor/fusion-framework/commit/c776845e753acf4a0bceda1c59d31e5939c44c31), [`2644b3d`](https://github.com/equinor/fusion-framework/commit/2644b3d63939aede736a3b1950db32dbd487877d), [`15152e4`](https://github.com/equinor/fusion-framework/commit/15152e413c054a5f57af93211a470c98c7696caa)]:
|
|
913
|
-
- @equinor/fusion-framework-module-http@6.1.0
|
|
914
|
-
- @equinor/fusion-framework-module@4.3.5
|
|
915
|
-
- @equinor/fusion-framework-module-service-discovery@8.0.0
|
|
916
|
-
- @equinor/fusion-framework-module-services@4.1.4
|
|
917
|
-
- @equinor/fusion-framework-module-context@5.0.12
|
|
918
|
-
- @equinor/fusion-framework-module-event@4.2.4
|
|
919
|
-
- @equinor/fusion-framework-module-msal@3.1.5
|
|
920
|
-
|
|
921
|
-
## 7.2.6
|
|
922
|
-
|
|
923
|
-
### Patch Changes
|
|
924
|
-
|
|
925
|
-
- Updated dependencies []:
|
|
926
|
-
- @equinor/fusion-framework-module-context@5.0.11
|
|
927
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.13
|
|
928
|
-
- @equinor/fusion-framework-module-services@4.1.3
|
|
929
|
-
|
|
930
|
-
## 7.2.5
|
|
931
|
-
|
|
932
|
-
### Patch Changes
|
|
933
|
-
|
|
934
|
-
- Updated dependencies [[`75d676d`](https://github.com/equinor/fusion-framework/commit/75d676d2c7919f30e036b5ae97c4d814c569aa87), [`00d5e9c`](https://github.com/equinor/fusion-framework/commit/00d5e9c632876742c3d2a74efea2f126a0a169d9)]:
|
|
935
|
-
- @equinor/fusion-framework-module@4.3.4
|
|
936
|
-
- @equinor/fusion-framework-module-context@5.0.10
|
|
937
|
-
- @equinor/fusion-framework-module-event@4.2.3
|
|
938
|
-
- @equinor/fusion-framework-module-http@6.0.3
|
|
939
|
-
- @equinor/fusion-framework-module-msal@3.1.4
|
|
940
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.12
|
|
941
|
-
- @equinor/fusion-framework-module-services@4.1.3
|
|
942
|
-
|
|
943
|
-
## 7.2.4
|
|
944
|
-
|
|
945
|
-
### Patch Changes
|
|
946
|
-
|
|
947
|
-
- Updated dependencies [[`decb9e9`](https://github.com/equinor/fusion-framework/commit/decb9e9e3d1bb1b0577b729a1e7ae812afdd83cb), [`a1524e9`](https://github.com/equinor/fusion-framework/commit/a1524e9c4d83778da3db42dbcf99908b776a0592)]:
|
|
948
|
-
- @equinor/fusion-framework-module-http@6.0.2
|
|
949
|
-
- @equinor/fusion-framework-module@4.3.3
|
|
950
|
-
- @equinor/fusion-framework-module-context@5.0.9
|
|
951
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.11
|
|
952
|
-
- @equinor/fusion-framework-module-services@4.1.2
|
|
953
|
-
- @equinor/fusion-framework-module-event@4.2.2
|
|
954
|
-
- @equinor/fusion-framework-module-msal@3.1.3
|
|
955
|
-
|
|
956
|
-
## 7.2.3
|
|
957
|
-
|
|
958
|
-
### Patch Changes
|
|
959
|
-
|
|
960
|
-
- Updated dependencies [[`736ef31`](https://github.com/equinor/fusion-framework/commit/736ef310ee101738f9022d581a2b3189b30a2646)]:
|
|
961
|
-
- @equinor/fusion-framework-module-event@4.2.1
|
|
962
|
-
- @equinor/fusion-framework-module-context@5.0.8
|
|
963
|
-
|
|
964
|
-
## 7.2.2
|
|
965
|
-
|
|
966
|
-
### Patch Changes
|
|
967
|
-
|
|
968
|
-
- [#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
|
|
969
|
-
|
|
970
|
-
- [#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.
|
|
971
|
-
|
|
972
|
-
Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
|
|
973
|
-
1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
|
|
974
|
-
2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
|
|
975
|
-
3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
|
|
976
|
-
|
|
977
|
-
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.
|
|
978
|
-
|
|
979
|
-
Before:
|
|
980
|
-
|
|
981
|
-
```json
|
|
982
|
-
{
|
|
983
|
-
"compilerOptions": {
|
|
984
|
-
"module": "ES2022",
|
|
985
|
-
"target": "ES6",
|
|
986
|
-
"incremental": true,
|
|
987
|
-
"removeComments": true,
|
|
988
|
-
"preserveConstEnums": true,
|
|
989
|
-
"sourceMap": true,
|
|
990
|
-
"moduleResolution": "node"
|
|
991
|
-
}
|
|
992
|
-
}
|
|
993
|
-
```
|
|
994
|
-
|
|
995
|
-
After:
|
|
996
|
-
|
|
997
|
-
```json
|
|
998
|
-
{
|
|
999
|
-
"compilerOptions": {
|
|
1000
|
-
"module": "ES2022",
|
|
1001
|
-
"target": "ES6",
|
|
1002
|
-
"incremental": true,
|
|
1003
|
-
"preserveConstEnums": true,
|
|
1004
|
-
"sourceMap": true,
|
|
1005
|
-
"moduleResolution": "node"
|
|
1006
|
-
}
|
|
1007
|
-
}
|
|
1008
|
-
```
|
|
1009
|
-
|
|
1010
|
-
This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
|
|
1011
|
-
|
|
1012
|
-
- Updated dependencies [[`2f74edc`](https://github.com/equinor/fusion-framework/commit/2f74edcd4a3ea2b87d69f0fd63492145c3c01663), [`788d0b9`](https://github.com/equinor/fusion-framework/commit/788d0b93edc25e5b682d88c58614560c204c1af9), [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1), [`788d0b9`](https://github.com/equinor/fusion-framework/commit/788d0b93edc25e5b682d88c58614560c204c1af9), [`788d0b9`](https://github.com/equinor/fusion-framework/commit/788d0b93edc25e5b682d88c58614560c204c1af9), [`b628e90`](https://github.com/equinor/fusion-framework/commit/b628e90500b62e0185c09eb665ce31025bc9b541), [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee)]:
|
|
1013
|
-
- @equinor/fusion-framework-module@4.3.2
|
|
1014
|
-
- @equinor/fusion-framework-module-http@6.0.1
|
|
1015
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.10
|
|
1016
|
-
- @equinor/fusion-framework-module-services@4.1.1
|
|
1017
|
-
- @equinor/fusion-framework-module-context@5.0.8
|
|
1018
|
-
- @equinor/fusion-framework-module-event@4.2.0
|
|
1019
|
-
- @equinor/fusion-framework-module-msal@3.1.2
|
|
1020
|
-
|
|
1021
|
-
## 7.2.1
|
|
1022
|
-
|
|
1023
|
-
### Patch Changes
|
|
1024
|
-
|
|
1025
|
-
- Updated dependencies []:
|
|
1026
|
-
- @equinor/fusion-framework-module-context@5.0.7
|
|
1027
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.9
|
|
1028
|
-
- @equinor/fusion-framework-module-services@4.1.0
|
|
1029
|
-
|
|
1030
|
-
## 7.2.0
|
|
1031
|
-
|
|
1032
|
-
### Minor Changes
|
|
1033
|
-
|
|
1034
|
-
- [#2181](https://github.com/equinor/fusion-framework/pull/2181) [`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8) Thanks [@odinr](https://github.com/odinr)! - If you were previously using the `blob` or `blob# Change Log methods from the `IHttpClient`and expecting a`Blob`result, you must now use the new`BlobResult` type, which includes the filename (if available) and the blob data.
|
|
1035
|
-
|
|
1036
|
-
**Migration Guide:**
|
|
1037
|
-
|
|
1038
|
-
```typescript
|
|
1039
|
-
// Before
|
|
1040
|
-
const blob = await httpClient.blob("/path/to/blob");
|
|
1041
|
-
console.log(blob); // Blob instance
|
|
1042
|
-
|
|
1043
|
-
// After
|
|
1044
|
-
const blobResult = await httpClient.blob<Blob>("/path/to/blob");
|
|
1045
|
-
console.log(blobResult.filename); // 'example.pdf'
|
|
1046
|
-
console.log(blobResult.blob); // Blob instance
|
|
1047
|
-
```
|
|
1048
|
-
|
|
1049
|
-
### Patch Changes
|
|
1050
|
-
|
|
1051
|
-
- Updated dependencies [[`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8), [`1e60919`](https://github.com/equinor/fusion-framework/commit/1e60919e83fb65528c88f604d7bd43299ec412e1), [`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8)]:
|
|
1052
|
-
- @equinor/fusion-framework-module-services@4.1.0
|
|
1053
|
-
- @equinor/fusion-framework-module-http@6.0.0
|
|
1054
|
-
- @equinor/fusion-framework-module-context@5.0.6
|
|
1055
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.8
|
|
1056
|
-
|
|
1057
|
-
## 7.1.8
|
|
1058
|
-
|
|
1059
|
-
### Patch Changes
|
|
1060
|
-
|
|
1061
|
-
- Updated dependencies [[`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`9a91bb7`](https://github.com/equinor/fusion-framework/commit/9a91bb737d3452e697c047c0f5c7caa2adfd535d), [`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2), [`fb424be`](https://github.com/equinor/fusion-framework/commit/fb424be24ad9349d01daef91a01c464d7b1413d2)]:
|
|
1062
|
-
- @equinor/fusion-framework-module@4.3.1
|
|
1063
|
-
- @equinor/fusion-framework-module-event@4.1.2
|
|
1064
|
-
- @equinor/fusion-framework-module-context@5.0.5
|
|
1065
|
-
- @equinor/fusion-framework-module-http@5.2.3
|
|
1066
|
-
- @equinor/fusion-framework-module-msal@3.1.1
|
|
1067
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.7
|
|
1068
|
-
- @equinor/fusion-framework-module-services@4.0.2
|
|
1069
|
-
|
|
1070
|
-
## 7.1.7
|
|
1071
|
-
|
|
1072
|
-
### Patch Changes
|
|
1073
|
-
|
|
1074
|
-
- Updated dependencies []:
|
|
1075
|
-
- @equinor/fusion-framework-module-context@5.0.4
|
|
1076
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.6
|
|
1077
|
-
- @equinor/fusion-framework-module-services@4.0.1
|
|
1078
|
-
|
|
1079
|
-
## 7.1.6
|
|
1080
|
-
|
|
1081
|
-
### Patch Changes
|
|
1082
|
-
|
|
1083
|
-
- Updated dependencies []:
|
|
1084
|
-
- @equinor/fusion-framework-module-context@5.0.3
|
|
1085
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.5
|
|
1086
|
-
- @equinor/fusion-framework-module-services@4.0.1
|
|
1087
|
-
|
|
1088
|
-
## 7.1.5
|
|
1089
|
-
|
|
1090
|
-
### Patch Changes
|
|
1091
|
-
|
|
1092
|
-
- Updated dependencies []:
|
|
1093
|
-
- @equinor/fusion-framework-module-context@5.0.2
|
|
1094
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.4
|
|
1095
|
-
- @equinor/fusion-framework-module-services@4.0.1
|
|
1096
|
-
|
|
1097
|
-
## 7.1.4
|
|
1098
|
-
|
|
1099
|
-
### Patch Changes
|
|
1100
|
-
|
|
1101
|
-
- Updated dependencies [[`fab2d22`](https://github.com/equinor/fusion-framework/commit/fab2d22f56772c02b1c1e5688cea1dd376edfcb3)]:
|
|
1102
|
-
- @equinor/fusion-framework-module-http@5.2.2
|
|
1103
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.3
|
|
1104
|
-
- @equinor/fusion-framework-module-services@4.0.1
|
|
1105
|
-
|
|
1106
|
-
## 7.1.3
|
|
1107
|
-
|
|
1108
|
-
### Patch Changes
|
|
1109
|
-
|
|
1110
|
-
- Updated dependencies []:
|
|
1111
|
-
- @equinor/fusion-framework-module-context@5.0.1
|
|
1112
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.2
|
|
1113
|
-
- @equinor/fusion-framework-module-services@4.0.1
|
|
1114
|
-
|
|
1115
|
-
## 7.1.2
|
|
1116
|
-
|
|
1117
|
-
### Patch Changes
|
|
1118
|
-
|
|
1119
|
-
- Updated dependencies [[`4af517f`](https://github.com/equinor/fusion-framework/commit/4af517f107f960aa1dc7459451d99e2e83d350ee), [`4af517f`](https://github.com/equinor/fusion-framework/commit/4af517f107f960aa1dc7459451d99e2e83d350ee)]:
|
|
1120
|
-
- @equinor/fusion-framework-module-http@5.2.1
|
|
1121
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.1
|
|
1122
|
-
- @equinor/fusion-framework-module-services@4.0.1
|
|
1123
|
-
|
|
1124
|
-
## 7.1.1
|
|
1125
|
-
|
|
1126
|
-
### Patch Changes
|
|
1127
|
-
|
|
1128
|
-
- [#1981](https://github.com/equinor/fusion-framework/pull/1981) [`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc) Thanks [@eikeland](https://github.com/eikeland)! - Align package exports with node10+ documentation.
|
|
1129
|
-
|
|
1130
|
-
- Updated dependencies [[`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc)]:
|
|
1131
|
-
- @equinor/fusion-framework-module-services@4.0.1
|
|
1132
|
-
- @equinor/fusion-framework-module-event@4.1.1
|
|
1133
|
-
- @equinor/fusion-framework-module-context@5.0.0
|
|
1134
|
-
|
|
1135
|
-
## 7.1.0
|
|
1136
|
-
|
|
1137
|
-
### Minor Changes
|
|
1138
|
-
|
|
1139
|
-
- [#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
|
|
1140
|
-
|
|
1141
|
-
### Patch Changes
|
|
1142
|
-
|
|
1143
|
-
- Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904), [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
|
|
1144
|
-
- @equinor/fusion-framework-module@4.3.0
|
|
1145
|
-
- @equinor/fusion-framework-module-service-discovery@7.1.0
|
|
1146
|
-
- @equinor/fusion-framework-module-services@4.0.0
|
|
1147
|
-
- @equinor/fusion-framework-module-context@5.0.0
|
|
1148
|
-
- @equinor/fusion-framework-module-event@4.1.0
|
|
1149
|
-
- @equinor/fusion-framework-module-http@5.2.0
|
|
1150
|
-
- @equinor/fusion-framework-module-msal@3.1.0
|
|
1151
|
-
|
|
1152
|
-
## 7.0.33
|
|
1153
|
-
|
|
1154
|
-
### Patch Changes
|
|
1155
|
-
|
|
1156
|
-
- Updated dependencies [[`701c297`](https://github.com/equinor/fusion-framework/commit/701c29709351ff80864d26311efc72a439cd4098), [`701c297`](https://github.com/equinor/fusion-framework/commit/701c29709351ff80864d26311efc72a439cd4098)]:
|
|
1157
|
-
- @equinor/fusion-framework-module-context@4.2.0
|
|
1158
|
-
|
|
1159
|
-
## 7.0.32
|
|
1160
|
-
|
|
1161
|
-
### Patch Changes
|
|
1162
|
-
|
|
1163
|
-
- Updated dependencies [[`7424ad3`](https://github.com/equinor/fusion-framework/commit/7424ad37760904b7897bcafc11d85235246e1381)]:
|
|
1164
|
-
- @equinor/fusion-framework-module-context@4.1.1
|
|
1165
|
-
|
|
1166
|
-
## 7.0.31
|
|
1167
|
-
|
|
1168
|
-
### Patch Changes
|
|
1169
|
-
|
|
1170
|
-
- Updated dependencies [[`6e6ee6b`](https://github.com/equinor/fusion-framework/commit/6e6ee6b7ce280820111e8b98ac8377efb15808ef)]:
|
|
1171
|
-
- @equinor/fusion-framework-module-context@4.1.0
|
|
1172
|
-
|
|
1173
|
-
## 7.0.30
|
|
1174
|
-
|
|
1175
|
-
### Patch Changes
|
|
1176
|
-
|
|
1177
|
-
- Updated dependencies [[`152cf73`](https://github.com/equinor/fusion-framework/commit/152cf73d39eb32ccbaddaa6941e315c437c4972d)]:
|
|
1178
|
-
- @equinor/fusion-framework-module@4.2.7
|
|
1179
|
-
- @equinor/fusion-framework-module-context@4.0.21
|
|
1180
|
-
- @equinor/fusion-framework-module-event@4.0.8
|
|
1181
|
-
- @equinor/fusion-framework-module-http@5.1.6
|
|
1182
|
-
- @equinor/fusion-framework-module-msal@3.0.10
|
|
1183
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.20
|
|
1184
|
-
- @equinor/fusion-framework-module-services@3.2.4
|
|
1185
|
-
|
|
1186
|
-
## 7.0.29
|
|
1187
|
-
|
|
1188
|
-
### Patch Changes
|
|
1189
|
-
|
|
1190
|
-
- Updated dependencies []:
|
|
1191
|
-
- @equinor/fusion-framework-module-context@4.0.20
|
|
1192
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.19
|
|
1193
|
-
- @equinor/fusion-framework-module-services@3.2.3
|
|
1194
|
-
|
|
1195
|
-
## 7.0.28
|
|
1196
|
-
|
|
1197
|
-
### Patch Changes
|
|
1198
|
-
|
|
1199
|
-
- Updated dependencies [[`5eab8af`](https://github.com/equinor/fusion-framework/commit/5eab8afe3c3106cc67ad14ce4cbee6c7e4e8dfb1)]:
|
|
1200
|
-
- @equinor/fusion-framework-module-msal@3.0.9
|
|
1201
|
-
- @equinor/fusion-framework-module-http@5.1.5
|
|
1202
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.18
|
|
1203
|
-
- @equinor/fusion-framework-module-services@3.2.3
|
|
1204
|
-
|
|
1205
|
-
## 7.0.27
|
|
1206
|
-
|
|
1207
|
-
### Patch Changes
|
|
1208
|
-
|
|
1209
|
-
- Updated dependencies [[`1e4ba77`](https://github.com/equinor/fusion-framework/commit/1e4ba7707d3ce5cfd9c8d6673f760523aa47a45e)]:
|
|
1210
|
-
- @equinor/fusion-framework-module-http@5.1.4
|
|
1211
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.17
|
|
1212
|
-
- @equinor/fusion-framework-module-services@3.2.3
|
|
1213
|
-
|
|
1214
|
-
## 7.0.26
|
|
1215
|
-
|
|
1216
|
-
### Patch Changes
|
|
1217
|
-
|
|
1218
|
-
- Updated dependencies [[`0af3540`](https://github.com/equinor/fusion-framework/commit/0af3540340bac85a19ca3a8ec4e0ccd42b3090ee)]:
|
|
1219
|
-
- @equinor/fusion-framework-module-http@5.1.3
|
|
1220
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.16
|
|
1221
|
-
- @equinor/fusion-framework-module-services@3.2.3
|
|
1222
|
-
|
|
1223
|
-
## 7.0.25
|
|
1224
|
-
|
|
1225
|
-
### Patch Changes
|
|
1226
|
-
|
|
1227
|
-
- Updated dependencies []:
|
|
1228
|
-
- @equinor/fusion-framework-module-context@4.0.19
|
|
1229
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.15
|
|
1230
|
-
- @equinor/fusion-framework-module-services@3.2.3
|
|
1231
|
-
|
|
1232
|
-
## 7.0.24
|
|
1233
|
-
|
|
1234
|
-
### Patch Changes
|
|
1235
|
-
|
|
1236
|
-
- [#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
|
|
1237
|
-
|
|
1238
|
-
- Updated dependencies [[`4ab2df5`](https://github.com/equinor/fusion-framework/commit/4ab2df5c83439f7fe3fe0846c005427e1793b576), [`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
1239
|
-
- @equinor/fusion-framework-module-context@4.0.18
|
|
1240
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.14
|
|
1241
|
-
- @equinor/fusion-framework-module-services@3.2.3
|
|
1242
|
-
- @equinor/fusion-framework-module@4.2.6
|
|
1243
|
-
- @equinor/fusion-framework-module-http@5.1.2
|
|
1244
|
-
- @equinor/fusion-framework-module-msal@3.0.8
|
|
1245
|
-
- @equinor/fusion-framework-module-event@4.0.7
|
|
1246
|
-
|
|
1247
|
-
## 7.0.23
|
|
1248
|
-
|
|
1249
|
-
### Patch Changes
|
|
1250
|
-
|
|
1251
|
-
- Updated dependencies []:
|
|
1252
|
-
- @equinor/fusion-framework-module-context@4.0.17
|
|
1253
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.13
|
|
1254
|
-
- @equinor/fusion-framework-module-services@3.2.2
|
|
1255
|
-
|
|
1256
|
-
## 7.0.22
|
|
1257
|
-
|
|
1258
|
-
### Patch Changes
|
|
1259
|
-
|
|
1260
|
-
- Updated dependencies [[`ddc31c35`](https://github.com/equinor/fusion-framework/commit/ddc31c3571e36be057095238cf22e78051f423b0)]:
|
|
1261
|
-
- @equinor/fusion-framework-module-services@3.2.2
|
|
1262
|
-
- @equinor/fusion-framework-module-context@4.0.16
|
|
1263
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.12
|
|
1264
|
-
|
|
1265
|
-
## 7.0.21
|
|
1266
|
-
|
|
1267
|
-
### Patch Changes
|
|
1268
|
-
|
|
1269
|
-
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
1270
|
-
|
|
1271
|
-
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
1272
|
-
- @equinor/fusion-framework-module-context@4.0.15
|
|
1273
|
-
- @equinor/fusion-framework-module-event@4.0.6
|
|
1274
|
-
- @equinor/fusion-framework-module-http@5.1.1
|
|
1275
|
-
- @equinor/fusion-framework-module@4.2.5
|
|
1276
|
-
- @equinor/fusion-framework-module-msal@3.0.7
|
|
1277
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.11
|
|
1278
|
-
- @equinor/fusion-framework-module-services@3.2.1
|
|
1279
|
-
|
|
1280
|
-
## 7.0.20
|
|
1281
|
-
|
|
1282
|
-
### Patch Changes
|
|
1283
|
-
|
|
1284
|
-
- Updated dependencies [[`8e9e34a0`](https://github.com/equinor/fusion-framework/commit/8e9e34a06a6905d092ad8ca3f9330a3699da20fa), [`f277c7fc`](https://github.com/equinor/fusion-framework/commit/f277c7fc54ca2ebe75ba1dda94a0d72eb7c8e15b), [`a2d2dee9`](https://github.com/equinor/fusion-framework/commit/a2d2dee987673171ad91daec98cb530649da5849)]:
|
|
1285
|
-
- @equinor/fusion-framework-module-http@5.1.0
|
|
1286
|
-
- @equinor/fusion-framework-module-services@3.2.0
|
|
1287
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.10
|
|
1288
|
-
- @equinor/fusion-framework-module-context@4.0.14
|
|
1289
|
-
|
|
1290
|
-
## 7.0.19
|
|
1291
|
-
|
|
1292
|
-
### Patch Changes
|
|
1293
|
-
|
|
1294
|
-
- Updated dependencies [[`e539e606`](https://github.com/equinor/fusion-framework/commit/e539e606d04bd8b7dc0c0bfed7cd4a7731996936)]:
|
|
1295
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.9
|
|
1296
|
-
- @equinor/fusion-framework-module-services@3.1.5
|
|
1297
|
-
|
|
1298
|
-
## 7.0.18
|
|
1299
|
-
|
|
1300
|
-
### Patch Changes
|
|
1301
|
-
|
|
1302
|
-
- Updated dependencies [[`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
1303
|
-
- @equinor/fusion-framework-module@4.2.4
|
|
1304
|
-
- @equinor/fusion-framework-module-context@4.0.13
|
|
1305
|
-
- @equinor/fusion-framework-module-event@4.0.5
|
|
1306
|
-
- @equinor/fusion-framework-module-http@5.0.6
|
|
1307
|
-
- @equinor/fusion-framework-module-msal@3.0.6
|
|
1308
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.8
|
|
1309
|
-
- @equinor/fusion-framework-module-services@3.1.5
|
|
1310
|
-
|
|
1311
|
-
## 7.0.17
|
|
1312
|
-
|
|
1313
|
-
### Patch Changes
|
|
1314
|
-
|
|
1315
|
-
- Updated dependencies []:
|
|
1316
|
-
- @equinor/fusion-framework-module-context@4.0.12
|
|
1317
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.7
|
|
1318
|
-
- @equinor/fusion-framework-module-services@3.1.4
|
|
1319
|
-
|
|
1320
|
-
## 7.0.16
|
|
1321
|
-
|
|
1322
|
-
### Patch Changes
|
|
1323
|
-
|
|
1324
|
-
- [#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
|
|
1325
|
-
|
|
1326
|
-
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
1327
|
-
|
|
1328
|
-
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
1329
|
-
|
|
1330
|
-
- [#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)
|
|
1331
|
-
|
|
1332
|
-
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272), [`52d98701`](https://github.com/equinor/fusion-framework/commit/52d98701627e93c7284c0b9a5bfd8dab1da43bd3)]:
|
|
1333
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.6
|
|
1334
|
-
- @equinor/fusion-framework-module-services@3.1.4
|
|
1335
|
-
- @equinor/fusion-framework-module-context@4.0.11
|
|
1336
|
-
- @equinor/fusion-framework-module@4.2.3
|
|
1337
|
-
- @equinor/fusion-framework-module-event@4.0.4
|
|
1338
|
-
- @equinor/fusion-framework-module-http@5.0.5
|
|
1339
|
-
- @equinor/fusion-framework-module-msal@3.0.5
|
|
1340
|
-
|
|
1341
|
-
## 7.0.15
|
|
1342
|
-
|
|
1343
|
-
### Patch Changes
|
|
1344
|
-
|
|
1345
|
-
- [#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
|
|
1346
|
-
|
|
1347
|
-
- Updated dependencies [[`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352)]:
|
|
1348
|
-
- @equinor/fusion-framework-module-context@4.0.10
|
|
1349
|
-
- @equinor/fusion-framework-module-event@4.0.2
|
|
1350
|
-
- @equinor/fusion-framework-module-http@5.0.4
|
|
1351
|
-
- @equinor/fusion-framework-module@4.2.1
|
|
1352
|
-
- @equinor/fusion-framework-module-msal@3.0.4
|
|
1353
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.5
|
|
1354
|
-
- @equinor/fusion-framework-module-services@3.1.3
|
|
1355
|
-
|
|
1356
|
-
## 7.0.14
|
|
1357
|
-
|
|
1358
|
-
### Patch Changes
|
|
1359
|
-
|
|
1360
|
-
- [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages**
|
|
1361
|
-
- align all versions of typescript
|
|
1362
|
-
- update types to build
|
|
1363
|
-
- a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future
|
|
1364
|
-
|
|
1365
|
-
- Updated dependencies [[`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`76b30c1e`](https://github.com/equinor/fusion-framework/commit/76b30c1e86db3db18adbe759bb1e39885de1c898), [`83ee5abf`](https://github.com/equinor/fusion-framework/commit/83ee5abf7bcab193c85980e5ae44895cd7f6f08d), [`7500ec2c`](https://github.com/equinor/fusion-framework/commit/7500ec2c9ca9b926a19539fc97c61c67f76fc8d9), [`060818eb`](https://github.com/equinor/fusion-framework/commit/060818eb04ebb9ed6deaed1f0b4530201b1181cf), [`3efbf0bb`](https://github.com/equinor/fusion-framework/commit/3efbf0bb93fc11aa158872cd6ab98a22bcfb59e5), [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
|
|
1366
|
-
- @equinor/fusion-framework-module@4.2.0
|
|
1367
|
-
- @equinor/fusion-framework-module-context@4.0.9
|
|
1368
|
-
- @equinor/fusion-framework-module-http@5.0.3
|
|
1369
|
-
- @equinor/fusion-framework-module-msal@3.0.3
|
|
1370
|
-
- @equinor/fusion-framework-module-service-discovery@7.0.4
|
|
1371
|
-
|
|
1372
|
-
All notable changes to this project will be documented in this file.
|
|
1373
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1374
|
-
|
|
1375
|
-
## [7.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.12...@equinor/fusion-framework@7.0.13) (2023-05-23)
|
|
1376
|
-
|
|
1377
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1378
|
-
|
|
1379
|
-
## 7.0.12 (2023-05-22)
|
|
1380
|
-
|
|
1381
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1382
|
-
|
|
1383
|
-
## [7.0.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.10...@equinor/fusion-framework@7.0.11) (2023-05-12)
|
|
1384
|
-
|
|
1385
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1386
|
-
|
|
1387
|
-
## [7.0.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.9...@equinor/fusion-framework@7.0.10) (2023-05-11)
|
|
1388
|
-
|
|
1389
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1390
|
-
|
|
1391
|
-
## [7.0.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.8...@equinor/fusion-framework@7.0.9) (2023-05-11)
|
|
1392
|
-
|
|
1393
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1394
|
-
|
|
1395
|
-
## 7.0.8 (2023-05-10)
|
|
1396
|
-
|
|
1397
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1398
|
-
|
|
1399
|
-
## [7.0.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.6...@equinor/fusion-framework@7.0.7) (2023-05-08)
|
|
1400
|
-
|
|
1401
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1402
|
-
|
|
1403
|
-
## [7.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.5...@equinor/fusion-framework@7.0.6) (2023-05-05)
|
|
1404
|
-
|
|
1405
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1406
|
-
|
|
1407
|
-
## 7.0.5 (2023-04-24)
|
|
1408
|
-
|
|
1409
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1410
|
-
|
|
1411
|
-
## 7.0.4 (2023-04-18)
|
|
1412
|
-
|
|
1413
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1414
|
-
|
|
1415
|
-
## [7.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.2...@equinor/fusion-framework@7.0.3) (2023-04-17)
|
|
1416
|
-
|
|
1417
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1418
|
-
|
|
1419
|
-
## [7.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.1...@equinor/fusion-framework@7.0.2) (2023-04-17)
|
|
1420
|
-
|
|
1421
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1422
|
-
|
|
1423
|
-
## [7.0.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@7.0.0...@equinor/fusion-framework@7.0.1) (2023-04-17)
|
|
1424
|
-
|
|
1425
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1426
|
-
|
|
1427
|
-
## 7.0.0 (2023-04-16)
|
|
1428
|
-
|
|
1429
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1430
|
-
|
|
1431
|
-
## 6.0.15 (2023-04-14)
|
|
1432
|
-
|
|
1433
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1434
|
-
|
|
1435
|
-
## 6.0.14 (2023-04-14)
|
|
1436
|
-
|
|
1437
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1438
|
-
|
|
1439
|
-
## 6.0.13 (2023-04-14)
|
|
1440
|
-
|
|
1441
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1442
|
-
|
|
1443
|
-
## 6.0.12 (2023-04-13)
|
|
1444
|
-
|
|
1445
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1446
|
-
|
|
1447
|
-
## [6.0.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@6.0.10...@equinor/fusion-framework@6.0.11) (2023-03-28)
|
|
1448
|
-
|
|
1449
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1450
|
-
|
|
1451
|
-
## 6.0.10 (2023-03-27)
|
|
1452
|
-
|
|
1453
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1454
|
-
|
|
1455
|
-
## 6.0.9 (2023-03-22)
|
|
1456
|
-
|
|
1457
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1458
|
-
|
|
1459
|
-
## [6.0.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@6.0.7...@equinor/fusion-framework@6.0.8) (2023-03-20)
|
|
1460
|
-
|
|
1461
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1462
|
-
|
|
1463
|
-
## 6.0.7 (2023-03-20)
|
|
1464
|
-
|
|
1465
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1466
|
-
|
|
1467
|
-
## [6.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@6.0.5...@equinor/fusion-framework@6.0.6) (2023-02-22)
|
|
1468
|
-
|
|
1469
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1470
|
-
|
|
1471
|
-
## [6.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@6.0.4...@equinor/fusion-framework@6.0.5) (2023-02-20)
|
|
1472
|
-
|
|
1473
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1474
|
-
|
|
1475
|
-
## [6.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@6.0.3...@equinor/fusion-framework@6.0.4) (2023-02-13)
|
|
1476
|
-
|
|
1477
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1478
|
-
|
|
1479
|
-
## [6.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@6.0.2...@equinor/fusion-framework@6.0.3) (2023-02-09)
|
|
1480
|
-
|
|
1481
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1482
|
-
|
|
1483
|
-
## 6.0.2 (2023-02-02)
|
|
1484
|
-
|
|
1485
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1486
|
-
|
|
1487
|
-
## 6.0.1 (2023-01-30)
|
|
1488
|
-
|
|
1489
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1490
|
-
|
|
1491
|
-
## [6.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.25...@equinor/fusion-framework@6.0.0) (2023-01-27)
|
|
1492
|
-
|
|
1493
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1494
|
-
|
|
1495
|
-
## [6.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.25...@equinor/fusion-framework@6.0.0-alpha.0) (2023-01-26)
|
|
1496
|
-
|
|
1497
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1498
|
-
|
|
1499
|
-
## [5.0.25](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.24...@equinor/fusion-framework@5.0.25) (2023-01-26)
|
|
1500
|
-
|
|
1501
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1502
|
-
|
|
1503
|
-
## 5.0.24 (2023-01-19)
|
|
1504
|
-
|
|
1505
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1506
|
-
|
|
1507
|
-
## [5.0.23](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.22...@equinor/fusion-framework@5.0.23) (2023-01-17)
|
|
1508
|
-
|
|
1509
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1510
|
-
|
|
1511
|
-
## [5.0.22](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.21...@equinor/fusion-framework@5.0.22) (2023-01-16)
|
|
1512
|
-
|
|
1513
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1514
|
-
|
|
1515
|
-
## 5.0.21 (2023-01-16)
|
|
1516
|
-
|
|
1517
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1518
|
-
|
|
1519
|
-
## 5.0.20 (2023-01-12)
|
|
1520
|
-
|
|
1521
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1522
|
-
|
|
1523
|
-
## 5.0.19 (2022-12-21)
|
|
1524
|
-
|
|
1525
|
-
### Bug Fixes
|
|
1526
|
-
|
|
1527
|
-
- import export of app types ([6adeabe](https://github.com/equinor/fusion-framework/commit/6adeabecd1d261f3fda18a1cf93e5be4e374cbb5))
|
|
1528
|
-
|
|
1529
|
-
## 5.0.18 (2022-12-16)
|
|
1530
|
-
|
|
1531
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1532
|
-
|
|
1533
|
-
## [5.0.17](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.16...@equinor/fusion-framework@5.0.17) (2022-12-14)
|
|
1534
|
-
|
|
1535
|
-
### Bug Fixes
|
|
1536
|
-
|
|
1537
|
-
- **module-app:** make app module optional ([fa5c0ed](https://github.com/equinor/fusion-framework/commit/fa5c0ed0a9afc1f9ade3adb6e52e4425a59a7aa6))
|
|
1538
|
-
|
|
1539
|
-
## [5.0.16](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.15...@equinor/fusion-framework@5.0.16) (2022-12-13)
|
|
1540
|
-
|
|
1541
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1542
|
-
|
|
1543
|
-
## [5.0.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.14...@equinor/fusion-framework@5.0.15) (2022-12-12)
|
|
1544
|
-
|
|
1545
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1546
|
-
|
|
1547
|
-
## 5.0.14 (2022-12-12)
|
|
1548
|
-
|
|
1549
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1550
|
-
|
|
1551
|
-
## [5.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.12...@equinor/fusion-framework@5.0.13) (2022-12-12)
|
|
1552
|
-
|
|
1553
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1554
|
-
|
|
1555
|
-
## [5.0.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.11...@equinor/fusion-framework@5.0.12) (2022-12-12)
|
|
1556
|
-
|
|
1557
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1558
|
-
|
|
1559
|
-
## [5.0.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.10...@equinor/fusion-framework@5.0.11) (2022-12-08)
|
|
1560
|
-
|
|
1561
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1562
|
-
|
|
1563
|
-
## [5.0.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.9...@equinor/fusion-framework@5.0.10) (2022-12-08)
|
|
1564
|
-
|
|
1565
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1566
|
-
|
|
1567
|
-
## [5.0.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.8...@equinor/fusion-framework@5.0.9) (2022-12-08)
|
|
1568
|
-
|
|
1569
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1570
|
-
|
|
1571
|
-
## [5.0.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.7...@equinor/fusion-framework@5.0.8) (2022-12-08)
|
|
1572
|
-
|
|
1573
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1574
|
-
|
|
1575
|
-
## [5.0.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.6...@equinor/fusion-framework@5.0.7) (2022-12-08)
|
|
1576
|
-
|
|
1577
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1578
|
-
|
|
1579
|
-
## [5.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.3...@equinor/fusion-framework@5.0.6) (2022-12-06)
|
|
1580
|
-
|
|
1581
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1582
|
-
|
|
1583
|
-
## [5.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.4...@equinor/fusion-framework@5.0.5) (2022-12-06)
|
|
1584
|
-
|
|
1585
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1586
|
-
|
|
1587
|
-
## [5.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.3...@equinor/fusion-framework@5.0.4) (2022-12-05)
|
|
1588
|
-
|
|
1589
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1590
|
-
|
|
1591
|
-
## [5.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.1...@equinor/fusion-framework@5.0.3) (2022-12-05)
|
|
1592
|
-
|
|
1593
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1594
|
-
|
|
1595
|
-
## [5.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.1...@equinor/fusion-framework@5.0.2) (2022-12-05)
|
|
1596
|
-
|
|
1597
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1598
|
-
|
|
1599
|
-
## [5.0.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@5.0.0...@equinor/fusion-framework@5.0.1) (2022-12-02)
|
|
1600
|
-
|
|
1601
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1602
|
-
|
|
1603
|
-
## [5.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.17...@equinor/fusion-framework@5.0.0) (2022-12-02)
|
|
1604
|
-
|
|
1605
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1606
|
-
|
|
1607
|
-
## [5.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.17...@equinor/fusion-framework@5.0.0-alpha.0) (2022-12-02)
|
|
1608
|
-
|
|
1609
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1610
|
-
|
|
1611
|
-
## [4.4.17](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.16...@equinor/fusion-framework@4.4.17) (2022-12-01)
|
|
1612
|
-
|
|
1613
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1614
|
-
|
|
1615
|
-
## [4.4.16](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.15...@equinor/fusion-framework@4.4.16) (2022-12-01)
|
|
1616
|
-
|
|
1617
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1618
|
-
|
|
1619
|
-
## [4.4.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.14...@equinor/fusion-framework@4.4.15) (2022-12-01)
|
|
1620
|
-
|
|
1621
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1622
|
-
|
|
1623
|
-
## [4.4.14](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.13...@equinor/fusion-framework@4.4.14) (2022-12-01)
|
|
1624
|
-
|
|
1625
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1626
|
-
|
|
1627
|
-
## [4.4.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.12...@equinor/fusion-framework@4.4.13) (2022-12-01)
|
|
1628
|
-
|
|
1629
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1630
|
-
|
|
1631
|
-
## [4.4.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.11...@equinor/fusion-framework@4.4.12) (2022-12-01)
|
|
1632
|
-
|
|
1633
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1634
|
-
|
|
1635
|
-
## [4.4.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.10...@equinor/fusion-framework@4.4.11) (2022-12-01)
|
|
1636
|
-
|
|
1637
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1638
|
-
|
|
1639
|
-
## [4.4.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.9...@equinor/fusion-framework@4.4.10) (2022-12-01)
|
|
1640
|
-
|
|
1641
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1642
|
-
|
|
1643
|
-
## [4.4.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.8...@equinor/fusion-framework@4.4.9) (2022-12-01)
|
|
1644
|
-
|
|
1645
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1646
|
-
|
|
1647
|
-
## [4.4.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.7...@equinor/fusion-framework@4.4.8) (2022-12-01)
|
|
1648
|
-
|
|
1649
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1650
|
-
|
|
1651
|
-
## [4.4.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.6...@equinor/fusion-framework@4.4.7) (2022-12-01)
|
|
1652
|
-
|
|
1653
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1654
|
-
|
|
1655
|
-
## [4.4.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.5...@equinor/fusion-framework@4.4.6) (2022-12-01)
|
|
1656
|
-
|
|
1657
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1658
|
-
|
|
1659
|
-
## 4.4.5 (2022-12-01)
|
|
1660
|
-
|
|
1661
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1662
|
-
|
|
1663
|
-
## [4.4.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.3...@equinor/fusion-framework@4.4.4) (2022-11-20)
|
|
1664
|
-
|
|
1665
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1666
|
-
|
|
1667
|
-
## 4.4.3 (2022-11-18)
|
|
1668
|
-
|
|
1669
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1670
|
-
|
|
1671
|
-
## [4.4.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.1...@equinor/fusion-framework@4.4.2) (2022-11-18)
|
|
1672
|
-
|
|
1673
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1674
|
-
|
|
1675
|
-
## [4.4.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.4.0...@equinor/fusion-framework@4.4.1) (2022-11-17)
|
|
1676
|
-
|
|
1677
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1678
|
-
|
|
1679
|
-
## 4.4.0 (2022-11-17)
|
|
1680
|
-
|
|
1681
|
-
### Features
|
|
1682
|
-
|
|
1683
|
-
- update typing of useModule hook ([958dd04](https://github.com/equinor/fusion-framework/commit/958dd0401667e9ebb1a51bced128ae43369cd6c4))
|
|
1684
|
-
|
|
1685
|
-
## [4.3.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.3.7...@equinor/fusion-framework@4.3.8) (2022-11-16)
|
|
1686
|
-
|
|
1687
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1688
|
-
|
|
1689
|
-
## [4.3.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.3.6...@equinor/fusion-framework@4.3.7) (2022-11-14)
|
|
1690
|
-
|
|
1691
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1692
|
-
|
|
1693
|
-
## 4.3.6 (2022-11-14)
|
|
1694
|
-
|
|
1695
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1696
|
-
|
|
1697
|
-
## [4.3.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.3.4...@equinor/fusion-framework@4.3.5) (2022-11-14)
|
|
1698
|
-
|
|
1699
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1700
|
-
|
|
1701
|
-
## [4.3.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.3.3...@equinor/fusion-framework@4.3.4) (2022-11-11)
|
|
1702
|
-
|
|
1703
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1704
|
-
|
|
1705
|
-
## [4.3.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.3.2...@equinor/fusion-framework@4.3.3) (2022-11-11)
|
|
1706
|
-
|
|
1707
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1708
|
-
|
|
1709
|
-
## 4.3.2 (2022-11-11)
|
|
1710
|
-
|
|
1711
|
-
### Bug Fixes
|
|
1712
|
-
|
|
1713
|
-
- **module-auth:** make http module await auth ([18a0ed9](https://github.com/equinor/fusion-framework/commit/18a0ed947e128bf1cdc86aa45d31e73c1f8c4bbb))
|
|
1714
|
-
|
|
1715
|
-
## 4.3.1 (2022-11-03)
|
|
1716
|
-
|
|
1717
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1718
|
-
|
|
1719
|
-
## [4.3.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.2.2...@equinor/fusion-framework@4.3.0) (2022-11-03)
|
|
1720
|
-
|
|
1721
|
-
### Features
|
|
1722
|
-
|
|
1723
|
-
- **cli:** initial commit ([#380](https://github.com/equinor/fusion-framework/issues/380)) ([775b74f](https://github.com/equinor/fusion-framework/commit/775b74f5cc8507cf5449a9f91e018d80a4ab50a1))
|
|
1724
|
-
|
|
1725
|
-
## [4.2.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.2.1...@equinor/fusion-framework@4.2.2) (2022-11-02)
|
|
1726
|
-
|
|
1727
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1728
|
-
|
|
1729
|
-
## [4.2.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.2.0...@equinor/fusion-framework@4.2.1) (2022-11-02)
|
|
1730
|
-
|
|
1731
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1732
|
-
|
|
1733
|
-
## 4.2.0 (2022-11-02)
|
|
1734
|
-
|
|
1735
|
-
### Features
|
|
1736
|
-
|
|
1737
|
-
- **framework:** enable context for framework ([647a1c5](https://github.com/equinor/fusion-framework/commit/647a1c5b52ed4c721e1379e7c2395ca7ff752a40))
|
|
1738
|
-
|
|
1739
|
-
## [4.1.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.1.0...@equinor/fusion-framework@4.1.1) (2022-11-02)
|
|
1740
|
-
|
|
1741
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1742
|
-
|
|
1743
|
-
## [4.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.17...@equinor/fusion-framework@4.1.0) (2022-11-01)
|
|
1744
|
-
|
|
1745
|
-
### Features
|
|
1746
|
-
|
|
1747
|
-
- **framework:** implement module-app ([dc917f0](https://github.com/equinor/fusion-framework/commit/dc917f019da852fbd93eaf6ed7bc4a3a7e6f0d68))
|
|
1748
|
-
|
|
1749
|
-
## 4.0.17 (2022-11-01)
|
|
1750
|
-
|
|
1751
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1752
|
-
|
|
1753
|
-
## 4.0.16 (2022-10-27)
|
|
1754
|
-
|
|
1755
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1756
|
-
|
|
1757
|
-
## [4.0.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.14...@equinor/fusion-framework@4.0.15) (2022-10-21)
|
|
1758
|
-
|
|
1759
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1760
|
-
|
|
1761
|
-
## 4.0.14 (2022-10-21)
|
|
1762
|
-
|
|
1763
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1764
|
-
|
|
1765
|
-
## [4.0.13](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.12...@equinor/fusion-framework@4.0.13) (2022-10-17)
|
|
1766
|
-
|
|
1767
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1768
|
-
|
|
1769
|
-
## 4.0.12 (2022-10-03)
|
|
1770
|
-
|
|
1771
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1772
|
-
|
|
1773
|
-
## 4.0.11 (2022-10-03)
|
|
1774
|
-
|
|
1775
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1776
|
-
|
|
1777
|
-
## [4.0.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.9...@equinor/fusion-framework@4.0.10) (2022-09-29)
|
|
1778
|
-
|
|
1779
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1780
|
-
|
|
1781
|
-
## [4.0.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.8...@equinor/fusion-framework@4.0.9) (2022-09-27)
|
|
1782
|
-
|
|
1783
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1784
|
-
|
|
1785
|
-
## 4.0.8 (2022-09-26)
|
|
1786
|
-
|
|
1787
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1788
|
-
|
|
1789
|
-
## 4.0.7 (2022-09-20)
|
|
1790
|
-
|
|
1791
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1792
|
-
|
|
1793
|
-
## [4.0.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.5...@equinor/fusion-framework@4.0.6) (2022-09-16)
|
|
1794
|
-
|
|
1795
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1796
|
-
|
|
1797
|
-
## [4.0.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.4...@equinor/fusion-framework@4.0.5) (2022-09-14)
|
|
1798
|
-
|
|
1799
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1800
|
-
|
|
1801
|
-
## [4.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.3...@equinor/fusion-framework@4.0.4) (2022-09-13)
|
|
1802
|
-
|
|
1803
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1804
|
-
|
|
1805
|
-
## [4.0.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.2...@equinor/fusion-framework@4.0.3) (2022-09-13)
|
|
1806
|
-
|
|
1807
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1808
|
-
|
|
1809
|
-
## [4.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.1...@equinor/fusion-framework@4.0.2) (2022-09-13)
|
|
1810
|
-
|
|
1811
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1812
|
-
|
|
1813
|
-
## [4.0.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.1-next.1...@equinor/fusion-framework@4.0.1) (2022-09-12)
|
|
1814
|
-
|
|
1815
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1816
|
-
|
|
1817
|
-
## [4.0.1-next.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.1-next.0...@equinor/fusion-framework@4.0.1-next.1) (2022-09-12)
|
|
1818
|
-
|
|
1819
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1820
|
-
|
|
1821
|
-
## [4.0.1-next.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@4.0.0...@equinor/fusion-framework@4.0.1-next.0) (2022-09-12)
|
|
1822
|
-
|
|
1823
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1824
|
-
|
|
1825
|
-
## 4.0.0 (2022-09-12)
|
|
1826
|
-
|
|
1827
|
-
### ⚠ BREAKING CHANGES
|
|
1828
|
-
|
|
1829
|
-
- **framework:** initialize now takes object
|
|
1830
|
-
|
|
1831
|
-
### Features
|
|
1832
|
-
|
|
1833
|
-
- **framework:** rewrite configurator ([eda8fbf](https://github.com/equinor/fusion-framework/commit/eda8fbf2cb83e839a798063e15dc185801e6c17b))
|
|
1834
|
-
|
|
1835
|
-
### Bug Fixes
|
|
1836
|
-
|
|
1837
|
-
- **framework:** add default modules ([190271b](https://github.com/equinor/fusion-framework/commit/190271b0ed4a4c3c876cbed0de3ec48cd8004fdc))
|
|
1838
|
-
|
|
1839
|
-
## [4.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@3.0.2...@equinor/fusion-framework@4.0.0-alpha.0) (2022-09-12)
|
|
1840
|
-
|
|
1841
|
-
### ⚠ BREAKING CHANGES
|
|
1842
|
-
|
|
1843
|
-
- **framework:** initialize now takes object
|
|
1844
|
-
|
|
1845
|
-
### Features
|
|
1846
|
-
|
|
1847
|
-
- **framework:** rewrite configurator ([eda8fbf](https://github.com/equinor/fusion-framework/commit/eda8fbf2cb83e839a798063e15dc185801e6c17b))
|
|
1848
|
-
|
|
1849
|
-
### Bug Fixes
|
|
1850
|
-
|
|
1851
|
-
- **framework:** add default modules ([190271b](https://github.com/equinor/fusion-framework/commit/190271b0ed4a4c3c876cbed0de3ec48cd8004fdc))
|
|
1852
|
-
|
|
1853
|
-
## 3.0.2 (2022-09-05)
|
|
1854
|
-
|
|
1855
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1856
|
-
|
|
1857
|
-
## 3.0.1 (2022-09-05)
|
|
1858
|
-
|
|
1859
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1860
|
-
|
|
1861
|
-
## [3.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@2.1.1...@equinor/fusion-framework@3.0.0) (2022-08-29)
|
|
1862
|
-
|
|
1863
|
-
### ⚠ BREAKING CHANGES
|
|
1864
|
-
|
|
1865
|
-
- rename fetch
|
|
1866
|
-
|
|
1867
|
-
- fix(module-service-discovery): update http client consumer
|
|
1868
|
-
|
|
1869
|
-
- build: update allowed branches
|
|
1870
|
-
|
|
1871
|
-
- build: add conventional commit
|
|
1872
|
-
|
|
1873
|
-
- build: use conventionalcommits
|
|
1874
|
-
|
|
1875
|
-
- build(module-http): push major
|
|
1876
|
-
|
|
1877
|
-
- build: update deps
|
|
1878
|
-
|
|
1879
|
-
### Features
|
|
1880
|
-
|
|
1881
|
-
- rename fetch method ([#226](https://github.com/equinor/fusion-framework/issues/226)) ([f02df7c](https://github.com/equinor/fusion-framework/commit/f02df7cdd2b9098b0da49c5ea56ac3b6a17e9e32))
|
|
1882
|
-
|
|
1883
|
-
## 2.1.1 (2022-08-23)
|
|
1884
|
-
|
|
1885
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1886
|
-
|
|
1887
|
-
# [2.1.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@2.0.2...@equinor/fusion-framework@2.1.0) (2022-08-19)
|
|
1888
|
-
|
|
1889
|
-
### Features
|
|
1890
|
-
|
|
1891
|
-
- **framework:** enable event module ([e4734d2](https://github.com/equinor/fusion-framework/commit/e4734d2ab747b327eb074ca330aeac2188860c69))
|
|
1892
|
-
|
|
1893
|
-
## 2.0.2 (2022-08-19)
|
|
1894
|
-
|
|
1895
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1896
|
-
|
|
1897
|
-
## [2.0.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@2.0.0...@equinor/fusion-framework@2.0.1) (2022-08-15)
|
|
1898
|
-
|
|
1899
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1900
|
-
|
|
1901
|
-
# [2.0.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.12...@equinor/fusion-framework@2.0.0) (2022-08-11)
|
|
1902
|
-
|
|
1903
|
-
- feat!: allow modules to displose ([32b69fb](https://github.com/equinor/fusion-framework/commit/32b69fb7cc61e78e503e67d0e77f21fb44b600b9))
|
|
1904
|
-
|
|
1905
|
-
### BREAKING CHANGES
|
|
1906
|
-
|
|
1907
|
-
- module.initialize now has object as arg
|
|
1908
|
-
|
|
1909
|
-
## 1.2.12 (2022-08-08)
|
|
1910
|
-
|
|
1911
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1912
|
-
|
|
1913
|
-
## [1.2.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.10...@equinor/fusion-framework@1.2.11) (2022-08-04)
|
|
1914
|
-
|
|
1915
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1916
|
-
|
|
1917
|
-
## [1.2.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.9...@equinor/fusion-framework@1.2.10) (2022-08-01)
|
|
1918
|
-
|
|
1919
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1920
|
-
|
|
1921
|
-
## 1.2.9 (2022-08-01)
|
|
1922
|
-
|
|
1923
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1924
|
-
|
|
1925
|
-
## [1.2.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.7...@equinor/fusion-framework@1.2.8) (2022-07-01)
|
|
1926
|
-
|
|
1927
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1928
|
-
|
|
1929
|
-
## [1.2.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.6...@equinor/fusion-framework@1.2.7) (2022-07-01)
|
|
1930
|
-
|
|
1931
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1932
|
-
|
|
1933
|
-
## [1.2.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.5...@equinor/fusion-framework@1.2.6) (2022-06-30)
|
|
1934
|
-
|
|
1935
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1936
|
-
|
|
1937
|
-
## [1.2.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.4...@equinor/fusion-framework@1.2.5) (2022-06-30)
|
|
1938
|
-
|
|
1939
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1940
|
-
|
|
1941
|
-
## [1.2.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.3...@equinor/fusion-framework@1.2.4) (2022-06-28)
|
|
1942
|
-
|
|
1943
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1944
|
-
|
|
1945
|
-
## [1.2.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.2...@equinor/fusion-framework@1.2.3) (2022-06-28)
|
|
1946
|
-
|
|
1947
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1948
|
-
|
|
1949
|
-
## [1.2.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.1...@equinor/fusion-framework@1.2.2) (2022-06-28)
|
|
1950
|
-
|
|
1951
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1952
|
-
|
|
1953
|
-
## [1.2.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.2.0...@equinor/fusion-framework@1.2.1) (2022-06-28)
|
|
1954
|
-
|
|
1955
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1956
|
-
|
|
1957
|
-
# 1.2.0 (2022-06-24)
|
|
1958
|
-
|
|
1959
|
-
### Features
|
|
1960
|
-
|
|
1961
|
-
- **framework:** allow addtional modules ([d8d697b](https://github.com/equinor/fusion-framework/commit/d8d697b6fa8ea5c8130b324195d39f354d2fa768))
|
|
1962
|
-
|
|
1963
|
-
## [1.1.17](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.16...@equinor/fusion-framework@1.1.17) (2022-06-14)
|
|
1964
|
-
|
|
1965
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1966
|
-
|
|
1967
|
-
## [1.1.16](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.15...@equinor/fusion-framework@1.1.16) (2022-06-13)
|
|
1968
|
-
|
|
1969
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1970
|
-
|
|
1971
|
-
## [1.1.15](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.14...@equinor/fusion-framework@1.1.15) (2022-06-13)
|
|
1972
|
-
|
|
1973
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1974
|
-
|
|
1975
|
-
## 1.1.14 (2022-06-13)
|
|
1976
|
-
|
|
1977
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1978
|
-
|
|
1979
|
-
## 1.1.13 (2022-06-10)
|
|
1980
|
-
|
|
1981
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1982
|
-
|
|
1983
|
-
## 1.1.12 (2022-05-31)
|
|
1984
|
-
|
|
1985
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1986
|
-
|
|
1987
|
-
## [1.1.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.10...@equinor/fusion-framework@1.1.11) (2022-03-25)
|
|
1988
|
-
|
|
1989
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1990
|
-
|
|
1991
|
-
## [1.1.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.9...@equinor/fusion-framework@1.1.10) (2022-03-25)
|
|
1992
|
-
|
|
1993
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1994
|
-
|
|
1995
|
-
## [1.1.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.8...@equinor/fusion-framework@1.1.9) (2022-03-14)
|
|
1996
|
-
|
|
1997
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
1998
|
-
|
|
1999
|
-
## [1.1.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.7...@equinor/fusion-framework@1.1.8) (2022-02-23)
|
|
2000
|
-
|
|
2001
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
2002
|
-
|
|
2003
|
-
## [1.1.7](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.6...@equinor/fusion-framework@1.1.7) (2022-02-23)
|
|
2004
|
-
|
|
2005
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
2006
|
-
|
|
2007
|
-
## [1.1.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.5...@equinor/fusion-framework@1.1.6) (2022-02-23)
|
|
2008
|
-
|
|
2009
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
2010
|
-
|
|
2011
|
-
## [1.1.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.4...@equinor/fusion-framework@1.1.5) (2022-02-23)
|
|
2012
|
-
|
|
2013
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
2014
|
-
|
|
2015
|
-
## [1.1.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.3...@equinor/fusion-framework@1.1.4) (2022-02-23)
|
|
2016
|
-
|
|
2017
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
2018
|
-
|
|
2019
|
-
## [1.1.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.2...@equinor/fusion-framework@1.1.3) (2022-02-23)
|
|
2020
|
-
|
|
2021
|
-
### Bug Fixes
|
|
2022
|
-
|
|
2023
|
-
- **module-msal:** auth client id check ([#27](https://github.com/equinor/fusion-framework/issues/27)) ([907460e](https://github.com/equinor/fusion-framework/commit/907460e3e63e777f6766dcc044cad7078d7ab747))
|
|
2024
|
-
|
|
2025
|
-
## [1.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework@1.1.1...@equinor/fusion-framework@1.1.2) (2022-02-15)
|
|
2026
|
-
|
|
2027
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
2028
|
-
|
|
2029
|
-
## 1.1.1 (2022-02-09)
|
|
2030
|
-
|
|
2031
|
-
**Note:** Version bump only for package @equinor/fusion-framework
|
|
2032
|
-
|
|
2033
|
-
# 1.1.0 (2022-02-07)
|
|
2034
|
-
|
|
2035
|
-
### Bug Fixes
|
|
2036
|
-
|
|
2037
|
-
- add missing files ([750c2fd](https://github.com/equinor/fusion-framework/commit/750c2fdb0a5e0a2df2e12d900c41e305adcfc01e))
|
|
2038
|
-
- expose auth creation ([d7f2ede](https://github.com/equinor/fusion-framework/commit/d7f2ede16573baf846ba73ca48ba273695eaa482))
|
|
2039
|
-
- **framework:** add method for access token ([a3de5e2](https://github.com/equinor/fusion-framework/commit/a3de5e2ffb990ada0cd3ff3e47bd83b44cc044f2))
|
|
2040
|
-
- removed exposed msal creator ([69821b9](https://github.com/equinor/fusion-framework/commit/69821b9279d7b285320b880494fcd3122c3c8041))
|
|
2041
|
-
|
|
2042
|
-
### Features
|
|
2043
|
-
|
|
2044
|
-
- add framework client ([56823b6](https://github.com/equinor/fusion-framework/commit/56823b6d1a17b139eda00ea1fc955dc412ec2603))
|
|
2045
|
-
- add react renderer ([1427429](https://github.com/equinor/fusion-framework/commit/14274294f59863390959db56afe32ce00d6772dc))
|
|
2046
|
-
- add service discovery to portal ([df661fd](https://github.com/equinor/fusion-framework/commit/df661fd9a7ded833b87f3e7b71343e840b581130))
|
|
2047
|
-
- **framework:** add http client configurator ([65fbfce](https://github.com/equinor/fusion-framework/commit/65fbfce6427cf05f8ecdb6fb54236822e54adea4))
|
|
2048
|
-
- **framework:** add response handler ([c5e4839](https://github.com/equinor/fusion-framework/commit/c5e48391e03a50bee6aade242d9c602cd35fb1c1))
|
|
2049
|
-
- **react:** add http client hooks ([7d01f63](https://github.com/equinor/fusion-framework/commit/7d01f63bf98ad6ab25043e92836d3e2c820dc43e))
|
|
2050
|
-
- rewrite framework to use modules ([3eaf699](https://github.com/equinor/fusion-framework/commit/3eaf6995f1d82f3542d3c32e3bfac516c1682560))
|