mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(core): Switch from lodash.set to lodash to address CVE-2020-8203 (no-changelog) (#12286)
This commit is contained in:
committed by
GitHub
parent
dc7864a86d
commit
7ce4e8d169
@@ -38,7 +38,7 @@
|
||||
"@sentry/node": "catalog:",
|
||||
"acorn": "8.14.0",
|
||||
"acorn-walk": "8.3.4",
|
||||
"lodash.set": "4.3.2",
|
||||
"lodash": "catalog:",
|
||||
"n8n-core": "workspace:*",
|
||||
"n8n-workflow": "workspace:*",
|
||||
"nanoid": "catalog:",
|
||||
@@ -46,7 +46,7 @@
|
||||
"ws": "^8.18.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/lodash.set": "4.3.9",
|
||||
"@types/lodash": "catalog:",
|
||||
"luxon": "catalog:"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import set from 'lodash.set';
|
||||
import set from 'lodash/set';
|
||||
import { getAdditionalKeys } from 'n8n-core';
|
||||
import { WorkflowDataProxy, Workflow, ObservableObject } from 'n8n-workflow';
|
||||
import type {
|
||||
|
||||
Reference in New Issue
Block a user