Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@equinor/fusion-framework-app

Package Overview
Dependencies
Maintainers
4
Versions
219
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@equinor/fusion-framework-app - npm Package Compare versions

Comparing version 9.0.9 to 9.1.0

27

CHANGELOG.md
# 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 @@

2

dist/esm/version.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc