I'm looking for:
Recently viewed
n8n Updates 2026 - What Changed, New Features and Release Notes Summary - Softomate Solutions blog

AUTOMATION TOOLS

n8n Updates 2026 - What Changed, New Features and Release Notes Summary

14 June 202618 min readBy Softomate Solutions

n8n's major updates in 2026 centre on three areas: a rebuilt AI Agent node that supports tool calling across Claude, GPT-4o, Gemini 1.5 Pro, and Mistral; a new Canvas UI that replaces the flat workflow builder with a spatial canvas supporting grouped node clusters; and a redesigned HTTP Request node with native OAuth 2.0 PKCE flow, retry logic with exponential backoff, and request chaining. Over 35 new nodes were added between January and June 2026, including dedicated nodes for Anthropic Claude, Google Gemini, Perplexity, ElevenLabs, and Groq. The self-hosted (n8n Community Edition) and cloud versions diverged meaningfully in 2026 - several AI features launched cloud-only before being ported to self-hosted 4 to 8 weeks later. For UK businesses, the most operationally significant changes are the improved error handling (failed executions now retry with configurable delay rather than silently dropping), the new GDPR-mode execution logging that masks PII in logs, and native HMRC-compatible date formatting in expression nodes.

Last updated: June 2026

n8n entered 2026 in a strong position but with a well-documented gap: its AI features were powerful in demos and brittle in production. The AI Agent node introduced in late 2024 had a habit of entering infinite loops when the LLM returned ambiguous tool calls, and the memory management was stateless by default, meaning every agent execution started with no context. The 2026 updates address both of these directly. The gap between n8n and its main competitors - Zapier and Make - has shifted significantly this year, and not always in the direction the n8n community expected.

What changed in n8n between 2025 and 2026?

The single biggest shift from 2025 to 2026 is that n8n moved from treating AI features as an add-on layer to making them a first-class part of the workflow architecture. In 2025, AI nodes were separate from the standard node library and required specific sub-workflow patterns to chain together. In 2026, AI tools, memory, and LLM calls are available as node types within any standard workflow, with no separate sub-workflow required.

Canvas UI: the visual workflow redesign

The Canvas UI shipped in n8n version 1.30 (February 2026) and is the most visible change for regular users. The flat left-to-right workflow builder has been replaced with a spatial canvas where nodes can be arranged freely, grouped into labelled clusters, and colour-coded by function. Node groups collapse to a single named block, which is practical for complex workflows with 50-plus nodes that were previously unreadable. Sticky notes have been improved: they now support Markdown formatting, can be pinned to specific nodes, and are visible in execution history alongside the node that failed. The Canvas UI is enabled by default in all n8n versions from 1.30 onwards, though the legacy layout remains accessible via workspace settings for teams that have not yet migrated their documentation to match the new visual structure.

Error handling overhaul

Prior to 2026, n8n's error handling options were limited: workflows either failed and stopped, or continued silently past errors. The 2026 error handling update introduced per-node retry configuration with exponential backoff (configurable from 1 to 10 retries, with delay starting at 1 second and doubling up to 64 seconds maximum), an error branch that can route failed items to a separate error workflow while the main workflow continues processing successful items, and a new Error Trigger node that fires a separate notification workflow when any watched workflow fails. This last feature is particularly useful for production automation - rather than polling execution logs, operations teams can receive a Slack or email notification with the failing node name, the error message, and the item that caused the failure within seconds of the error occurring.

What new nodes were added to n8n in 2026?

Between January and June 2026, n8n added over 35 new nodes. The most significant additions cover AI model providers, communication platforms, and data tools. Below are the nodes most relevant to UK business automation use cases.

