n8n 2.26.8 - Form Trigger Compatibility Fix

n8n [email protected] was published on June 19, 2026, with one user visible fix: the Form Trigger Node now gets a default value for its authentication parameter so old workflows do not crash at that point. It is not marked as a prerelease, and the main reason to read this release is compatibility for existing automation estates that still run older workflow definitions.

The full release notes and downloads are on the GitHub release page.

Form Trigger compatibility for old workflows

The release notes call out a single bug fix in the Form Trigger Node. The node now has a default value for its authentication parameter, linked to GitHub issue #32629 and commit 174da99. That is narrow, but it matters when workflows have lived through several n8n versions.

The data engineering angle is workflow durability. Form based ingestion often sits at the edge of a pipeline: customer uploads, intake forms, manual exceptions, webhook style handoff, or internal operations requests. If an older workflow lacks a newer authentication field, a crash at trigger evaluation can stop the path before validation, queueing, or downstream ETL work begins.

Adding a default does not change the shape of the payload or add a new connector. It reduces one schema compatibility failure inside the node configuration. For operators, that is the useful part. Fewer old workflow records need manual edits before they can execute on the current runtime.

Why a one fix release still matters

n8n is often run as a workflow control plane, not just a visual editor. A small trigger bug can have an outsized effect when the trigger is the entry point for a data capture path. In this case, the release is about keeping existing workflow definitions executable after a version move.

This is not a broad data plane release. There are no release note claims about new sources, new destinations, scheduler behavior, queue throughput, credential rotation, or database migration work. The GitHub release page lists the Form Trigger Node fix as the only product change.

That narrow scope is still helpful for teams with many workflows. When a release has only one public bug fix, the upgrade review can focus on the affected node type, old workflow records, and any forms that use authentication settings. That is a cleaner validation target than a larger release with connector and runtime changes mixed together.

Operator checks before rollout

A practical rollout check is to list workflows that use the Form Trigger Node, then run a small sample that includes older definitions. The release notes do not name a migration step, so the test should be behavioral: can the workflow load, can the trigger initialize, and does the expected form path still reach the next node.

Teams that export workflow JSON for review should inspect whether older Form Trigger nodes lack the authentication parameter. The fix means n8n now supplies a default, but visibility still matters. If that field is absent across many workflows, this release can be treated as a targeted compatibility patch rather than a reason to reshape the pipeline.

Also ignore the generated review badges in the release notes for product evaluation. The Stage Review and Cubic links are metadata around the release process. They do not describe runtime behavior for ETL, ELT, web intake, or orchestration.

Upgrade notes

The release notes do not mention breaking changes, manual migration steps, or prerelease status. The main upgrade risk is ordinary regression risk around workflows that depend on the Form Trigger Node. Test old forms first, then check any paths that feed batch loads, ticket intake, or human submitted data into downstream workflows.

Where to get it