@equinor/fusion-framework-react-app 5.1.0 → 5.2.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 +34 -0
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +10 -10
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`b8d52ad`](https://github.com/equinor/fusion-framework/commit/b8d52adb2ca1f9857c672a3deb774409ff2bdb37)]:
|
|
8
|
+
- @equinor/fusion-framework-app@9.1.1
|
|
9
|
+
|
|
10
|
+
## 5.2.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [#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.
|
|
15
|
+
|
|
16
|
+
**Migration Guide:**
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
// Before
|
|
20
|
+
const blob = await httpClient.blob('/path/to/blob');
|
|
21
|
+
console.log(blob); // Blob instance
|
|
22
|
+
|
|
23
|
+
// After
|
|
24
|
+
const blobResult = await httpClient.blob<Blob>('/path/to/blob');
|
|
25
|
+
console.log(blobResult.filename); // 'example.pdf'
|
|
26
|
+
console.log(blobResult.blob); // Blob instance
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [[`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8)]:
|
|
32
|
+
- @equinor/fusion-framework-app@9.1.0
|
|
33
|
+
- @equinor/fusion-framework-react@7.1.0
|
|
34
|
+
- @equinor/fusion-framework-module-app@5.3.6
|
|
35
|
+
- @equinor/fusion-framework-react-module-http@6.0.0
|
|
36
|
+
|
|
3
37
|
## 5.1.0
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|
package/dist/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '5.1
|
|
1
|
+
export const version = '5.2.1';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|