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

@forge/storage

Package Overview
Dependencies
Maintainers
8
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forge/storage - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3-next.0

6

CHANGELOG.md
# @forge/storage
## 1.0.3-next.0
### Patch Changes
- 9b496aa: Fixed parsing of response for cleanup functions
## 1.0.2

@@ -4,0 +10,0 @@

2

out/__test__/global-storage.test.js

@@ -292,3 +292,3 @@ "use strict";

data: {
appStoredEntities: {
appStoredEntitiesForCleanup: {
edges: [

@@ -295,0 +295,0 @@ { node: { key: 'key1', value: 'testValue' }, cursor: 'cursor1' },

@@ -45,3 +45,6 @@ "use strict";

: queries_1.listQuery(this.doGetAppContextAri(), options);
const { appStoredEntities: { edges } } = await this.query(requestBody);
const response = await this.query(requestBody);
const edges = process.env.IS_CLEANUP_FUNCTION === 'true'
? response.appStoredEntitiesForCleanup.edges
: response.appStoredEntities.edges;
const nextCursor = edges.length > 0 ? edges[edges.length - 1].cursor : undefined;

@@ -48,0 +51,0 @@ const results = edges.map(({ node }) => node);

{
"name": "@forge/storage",
"version": "1.0.2",
"version": "1.0.3-next.0",
"description": "Forge Storage methods",

@@ -5,0 +5,0 @@ "author": "Atlassian",

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