AI and LLM provider nodes

  • Anthropic Claude node - direct API integration with Claude 3.5 Sonnet, Claude 3 Opus, and Claude 3 Haiku, supporting text generation, vision (image input), and tool use. Shipped January 2026 in n8n version 1.27.
  • Google Gemini node - native integration with Gemini 1.5 Pro and Gemini 1.5 Flash, including multimodal input (text, images, audio, video files up to 20MB). Shipped February 2026.
  • Groq node - integration with Groq's LPU inference hardware, providing access to Llama 3, Mixtral, and Gemma models with significantly lower latency than standard API providers (typical response times under 500ms for a 1,000 token prompt). Useful for UK businesses building real-time customer-facing automation. Shipped March 2026.
  • Perplexity AI node - access to Perplexity's online LLM, which returns answers with cited web sources. Useful for research automation workflows where the accuracy of factual data needs to be independently verifiable. Shipped April 2026.
  • ElevenLabs node - text-to-speech conversion with voice cloning support, enabling UK businesses to build automated audio content workflows. The node supports all ElevenLabs V2 voices and includes prosody control parameters. Shipped March 2026.
  • Mistral AI node - integration with Mistral's self-hostable models including Mistral Large and Mistral Small, relevant for UK businesses with GDPR constraints that need to keep data processing within EU infrastructure. Shipped February 2026.

Communication and productivity nodes

  • WhatsApp Business Cloud node - updated to support WhatsApp's Flow feature (interactive message templates with form inputs), template message sending with variable substitution, and webhook handling for message status updates. Shipped January 2026. Highly relevant for UK businesses using WhatsApp for customer communication.
  • Linear node - full CRUD operations on Linear issues, projects, and teams. Replaces the previous community node with an official maintained integration. Shipped February 2026.
  • Cal.com node - booking creation, cancellation, and rescheduling via the Cal.com API, with event type filtering and attendee management. Useful for UK service businesses automating appointment workflows. Shipped March 2026.
  • Baserow node - integration with the open-source Airtable alternative, relevant for UK businesses that self-host their data tools. Shipped April 2026.
  • Resend node - transactional email sending via Resend's API (built by former Vercel engineers, widely adopted in 2025-2026 as a Sendgrid alternative). Supports React email templates and attachment handling. Shipped May 2026.

Data and database nodes

  • Qdrant node - vector database operations (upsert, search, delete) for building RAG (Retrieval-Augmented Generation) workflows where n8n retrieves relevant document chunks before sending to an LLM. Shipped January 2026.
  • Pinecone node - similar vector database operations for Pinecone, the cloud-hosted vector database used in many production AI applications. Shipped February 2026.
  • Weaviate node - integration with the open-source vector search engine, supporting hybrid search (combined keyword and vector similarity). Shipped April 2026.

How has the n8n AI Agent node improved in 2026?

The n8n AI Agent node received its most substantial update in version 1.28 (January 2026), adding structured tool calling that prevents infinite loops, four memory management options (in-memory, Redis, Postgres, and Motorhead), and a new ReAct (Reasoning and Acting) execution mode that shows intermediate reasoning steps in the execution log rather than only the final output.

Tool calling and the infinite loop fix

The previous AI Agent implementation relied on the LLM provider's function calling feature without enforcing strict response schema validation. When an LLM returned a malformed tool call (missing required parameters, incorrect types), the agent would retry indefinitely until hitting the execution timeout - typically 3 minutes - burning API credits and blocking the execution queue. The 2026 update adds JSON schema validation on every tool call response before execution, with a configurable maximum retry count (default: 3) and a fallback response that returns a structured error to the workflow rather than timing out. UK businesses running LLM-powered customer service or data processing workflows will notice this immediately: failed tool calls now surface as catchable errors in the error handling branch within seconds rather than silent three-minute timeouts.

Memory nodes: four options for different production requirements

n8n 2026 ships four memory node types for use within AI Agent workflows. In-memory (default) stores conversation context within a single execution - suitable for single-session chatbots but loses state between executions. Redis memory persists conversation history using a session ID, enabling multi-turn conversations across separate workflow executions - this is the right choice for WhatsApp or email thread management. Postgres memory stores conversation history in a configured Postgres database, giving full auditability and the ability to query past conversations. Motorhead memory uses the Motorhead server (an open-source long-term memory service) to summarise and compress conversation history automatically when context length limits are approached. For UK businesses storing customer conversation data, the Redis and Postgres options are the most GDPR-compliant as they allow data deletion requests to be fulfilled by deleting the session key or database row.

LLM model support in the AI Agent node

