@equinor/fusion-framework-react 7.0.8 → 7.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/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # Change Log
2
2
 
3
+ ## 7.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`97e41a5`](https://github.com/equinor/fusion-framework/commit/97e41a55d05644b6684c6cb165b65b115bd416eb)]:
8
+ - @equinor/fusion-observable@8.3.2
9
+ - @equinor/fusion-framework-module-feature-flag@1.1.4
10
+ - @equinor/fusion-framework@7.2.1
11
+ - @equinor/fusion-framework-react-module-signalr@3.0.10
12
+
13
+ ## 7.1.0
14
+
15
+ ### Minor Changes
16
+
17
+ - [#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.
18
+
19
+ **Migration Guide:**
20
+
21
+ ```typescript
22
+ // Before
23
+ const blob = await httpClient.blob('/path/to/blob');
24
+ console.log(blob); // Blob instance
25
+
26
+ // After
27
+ const blobResult = await httpClient.blob<Blob>('/path/to/blob');
28
+ console.log(blobResult.filename); // 'example.pdf'
29
+ console.log(blobResult.blob); // Blob instance
30
+ ```
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies [[`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8), [`72f48ec`](https://github.com/equinor/fusion-framework/commit/72f48eccc7262f6c419c60cc32f0dc829601ceab)]:
35
+ - @equinor/fusion-framework@7.2.0
36
+ - @equinor/fusion-observable@8.3.1
37
+ - @equinor/fusion-framework-module-feature-flag@1.1.3
38
+ - @equinor/fusion-framework-react-module-http@6.0.0
39
+ - @equinor/fusion-framework-react-module-signalr@3.0.9
40
+
3
41
  ## 7.0.8
4
42
 
5
43
  ### Patch Changes
@@ -1,2 +1,2 @@
1
- export const version = '7.0.8';
1
+ export const version = '7.1.1';
2
2
  //# sourceMappingURL=version.js.map