Skip to content

Commit 619a11b

Browse files
authored
fix: Bumping up package versions (#25750)
1 parent 503676e commit 619a11b

9 files changed

Lines changed: 518 additions & 276 deletions

File tree

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"@mistralai/mistralai": "^1.10.0",
9595
"@n8n/typeorm>@sentry/node": "catalog:sentry",
9696
"@types/node": "^20.17.50",
97-
"axios": "1.12.0",
97+
"axios": "1.13.5",
9898
"chokidar": "4.0.3",
9999
"esbuild": "^0.25.0",
100100
"expr-eval@2.0.2": "npm:expr-eval-fork@3.0.0",
@@ -126,13 +126,16 @@
126126
"glob@7": "7.2.3",
127127
"jws@3": "3.2.2",
128128
"jws@4": "4.0.1",
129-
"qs@6": "6.14.1",
129+
"qs@6": "6.14.2",
130130
"@smithy/config-resolver": ">=4.4.0",
131131
"@rudderstack/rudder-sdk-node@<=3.0.0": "3.0.0",
132132
"diff": "8.0.3",
133133
"undici@6": "^6.23.0",
134134
"undici@7": "^7.18.2",
135-
"tar": "^7.5.4",
135+
"tar": "^7.5.7",
136+
"fast-xml-parser@5": "5.3.4",
137+
"hono": "4.11.7",
138+
"langsmith": ">=0.4.6",
136139
"lodash-es": "4.17.23"
137140
},
138141
"patchedDependencies": {

packages/@n8n/ai-workflow-builder.ee/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@n8n/workflow-sdk": "workspace:*",
6868
"@n8n_io/ai-assistant-sdk": "catalog:",
6969
"csv-parse": "5.5.0",
70-
"langsmith": "^0.4.2",
70+
"langsmith": "^0.4.6",
7171
"lodash": "catalog:",
7272
"n8n-workflow": "workspace:*",
7373
"picocolors": "catalog:",

packages/@n8n/nodes-langchain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@
233233
"@microsoft/agents-a365-tooling-extensions-langchain": "0.1.0-preview.64",
234234
"@microsoft/agents-activity": "1.1.0-alpha.85",
235235
"@microsoft/agents-hosting": "1.1.0-alpha.85",
236-
"@modelcontextprotocol/sdk": "1.25.2",
236+
"@modelcontextprotocol/sdk": "1.26.0",
237237
"@mozilla/readability": "0.6.0",
238238
"@n8n/ai-utilities": "workspace:*",
239239
"@n8n/client-oauth2": "workspace:*",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"@n8n/decorators": "workspace:*",
110110
"@n8n/di": "workspace:*",
111111
"@n8n/errors": "workspace:*",
112-
"@modelcontextprotocol/sdk": "1.25.2",
112+
"@modelcontextprotocol/sdk": "1.26.0",
113113
"@n8n/n8n-nodes-langchain": "workspace:*",
114114
"@n8n/permissions": "workspace:*",
115115
"@n8n/syslog-client": "workspace:*",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"picocolors": "catalog:",
7575
"pretty-bytes": "5.6.0",
7676
"proxy-from-env": "^1.1.0",
77-
"qs": "6.14.1",
77+
"qs": "6.14.2",
7878
"ssh2": "1.15.0",
7979
"uuid": "catalog:",
8080
"winston": "3.14.2",

packages/nodes-base/nodes/OpenWeatherMap/test/OpenWeatherMap.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ describe('OpenWeatherMap', () => {
99
nock('https://api.openweathermap.org')
1010
.get('/data/2.5/weather')
1111
.query({ units: 'metric', q: 'berlin,de', lang: 'en' })
12-
.reply(200, currentWeatherResponse);
12+
.reply(200, currentWeatherResponse)
13+
.get('/data/2.5/weather')
14+
.query({ units: 'metric', q: 'invalid', lang: 'en' })
15+
.reply(404, { cod: '404', message: 'city not found' });
1316
});
1417

1518
new NodeTestHarness().setupTests();

pnpm-lock.yaml

Lines changed: 438 additions & 263 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ catalog:
2626
'@lezer/lr': 1.4.5
2727
'@azure/identity': 4.13.0
2828
'@langchain/anthropic': 1.1.3
29-
'@langchain/community': 1.0.5
29+
'@langchain/community': 1.1.14
3030
'@langchain/core': 1.1.8
3131
'@langchain/openai': 1.1.3
3232
'@n8n/typeorm': 0.3.20-15
@@ -40,7 +40,7 @@ catalog:
4040
'@types/uuid': ^10.0.0
4141
'@types/xml2js': ^0.4.14
4242
'@vitest/coverage-v8': 3.2.4
43-
axios: 1.12.0
43+
axios: 1.13.5
4444
basic-auth: 2.0.1
4545
callsites: 3.1.0
4646
chokidar: 4.0.3
@@ -142,3 +142,4 @@ minimumReleaseAgeExclude:
142142
- node-forge
143143
- vm2
144144
- tar
145+
- qs

vex.openvex.json

Lines changed: 63 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,67 @@
33
"@context": "https://openvex.dev/ns/v0.2.0",
44
"@id": "https://github.com/n8n-io/n8n/vex",
55
"author": "n8n Security Team <security@n8n.io>",
6-
"timestamp": "2026-01-15T00:00:00Z",
7-
"version": 1,
8-
"statements": []
6+
"timestamp": "2026-02-13T00:00:00Z",
7+
"version": 3,
8+
"statements": [
9+
{
10+
"vulnerability": {
11+
"@id": "https://nvd.nist.gov/vuln/detail/CVE-2025-32460",
12+
"name": "CVE-2025-32460",
13+
"description": "Heap-based buffer over-read in ReadJXLImage in coders/jxl.c in GraphicsMagick before 8e56520"
14+
},
15+
"products": [
16+
{
17+
"@id": "pkg:docker/n8nio/n8n",
18+
"subcomponents": [
19+
{
20+
"@id": "pkg:apk/alpine/graphicsmagick@1.3.45-r0"
21+
}
22+
]
23+
}
24+
],
25+
"status": "not_affected",
26+
"justification": "vulnerable_code_not_in_execute_path",
27+
"impact_statement": "The JXL (JPEG XL) coder requires libjxl delegate to be compiled into GraphicsMagick. Alpine's graphicsmagick package (1.3.45-r0) does not include libjxl support. Verified via `gm convert -list format` which shows no JXL entry. The vulnerable ReadJXLImage code path is unreachable."
28+
},
29+
{
30+
"vulnerability": {
31+
"@id": "https://nvd.nist.gov/vuln/detail/CVE-2025-27795",
32+
"name": "CVE-2025-27795",
33+
"description": "ReadJXLImage in JXL in GraphicsMagick before 1.3.46 lacks image dimension resource limits"
34+
},
35+
"products": [
36+
{
37+
"@id": "pkg:docker/n8nio/n8n",
38+
"subcomponents": [
39+
{
40+
"@id": "pkg:apk/alpine/graphicsmagick@1.3.45-r0"
41+
}
42+
]
43+
}
44+
],
45+
"status": "not_affected",
46+
"justification": "vulnerable_code_not_in_execute_path",
47+
"impact_statement": "The JXL (JPEG XL) coder requires libjxl delegate to be compiled into GraphicsMagick. Alpine's graphicsmagick package (1.3.45-r0) does not include libjxl support. Verified via `gm convert -list format` which shows no JXL entry. The vulnerable ReadJXLImage code path is unreachable."
48+
},
49+
{
50+
"vulnerability": {
51+
"@id": "https://nvd.nist.gov/vuln/detail/CVE-2025-27796",
52+
"name": "CVE-2025-27796",
53+
"description": "ReadWPGImage in WPG in GraphicsMagick before 1.3.46 mishandles palette buffer allocation"
54+
},
55+
"products": [
56+
{
57+
"@id": "pkg:docker/n8nio/n8n",
58+
"subcomponents": [
59+
{
60+
"@id": "pkg:apk/alpine/graphicsmagick@1.3.45-r0"
61+
}
62+
]
63+
}
64+
],
65+
"status": "affected",
66+
"action_statement": "WPG (WordPerfect Graphics) coder is compiled into Alpine's graphicsmagick package. However, WPG is an obsolete format from the 1980s with no legitimate use case in n8n workflows. Exploitation requires a workflow author to deliberately fetch and process a crafted WPG file via the Edit Image node."
67+
}
68+
]
969
}

0 commit comments

Comments
 (0)