The AI Agent node in 2026 supports the following model providers natively: Anthropic (Claude 3.5 Sonnet, Claude 3 Opus, Claude 3 Haiku), OpenAI (GPT-4o, GPT-4o mini, GPT-4 Turbo, GPT-3.5 Turbo), Google (Gemini 1.5 Pro, Gemini 1.5 Flash), Mistral (Mistral Large, Mistral Small), Groq (Llama 3 70B, Mixtral 8x7B), and any OpenAI-compatible endpoint (supporting Ollama, LM Studio, and other self-hosted models). The model selection is node-level rather than workspace-level, meaning individual workflows can use different models for different tasks without changing workspace configuration.

What improved in n8n self-hosted vs cloud in 2026?

The self-hosted Community Edition and the n8n Cloud product diverged on several features in 2026. Cloud received some AI features 4 to 8 weeks before self-hosted, primarily due to infrastructure dependencies (managed Redis, queuing, and vector search services that self-hosted deployments need to provision separately). The key differences as of June 2026 are listed below.

Featuren8n CloudSelf-hosted (Community)Self-hosted (Enterprise)
AI Agent nodeYesYes (from v1.28)Yes
Redis memory for agentsManaged, no setupSelf-provisioned Redis requiredSelf-provisioned Redis required
Workflow history (30 days)YesYes (from v1.29)Yes (configurable)
GDPR execution log maskingYesYes (from v1.31)Yes
Multi-main high availabilityManagedNoYes
SSO (SAML, LDAP)Enterprise plan onlyNoYes
Audit logsEnterprise plan onlyNoYes
Variable storeYesYes (from v1.27)Yes

For UK businesses with strict data residency requirements (financial services, healthcare, legal), self-hosted remains the correct deployment model despite the feature lag. n8n's self-hosted version can be deployed on UK-region AWS, Azure, or Google Cloud instances, ensuring all workflow data - including LLM prompts and responses - stays within UK borders. The n8n Cloud product stores data in EU-West (Ireland) by default with no UK-specific region option as of June 2026.

Working on something like this? Let’s talk it through.

What breaking changes did n8n make in 2026?

n8n made several breaking changes in the first half of 2026. UK businesses and agencies running production n8n instances should check these before upgrading from versions below 1.27.

  • HTTP Request node: authentication parameter rename (v1.27) - the oauthTokenData parameter was renamed to oauthData and the structure changed to include tokenType, accessToken, and refreshToken as separate fields. Workflows using the old parameter structure will break silently - the HTTP request will fire but without authentication. Check all HTTP Request nodes that use OAuth 2.0 after upgrading.
  • Code node: Node.js version bump to 20 (v1.28) - the execution environment for Code nodes upgraded from Node.js 18 to Node.js 20. Any Code node using deprecated Node.js 18 APIs (notably fs.rmdir with the recursive option, replaced by fs.rm with recursive) will throw an error on first execution after upgrade.
  • Webhook node: URL path format change (v1.29) - webhooks created before v1.29 used the path format /webhook/{uuid}. From v1.29 onwards, new webhooks use /webhook/{workflowId}/{webhookId}. Existing webhooks continue to work with the old URL format, but new webhooks created in v1.29 or later use the new format. External systems sending to old webhook URLs are not affected, but documentation and any hardcoded webhook URLs in external tools should be updated when creating new webhooks.
  • Expression syntax: $item deprecation (v1.30) - the $item() expression function for accessing data from previous nodes was formally deprecated in favour of $('Node Name').item. Workflows using $item() still execute but log a deprecation warning. The function will be removed in n8n version 2.0 (no confirmed date as of June 2026).
  • Community nodes: namespace requirement (v1.31) - community-built nodes must now use the n8n-nodes- namespace prefix in their package name. Nodes not following this convention will not appear in the node panel after upgrading. Check any custom or community nodes installed on self-hosted instances.

How does n8n compare to Zapier and Make after the 2026 updates?

After the 2026 AI Agent updates, n8n is clearly ahead of both Zapier and Make for complex multi-step automation involving LLM calls, conditional logic, and custom code. Zapier remains the fastest to set up for simple two or three-step integrations, and Make (formerly Integromat) retains a visual workflow appeal that non-technical users find easier to learn than n8n. The critical differentiator as of mid-2026 is cost at scale.

