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

@f5devcentral/atg-storage

Package Overview
Dependencies
Maintainers
19
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@f5devcentral/atg-storage - npm Package Compare versions

Comparing version 1.3.7 to 1.3.8

4

CHANGELOG.md

@@ -10,2 +10,6 @@ # Changelog

## [1.3.7] - 2023-3-31
## Fixed
- AUTOTOOL-3581: Data group load fails when cli preference list-all-properties is enabled
## [1.3.6] - 2022-12-9

@@ -12,0 +16,0 @@ ## Changed

2

package.json
{
"name": "@f5devcentral/atg-storage",
"version": "1.3.7",
"version": "1.3.8",
"author": "F5 Networks",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

@@ -52,4 +52,4 @@ 'use strict';

}
const compresedString = fromBase64(base64String);
const finalString = zlib.inflateSync(compresedString, ZLIB_OPTIONS).toString();
const compressedString = fromBase64(base64String);
const finalString = zlib.inflateSync(compressedString, ZLIB_OPTIONS).toString();
return finalString;

@@ -170,2 +170,5 @@ }

.replace(/partition (.*)/, '"partition": "$1",')
.replace(/app-service (.*)/, '"app-service": "$1",')
.replace(/description (.*)/, '"description": "$1",')
.replace(/records (.*)/, '"records": "$1",')
.replace('type string', '"type": "string"');

@@ -326,3 +329,4 @@ return JSON.parse(jsonString);

return data;
});
})
.catch(err => Promise.reject(new Error(`Unable to read data group ${this.path}: ${err.message}`)));
}

@@ -329,0 +333,0 @@

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