@f5devcentral/atg-storage
Advanced tools
Comparing version 1.3.7 to 1.3.8
@@ -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 |
{ | ||
"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 @@ |
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
33841
501