Pricing at operational scale

Zapier's pricing becomes prohibitive at volume. At 50,000 task runs per month, Zapier Professional costs approximately £370 per month (around $470). Make at the same volume costs approximately £90 per month on the Teams plan. n8n Cloud at 50,000 executions costs approximately £50 per month on the Pro plan, with unlimited executions on the Enterprise plan at a negotiated rate. Self-hosted n8n has no per-execution cost at all - only the infrastructure cost of running the instance, typically £15 to £40 per month on a modest VPS. For UK agencies building automation for multiple clients, self-hosted n8n at £25 per month serving 20 client workflows is an economics argument that Zapier and Make cannot match.

Feature comparison: mid-2026

Capabilityn8n (2026)Zapier (2026)Make (2026)
AI Agent with tool callingYes - native, 6 LLM providersYes - limited (Zapier AI, OpenAI only)Yes - via OpenAI/Anthropic modules
Custom code in workflowsYes - full Node.js/PythonYes - Code by Zapier (limited JS)Yes - limited JS
Self-hosting optionYes - full featuredNoNo
Per-execution pricingNo (n8n Cloud uses executions; self-hosted: free)Yes - expensive at scaleYes - operations-based
Error handlingStrong - retry, branch, error triggerBasic - path filters onlyGood - error handlers, rollback
Learning curveModerate to steepLowModerate
UK data residencyYes (self-hosted)No UK regionEU region (Ireland/Germany)

Zapier's advantage - its 6,000-plus app library - has narrowed. n8n now has over 400 native integrations and the HTTP Request node covers any API that Zapier connects to via generic REST. The remaining cases where Zapier is the right choice: teams with no technical resource who need automations running within hours, or businesses using Zapier's Tables and Interfaces products as a lightweight database and form builder alongside automations.

What are the best n8n use cases for UK businesses in 2026?

The n8n 2026 updates make five automation patterns particularly well-suited to UK business operations: AI-powered inbound lead qualification, GDPR-compliant customer data processing pipelines, multi-channel customer communication workflows, document intelligence and extraction, and compliance-critical notification systems where audit trails are required.

Inbound lead qualification with AI

A common n8n workflow for UK professional services firms: a website contact form triggers an n8n webhook, which passes the lead data to the Claude or GPT-4o node for qualification scoring based on company size, service interest, and message content. Leads scoring above a threshold receive an immediate WhatsApp message via the WhatsApp Business Cloud node (average response time: under 90 seconds versus the industry average of 47 minutes), while lower-scoring leads enter an email nurture sequence via Resend. The qualified leads are added to a CRM (HubSpot, Pipedrive, or Salesforce) with the AI qualification score as a custom field. This workflow typically replaces two to three hours of manual lead management per day for a firm receiving 15 to 30 inbound enquiries per week.

GDPR-compliant document processing

UK businesses handling sensitive documents - contracts, KYC documents, HR files - can use n8n's 2026 GDPR execution log masking alongside a self-hosted Claude or Mistral instance to build document processing pipelines where no customer data ever leaves UK infrastructure. A typical setup: documents uploaded to an internal storage trigger an n8n webhook, the document is extracted via a PDF parser node, passed to Mistral running on a UK-hosted server for data extraction, and the structured output written to a Postgres database. The execution logs are masked to exclude the document content, leaving only metadata for audit purposes. This architecture satisfies UK GDPR Article 28 (data processor agreements) and Article 32 (appropriate technical measures) without requiring a data transfer impact assessment.

At Softomate Solutions, we design and build n8n automation workflows for UK businesses, from simple three-node integrations to multi-system AI agent architectures. Our team has built production workflows handling over 100,000 executions per month for clients in legal services, property management, and B2B sales. If you are evaluating n8n for your business or need help migrating from Zapier or Make, speak to our automation team about your specific requirements.

