You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
n8n releases a new minor version most weeks. The `stable` version is for production use. `beta` is the most recent release. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).
Copy file name to clipboardExpand all lines: docs/release-notes.md
+62-6Lines changed: 62 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,34 @@ n8n uses [semantic versioning](https://semver.org/). All version numbers are in
32
32
You can find the release notes for older versions of n8n: [1.x](/release-notes/1-x.md) and [0.x](/release-notes/0-x.md)
33
33
///
34
34
35
+
36
+
37
+
## n8n@2.6.2
38
+
39
+
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@2.6.1...n8n@2.6.2) for this version.<br />
40
+
**Release date:** 2026-01-28
41
+
42
+
/// note | Beta version
43
+
This is the `beta` version. n8n recommends using the `stable` version. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).
44
+
///
45
+
46
+
This release contains bug fixes.
47
+
48
+
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.
49
+
50
+
## n8n@2.4.7
51
+
52
+
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@2.4.6...n8n@2.4.7) for this version.<br />
53
+
**Release date:** 2026-01-28
54
+
55
+
/// note | Stable version
56
+
This is the `stable` version. n8n recommends using the `stable` version. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).
57
+
///
58
+
59
+
This release contains a bug fix.
60
+
61
+
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.
62
+
35
63
## n8n@2.5.2
36
64
37
65
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@2.5.1...n8n@2.5.2) for this version.<br />
@@ -47,9 +75,9 @@ For full release details, refer to [Releases](https://github.com/n8n-io/n8n/rele
47
75
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@2.4.5...n8n@2.4.6) for this version.<br />
48
76
**Release date:** 2026-01-23
49
77
50
-
/// note | Stable version
51
-
This is the `stable` version. n8n recommends using the `stable` version. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).
52
-
///
78
+
79
+
80
+
53
81
54
82
This release contains bug fixes.
55
83
@@ -72,9 +100,7 @@ For full release details, refer to [Releases](https://github.com/n8n-io/n8n/rele
72
100
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@2.5.0...n8n@2.6.0) for this version.<br />
73
101
**Release date:** 2026-01-26
74
102
75
-
/// note | Beta version
76
-
This is the `beta` version. n8n recommends using the `stable` version. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).
77
-
///
103
+
78
104
79
105
This release contains bug fixes.
80
106
@@ -99,7 +125,37 @@ View the [commits](https://github.com/n8n-io/n8n/compare/n8n@2.4.0...n8n@2.5.0)
99
125
100
126
101
127
This release contains bug fixes.
128
+
<divclass="n8n-new-features"markdown>
129
+
### **Chat node: human-in-the-loop actions**
130
+
131
+
The **Chat** node now includes two new Actions for human-in-the-loop interactions in agentic workflows:
132
+
133
+
-**Send a message**: send a message to the user and continue the workflow
134
+
-**Send a message and wait for response**: send a message and pause execution until the user replies. Users can respond with free text in the Chat or by clicking inline approval buttons, as defined in the node’s configuration.
135
+
136
+
These Actions can be used as deterministic workflow steps or as tools for an **AI Agent**, enabling multi-turn human interaction within a single execution when using the **Chat Trigger**.
137
+
138
+
When used as an agent tool, the agent can ask for clarification before proceeding, helping it better interpret user intent and follow instructions. Agents can also send updates during long-running workflows using these Actions.
139
+
140
+
### **How to**
141
+
142
+
1. Trigger your workflow with the **Chat Trigger** node. In the node parameters, add the *Response Mode* option and set it to *Using Response Nodes*.
143
+
2. Add a **Chat** node later in the workflow, or add it as a tool for an **AI Agent**. Select one of the following operations: *Send a message* or *Send a message and wait for response*.
144
+
145
+
### **Keep in mind**
146
+
147
+
- If you want an AI Agent to choose between sending a message or waiting for input, add two **Chat** tool nodes, one for each action.
148
+
- For AI Agents triggered by the **Chat Trigger** node, adding **Send a message and wait for response** is recommended so the agent can request clarification when needed.
149
+
150
+
Learn more in the [Chat node documentation](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-langchain.chat/#operation).
0 commit comments