diff --git a/package.json b/package.json index 86fe6c43d7c..2a3475b39e6 100644 --- a/package.json +++ b/package.json @@ -201,6 +201,7 @@ "undici@5": "catalog:undici-v6", "undici@6": "catalog:undici-v6", "undici@7": "catalog:undici-v7", + "node-gyp>undici": "catalog:undici-v7", "@babel/traverse": "^7.23.2" }, "patchedDependencies": { diff --git a/packages/@n8n/ai-workflow-builder.ee/evaluations/evaluators/binary-checks/llm-checks/create-llm-check.ts b/packages/@n8n/ai-workflow-builder.ee/evaluations/evaluators/binary-checks/llm-checks/create-llm-check.ts index 661b8797fdf..080e36d5c5b 100644 --- a/packages/@n8n/ai-workflow-builder.ee/evaluations/evaluators/binary-checks/llm-checks/create-llm-check.ts +++ b/packages/@n8n/ai-workflow-builder.ee/evaluations/evaluators/binary-checks/llm-checks/create-llm-check.ts @@ -1,7 +1,7 @@ +import { binaryJudgeResultSchema } from './schemas'; import { runWithOptionalLimiter, withTimeout } from '../../../harness/evaluation-helpers'; import { createEvaluatorChain, invokeEvaluatorChain } from '../../llm-judge/evaluators/base'; import type { BinaryCheck, BinaryCheckContext, SimpleWorkflow } from '../types'; -import { binaryJudgeResultSchema } from './schemas'; const REASONING_FIRST_SUFFIX = ` diff --git a/packages/@n8n/crdt/src/transports/integration.test.ts b/packages/@n8n/crdt/src/transports/integration.test.ts index 083a19fc84f..22dbca57473 100644 --- a/packages/@n8n/crdt/src/transports/integration.test.ts +++ b/packages/@n8n/crdt/src/transports/integration.test.ts @@ -1,10 +1,10 @@ import WebSocketMock from 'vitest-websocket-mock'; import { CRDTEngine, createCRDTProvider } from '../index'; -import { createSyncProvider } from '../sync/base-sync-provider'; -import type { CRDTDoc, CRDTMap } from '../types'; import { MessagePortTransport } from './message-port'; import { WebSocketTransport } from './websocket'; +import { createSyncProvider } from '../sync/base-sync-provider'; +import type { CRDTDoc, CRDTMap } from '../types'; /** * Test: Does onUpdate fire for applied remote updates? diff --git a/packages/@n8n/node-cli/src/commands/dev/index.ts b/packages/@n8n/node-cli/src/commands/dev/index.ts index 2f66d0bb7d4..a5fd1177b07 100644 --- a/packages/@n8n/node-cli/src/commands/dev/index.ts +++ b/packages/@n8n/node-cli/src/commands/dev/index.ts @@ -3,11 +3,6 @@ import os from 'node:os'; import path from 'node:path'; import picocolors from 'picocolors'; -import { createSymlink, ensureFolder } from '../../utils/filesystem'; -import { detectPackageManager } from '../../utils/package-manager'; -import { getCommandHeader, onCancel } from '../../utils/prompts'; -import { validateNodeName } from '../../utils/validation'; -import { copyStaticFiles } from '../build'; import { buildHelpText, type CommandConfig, @@ -16,6 +11,11 @@ import { readPackageName, runCommands, } from './utils'; +import { createSymlink, ensureFolder } from '../../utils/filesystem'; +import { detectPackageManager } from '../../utils/package-manager'; +import { getCommandHeader, onCancel } from '../../utils/prompts'; +import { validateNodeName } from '../../utils/validation'; +import { copyStaticFiles } from '../build'; export default class Dev extends Command { static override description = 'Run n8n with the node and rebuild on changes for live preview'; diff --git a/packages/core/src/execution-engine/__tests__/requests-response.test.ts b/packages/core/src/execution-engine/__tests__/requests-response.test.ts index dfc05ff56fe..cf0a7d72672 100644 --- a/packages/core/src/execution-engine/__tests__/requests-response.test.ts +++ b/packages/core/src/execution-engine/__tests__/requests-response.test.ts @@ -2,9 +2,9 @@ import type { IExecuteData, IRunData, EngineRequest, INodeExecutionData } from ' import { mock } from 'vitest-mock-extended'; import { DirectedGraph } from '../partial-execution-utils'; +import { nodeTypes, types } from './mock-node-types'; import { createNodeData } from '../partial-execution-utils/__tests__/helpers'; import { handleRequest } from '../requests-response'; -import { nodeTypes, types } from './mock-node-types'; describe('handleRequests', () => { test('throws if an action mentions a node that does not exist in the workflow', () => { diff --git a/packages/core/src/execution-engine/__tests__/workflow-execute-process-process-run-execution-data.test.ts b/packages/core/src/execution-engine/__tests__/workflow-execute-process-process-run-execution-data.test.ts index bd03eddeb06..358b8013e84 100644 --- a/packages/core/src/execution-engine/__tests__/workflow-execute-process-process-run-execution-data.test.ts +++ b/packages/core/src/execution-engine/__tests__/workflow-execute-process-process-run-execution-data.test.ts @@ -25,8 +25,6 @@ vi.mock('node:fs', async (importActual) => ({ })); import { DirectedGraph } from '../partial-execution-utils'; -import { createNodeData, toITaskData } from '../partial-execution-utils/__tests__/helpers'; -import { WorkflowExecute } from '../workflow-execute'; import { types, nodeTypes, @@ -34,6 +32,8 @@ import { nodeTypeArguments, modifyNode, } from './mock-node-types'; +import { createNodeData, toITaskData } from '../partial-execution-utils/__tests__/helpers'; +import { WorkflowExecute } from '../workflow-execute'; describe('processRunExecutionData', () => { const runHook = vi.fn().mockResolvedValue(undefined); diff --git a/packages/frontend/@n8n/design-system/src/components/N8nTooltip/Tooltip.vue b/packages/frontend/@n8n/design-system/src/components/N8nTooltip/Tooltip.vue index 988c3a18265..9d37fa14483 100644 --- a/packages/frontend/@n8n/design-system/src/components/N8nTooltip/Tooltip.vue +++ b/packages/frontend/@n8n/design-system/src/components/N8nTooltip/Tooltip.vue @@ -8,10 +8,10 @@ import { } from 'reka-ui'; import { computed, ref, useAttrs, watch } from 'vue'; +import type { N8nTooltipProps } from './Tooltip.types'; import { useInjectTooltipAppendTo } from '../../composables/useTooltipAppendTo'; import { n8nHtml as vN8nHtml } from '../../directives'; import N8nButton from '../N8nButton'; -import type { N8nTooltipProps } from './Tooltip.types'; defineOptions({ name: 'N8nTooltip', diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3e234dd2eb8..dc020fde181 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -776,6 +776,7 @@ overrides: undici@5: ^6.27.0 undici@6: ^6.27.0 undici@7: ^7.28.0 + node-gyp>undici: ^7.28.0 '@babel/traverse': ^7.23.2 patchedDependencies: @@ -36940,7 +36941,7 @@ snapshots: semver: 7.7.3 tar: 7.5.17 tinyglobby: 0.2.15 - undici: 6.27.0 + undici: 7.28.0 which: 6.0.1 node-gyp@8.4.1: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index fa040c1bfbf..0162e6d1da1 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -94,7 +94,7 @@ catalog: '@types/lodash-es': ^4.17.12 '@types/luxon': 3.2.0 '@types/markdown-it': ^13.0.2 - '@types/markdown-it-link-attributes': "^3.0.5" + '@types/markdown-it-link-attributes': '^3.0.5' '@types/mime-types': 3.0.1 '@types/ms': 2.1.0 '@types/node': 24.10.1