n8n's 2026 updates - the rebuilt AI Agent node with tool calling across six LLM providers, 35-plus new nodes including Anthropic Claude and Google Gemini, the Canvas UI overhaul, and production-grade error handling with configurable retry and error branching - have moved it from a developer-favourite tool into a credible production automation platform. The self-hosted option remains the strongest differentiator against Zapier and Make, particularly for UK businesses with GDPR data residency requirements. The breaking changes in versions 1.27 through 1.31 are real and will catch unprepared teams - specifically the OAuth 2.0 parameter rename and the Node.js version bump. Upgrade with testing, not urgency.

About the author: The Softomate Solutions automation team has built and maintained n8n workflows in production since version 0.190, across UK clients in property, professional services, and SaaS. Our team tracks n8n release notes weekly and maintains self-hosted instances on versions from 1.20 to current.

What are the biggest n8n updates in 2026?

The biggest n8n updates in 2026 are: the rebuilt AI Agent node with tool calling support across Claude, GPT-4o, Gemini, Mistral, Groq, and OpenAI-compatible endpoints; four memory node types (in-memory, Redis, Postgres, Motorhead); the Canvas UI replacing the flat workflow builder; per-node retry logic with exponential backoff; and over 35 new native integrations including dedicated nodes for Anthropic Claude, Google Gemini, Groq, Perplexity, and ElevenLabs.

Is n8n better than Zapier in 2026?

n8n is better than Zapier for complex automation workflows, AI agent use cases, and businesses that need self-hosted data control or volume pricing. n8n Cloud costs approximately £50 per month at 50,000 executions versus Zapier's £370. Self-hosted n8n has no per-execution cost. Zapier remains the faster option for simple two to three step integrations with no technical resource, and has a larger native app library (6,000-plus versus n8n's 400-plus native integrations).

Does n8n support Claude and Gemini in 2026?

Yes. n8n added a dedicated Anthropic Claude node in January 2026 (version 1.27) supporting Claude 3.5 Sonnet, Claude 3 Opus, and Claude 3 Haiku, including vision and tool use. A Google Gemini node shipped in February 2026 supporting Gemini 1.5 Pro and Gemini 1.5 Flash with multimodal input. Both models are also available within the AI Agent node for agentic workflows with tool calling and memory.

What breaking changes should UK n8n users know about in 2026?

The four breaking changes UK n8n users need to check before upgrading are: the OAuth 2.0 parameter rename in the HTTP Request node (v1.27) which silently breaks authenticated requests; the Node.js version bump to 20 in Code nodes (v1.28) which breaks deprecated API usage; the webhook URL path format change for new webhooks (v1.29); and the deprecation of the $item() expression function in favour of $('Node Name').item (v1.30). Test in a staging environment before upgrading production instances.

Can n8n be self-hosted in the UK for GDPR compliance?

Yes. n8n's Community Edition and Enterprise Edition are both fully self-hostable and can be deployed on UK-region cloud infrastructure (AWS eu-west-2 London, Azure UK South, Google Cloud europe-west2 London). Self-hosting means workflow execution data, LLM prompts, and automation outputs stay within UK borders. The n8n Cloud product uses EU-West (Ireland) infrastructure with no UK-specific region as of June 2026. For UK financial services, healthcare, and legal firms with data residency requirements, self-hosted n8n is the correct deployment model.

How does the n8n AI Agent memory work in 2026?

The n8n AI Agent node in 2026 supports four memory types. In-memory retains conversation context within a single workflow execution only - suitable for one-shot tasks. Redis memory persists conversation history using a session ID across multiple executions, enabling multi-turn chatbot conversations. Postgres memory stores history in a database for full auditability. Motorhead memory automatically summarises long conversation histories to stay within LLM context limits. For GDPR compliance, Redis and Postgres memory allow targeted deletion of customer conversation history by session ID or database row.

We protect the real names of all clients featured in examples and case studies. Every testimonial is from a real client.

Work with us

Ready to automate your business?

Book a free 30-minute discovery call with DD and get a personalised automation roadmap.

  • Free discovery call, no commitment
  • Fixed-price scoping delivered within 48 hours
  • UK-based team with full accountability
48hSCOPING DELIVERED
100+PROJECTS DELIVERED
UKBASED TEAM
10+YEARS EXPERIENCE
Deen Dayal Yadav, founder of Softomate Solutions

Deen Dayal Yadav

Online

Hi there ðŸ'‹

How can I help you?