Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.65.2] - 2026-07-23

### Fixed

- **Telemetry can no longer stall workflow mutation requests (#944).** Supabase telemetry requests now have a hard two-second deadline that aborts the underlying fetch, and best-effort delivery makes only one attempt so a failed request cannot leave retry work behind. Partial and full workflow-update handlers detach mutation telemetry explicitly, while a global flush queue serializes events, workflows, and mutations without silently dropping concurrent batches.

## [2.65.1] - 2026-07-16

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "n8n-mcp",
"version": "2.65.1",
"version": "2.65.2",
"description": "Integration between n8n workflow automation and Model Context Protocol (MCP)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/mcp/handlers-n8n-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ export async function handleUpdateWorkflow(

// Track successful mutation
if (workflowBefore) {
trackWorkflowMutationForFullUpdate({
void trackWorkflowMutationForFullUpdate({
sessionId,
toolName: 'n8n_update_full_workflow',
userIntent,
Expand All @@ -1137,7 +1137,7 @@ export async function handleUpdateWorkflow(
} catch (error) {
// Track failed mutation
if (workflowBefore) {
trackWorkflowMutationForFullUpdate({
void trackWorkflowMutationForFullUpdate({
sessionId,
toolName: 'n8n_update_full_workflow',
userIntent,
Expand Down
5 changes: 2 additions & 3 deletions src/mcp/handlers-workflow-diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ export async function handleUpdatePartialWorkflow(

// Track successful mutation
if (workflowBefore && !input.validateOnly) {
trackWorkflowMutation({
void trackWorkflowMutation({
sessionId,
toolName: 'n8n_update_partial_workflow',
userIntent: input.intent || 'Partial workflow update',
Expand Down Expand Up @@ -619,7 +619,7 @@ export async function handleUpdatePartialWorkflow(
} catch (error) {
// Track failed mutation
if (workflowBefore && !input.validateOnly) {
trackWorkflowMutation({
void trackWorkflowMutation({
sessionId,
toolName: 'n8n_update_partial_workflow',
userIntent: input.intent || 'Partial workflow update',
Expand Down Expand Up @@ -774,4 +774,3 @@ async function trackWorkflowMutation(data: any): Promise<void> {
logger.debug('Telemetry tracking failed:', error);
}
}

Loading
Loading