Comparing version 5.3.5-fix-assignment-c0e65906c17f134741b9490f40e8d1dd98f430a4 to 5.3.5-lucianbuzzo-upgrade-lru-cache-6a091ae1f383e35f4b111e165d782ca6f55a11db
@@ -8,5 +8,5 @@ # Change Log | ||
# v5.3.5 | ||
## (2021-05-03) | ||
## (2022-01-13) | ||
* Fixed compatibility issues with pattern matching variable assignments [Micah Halter] | ||
* Upgrade to latest version of lru-cache module [Lucian Buzzo] | ||
@@ -13,0 +13,0 @@ # v5.3.4 |
@@ -1275,7 +1275,9 @@ /* | ||
if (sourceValue && objectValue && sourceValue.enum && objectValue.enum) { | ||
const enumObject = objectValue.enum | ||
const restObject = omit(objectValue, [ 'enum' ]) | ||
const { | ||
enum: enumObject, ...restObject | ||
} = objectValue | ||
const enumSource = sourceValue.enum | ||
const restSource = omit(sourceValue, [ 'enum' ]) | ||
const { | ||
enum: enumSource, ...restSource | ||
} = sourceValue | ||
@@ -1282,0 +1284,0 @@ const newObject = merge(restSource, restObject) |
{ | ||
"name": "skhema", | ||
"version": "5.3.5-fix-assignment-c0e65906c17f134741b9490f40e8d1dd98f430a4", | ||
"version": "5.3.5-lucianbuzzo-upgrade-lru-cache-6a091ae1f383e35f4b111e165d782ca6f55a11db", | ||
"description": "JSON Schema utility collection", | ||
@@ -55,5 +55,8 @@ "main": "lib/index.js", | ||
"lodash": "^4.17.19", | ||
"lru-cache": "^5.1.1", | ||
"lru-cache": "^6.0.0", | ||
"typed-error": "^3.2.0" | ||
}, | ||
"versionist": { | ||
"publishedAt": "2022-01-13T16:37:31.813Z" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
163098
5255
+ Addedlru-cache@6.0.0(transitive)
+ Addedyallist@4.0.0(transitive)
- Removedlru-cache@5.1.1(transitive)
- Removedyallist@3.1.1(transitive)
Updatedlru-cache@^6.0.0