@equinor/fusion-framework-app
Advanced tools
Comparing version 9.0.9 to 9.1.0
# Change Log | ||
## 9.1.0 | ||
### Minor Changes | ||
- [#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. | ||
**Migration Guide:** | ||
```typescript | ||
// Before | ||
const blob = await httpClient.blob('/path/to/blob'); | ||
console.log(blob); // Blob instance | ||
// After | ||
const blobResult = await httpClient.blob<Blob>('/path/to/blob'); | ||
console.log(blobResult.filename); // 'example.pdf' | ||
console.log(blobResult.blob); // Blob instance | ||
``` | ||
### Patch Changes | ||
- Updated dependencies [[`1e60919`](https://github.com/equinor/fusion-framework/commit/1e60919e83fb65528c88f604d7bd43299ec412e1), [`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8), [`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8)]: | ||
- @equinor/fusion-framework-module-http@6.0.0 | ||
- @equinor/fusion-framework@7.2.0 | ||
- @equinor/fusion-framework-module-app@5.3.6 | ||
- @equinor/fusion-framework-module-feature-flag@1.1.3 | ||
## 9.0.9 | ||
@@ -4,0 +31,0 @@ |
@@ -1,2 +0,2 @@ | ||
export const version = '9.0.9'; | ||
export const version = '9.1.0'; | ||
//# sourceMappingURL=version.js.map |
@@ -1,1 +0,1 @@ | ||
export declare const version = "9.0.9"; | ||
export declare const version = "9.1.0"; |
{ | ||
"name": "@equinor/fusion-framework-app", | ||
"version": "9.0.9", | ||
"version": "9.1.0", | ||
"description": "", | ||
@@ -34,8 +34,8 @@ "main": "dist/esm/index.js", | ||
"dependencies": { | ||
"@equinor/fusion-framework": "^7.1.8", | ||
"@equinor/fusion-framework-module-http": "^5.2.3", | ||
"@equinor/fusion-framework-module-app": "^5.3.5", | ||
"@equinor/fusion-framework-module": "^4.3.1", | ||
"@equinor/fusion-framework": "^7.2.0", | ||
"@equinor/fusion-framework-module-app": "^5.3.6", | ||
"@equinor/fusion-framework-module-event": "^4.1.2", | ||
"@equinor/fusion-framework-module-msal": "^3.1.1", | ||
"@equinor/fusion-framework-module-event": "^4.1.2" | ||
"@equinor/fusion-framework-module-http": "^6.0.0", | ||
"@equinor/fusion-framework-module": "^4.3.1" | ||
}, | ||
@@ -46,3 +46,3 @@ "devDependencies": { | ||
"peerDependencies": { | ||
"@equinor/fusion-framework-module-feature-flag": "^1.1.2" | ||
"@equinor/fusion-framework-module-feature-flag": "^1.1.3" | ||
}, | ||
@@ -49,0 +49,0 @@ "peerDependenciesMeta": { |
// Generated by genversion. | ||
export const version = '9.0.9'; | ||
export const version = '9.1.0'; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
223047
- Removed@equinor/fusion-framework-module-http@5.2.3(transitive)