@n8n-as-code/skills 1.8.0-next.18 → 1.8.0-next.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/n8n-docs-complete.json +804 -861
- package/dist/assets/n8n-knowledge-index.json +808 -870
- package/dist/assets/n8n-nodes-index.json +13 -13
- package/dist/assets/n8n-nodes-technical.json +13 -13
- package/dist/assets/workflows-index.json +2 -2
- package/dist/services/ai-context-generator.d.ts.map +1 -1
- package/dist/services/ai-context-generator.js +10 -9
- package/dist/services/ai-context-generator.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-04-
|
|
2
|
+
"generatedAt": "2026-04-08T10:59:38.945Z",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"sourceUrl": "https://docs.n8n.io/llms.txt",
|
|
5
|
-
"totalPages":
|
|
5
|
+
"totalPages": 1261,
|
|
6
6
|
"statistics": {
|
|
7
7
|
"byCategory": {
|
|
8
|
-
"other":
|
|
8
|
+
"other": 516,
|
|
9
9
|
"tutorials": 27,
|
|
10
10
|
"advanced-ai": 27,
|
|
11
11
|
"api": 5,
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"categories": {
|
|
27
27
|
"other": {
|
|
28
28
|
"description": "General documentation and guides",
|
|
29
|
-
"totalPages":
|
|
29
|
+
"totalPages": 516,
|
|
30
30
|
"pages": [
|
|
31
31
|
"page-0001",
|
|
32
32
|
"page-0002",
|
|
@@ -514,7 +514,6 @@
|
|
|
514
514
|
"page-1203",
|
|
515
515
|
"page-1204",
|
|
516
516
|
"page-1205",
|
|
517
|
-
"page-1206",
|
|
518
517
|
"page-1207",
|
|
519
518
|
"page-1208",
|
|
520
519
|
"page-1209",
|
|
@@ -7796,6 +7795,88 @@
|
|
|
7796
7795
|
},
|
|
7797
7796
|
{
|
|
7798
7797
|
"id": "page-0079",
|
|
7798
|
+
"title": "Setting values for processing orders",
|
|
7799
|
+
"url": "https://docs.n8n.io/courses/level-one/chapter-5/chapter-5.4/index.md",
|
|
7800
|
+
"urlPath": "courses/level-one/chapter-5/chapter-5.4/index.md",
|
|
7801
|
+
"category": "tutorials",
|
|
7802
|
+
"subcategory": null,
|
|
7803
|
+
"nodeName": null,
|
|
7804
|
+
"nodeType": null,
|
|
7805
|
+
"content": {
|
|
7806
|
+
"markdown": "# 4. Setting Values for Processing Orders\n\nIn this step of the workflow, you will learn how to select and set data before transferring it to Airtable using the Edit Fields (Set) node. After this step, your workflow should look like this:\n\n[View workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\nThe next step in Nathan's workflow is to filter the data to only insert the `employeeName` and `orderID` of all `processing` orders into Airtable.\n\nFor this, you need to use the [Edit Fields (Set) node](../../../../integrations/builtin/core-nodes/n8n-nodes-base.set/), which allows you to select and set the data you want to transfer from one node to another.\n\nEdit Fields node\n\nThe Edit Fields node can set completely new data as well as overwrite data that already exists. This node is crucial in workflows which expect incoming data from previous nodes, such as when inserting values into spreadsheets or databases.\n\n## Add another node before the Airtable node\n\nIn your workflow, add another node before the **Airtable node** from the **If node** in the same way we did it in the [Filtering Orders](../chapter-5.3/#add-if-node-before-the-airtable-node) lesson on the If node's `true` connector. Feel free to drag the Airtable node further away if your canvas feels crowded.\n\n## Configure the Edit Fields node\n\nNow search for the **Edit Fields (Set) node** after you've selected the **+** sign coming off the If node's `true` connector.\n\nWith the Edit Fields node window open, configure these parameters:\n\n- Ensure **Mode** is set to **Manual Mapping**.\n- While you can use the **Expression editor** we used in the [Filtering Orders](../chapter-5.3/) lesson, this time, let's drag the fields from the **Input** into the **Fields to Set**:\n - Drag **If** > **orderID** as the first field.\n - Drag **If** > **employeeName** as the second field.\n- Ensure that **Include Other Input Fields** is set to false.\n\nSelect **Execute step**. You should see the following results:\n\n*Edit Fields (Set) node*\n\n## Add data to Airtable\n\nNext, let's insert these values into Airtable:\n\n1. Go to your Airtable base.\n\n1. Add a new table called `processingOrders`.\n\n1. Replace the existing columns with two new columns:\n\n - `orderID` (primary field): Number\n - `employeeName`: Single line text\n\n Reminder\n\n If you get stuck, refer to the [Inserting data into Airtable](../chapter-5.2/) lesson.\n\n1. Delete the three empty rows in the new table.\n\n1. In n8n, connect the Edit Fields node **connector to the** Airtable node\\*\\*.\n\n1. Update the Airtable node configuration to point to the new `processingOrders` table instead of the `orders` table.\n\n1. Test your Airtable node to be sure it inserts records into the new `processingOrders` table.\n\nAt this stage, your workflow should now look like this:\n\n[View workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\n## What's next?\n\n**Nathan 🙋**: You've already automated half of my work! Now I still need to calculate the booked orders for my colleagues. Can we automate that as well?\n\n**You 👩🔧**: Yes! In the next step, I'll use some JavaScript code in a node to calculate the booked orders.\n",
|
|
7807
|
+
"excerpt": "# 4. Setting Values for Processing Orders In this step of the workflow, you will learn how to select and set data before transferring it to Airtable using the Edit Fields (Set) node. After this step, your workflow should look like this: [View workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json) The next step in Nathan's workflow is to filter the data to only insert the `employeeName` and `orderID` of all `processing` orders into Airtable. For this, you need to use the [E...",
|
|
7808
|
+
"sections": [
|
|
7809
|
+
{
|
|
7810
|
+
"title": "4. Setting Values for Processing Orders",
|
|
7811
|
+
"level": 1,
|
|
7812
|
+
"content": "In this step of the workflow, you will learn how to select and set data before transferring it to Airtable using the Edit Fields (Set) node. After this step, your workflow should look like this:\n\n[View workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\nThe next step in Nathan's workflow is to filter the data to only insert the `employeeName` and `orderID` of all `processing` orders into Airtable.\n\nFor this, you need to use the [Edit Fields (Set) node](../../../../integrations/builtin/core-nodes/n8n-nodes-base.set/), which allows you to select and set the data you want to transfer from one node to another.\n\nEdit Fields node\n\nThe Edit Fields node can set completely new data as well as overwrite data that already exists. This node is crucial in workflows which expect incoming data from previous nodes, such as when inserting values into spreadsheets or databases."
|
|
7813
|
+
}
|
|
7814
|
+
]
|
|
7815
|
+
},
|
|
7816
|
+
"metadata": {
|
|
7817
|
+
"keywords": [
|
|
7818
|
+
"setting",
|
|
7819
|
+
"values",
|
|
7820
|
+
"processing",
|
|
7821
|
+
"orders",
|
|
7822
|
+
"another",
|
|
7823
|
+
"node",
|
|
7824
|
+
"before",
|
|
7825
|
+
"airtable",
|
|
7826
|
+
"configure",
|
|
7827
|
+
"edit",
|
|
7828
|
+
"fields",
|
|
7829
|
+
"data",
|
|
7830
|
+
"what's",
|
|
7831
|
+
"next?"
|
|
7832
|
+
],
|
|
7833
|
+
"useCases": [],
|
|
7834
|
+
"operations": [],
|
|
7835
|
+
"codeExamples": 0,
|
|
7836
|
+
"complexity": "beginner",
|
|
7837
|
+
"readingTime": "3 min",
|
|
7838
|
+
"contentLength": 3175,
|
|
7839
|
+
"relatedPages": []
|
|
7840
|
+
},
|
|
7841
|
+
"searchIndex": {
|
|
7842
|
+
"fullText": "setting values for processing orders # 4. setting values for processing orders\n\nin this step of the workflow, you will learn how to select and set data before transferring it to airtable using the edit fields (set) node. after this step, your workflow should look like this:\n\n[view workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\nthe next step in nathan's workflow is to filter the data to only insert the `employeename` and `orderid` of all `processing` orders into airtable.\n\nfor this, you need to use the [edit fields (set) node](../../../../integrations/builtin/core-nodes/n8n-nodes-base.set/), which allows you to select and set the data you want to transfer from one node to another.\n\nedit fields node\n\nthe edit fields node can set completely new data as well as overwrite data that already exists. this node is crucial in workflows which expect incoming data from previous nodes, such as when inserting values into spreadsheets or databases.\n\n## add another node before the airtable node\n\nin your workflow, add another node before the **airtable node** from the **if node** in the same way we did it in the [filtering orders](../chapter-5.3/#add-if-node-before-the-airtable-node) lesson on the if node's `true` connector. feel free to drag the airtable node further away if your canvas feels crowded.\n\n## configure the edit fields node\n\nnow search for the **edit fields (set) node** after you've selected the **+** sign coming off the if node's `true` connector.\n\nwith the edit fields node window open, configure these parameters:\n\n- ensure **mode** is set to **manual mapping**.\n- while you can use the **expression editor** we used in the [filtering orders](../chapter-5.3/) lesson, this time, let's drag the fields from the **input** into the **fields to set**:\n - drag **if** > **orderid** as the first field.\n - drag **if** > **employeename** as the second field.\n- ensure that **include other input fields** is set to false.\n\nselect **execute step**. you should see the following results:\n\n*edit fields (set) node*\n\n## add data to airtable\n\nnext, let's insert these values into airtable:\n\n1. go to your airtable base.\n\n1. add a new table called `processingorders`.\n\n1. replace the existing columns with two new columns:\n\n - `orderid` (primary field): number\n - `employeename`: single line text\n\n reminder\n\n if you get stuck, refer to the [inserting data into airtable](../chapter-5.2/) lesson.\n\n1. delete the three empty rows in the new table.\n\n1. in n8n, connect the edit fields node **connector to the** airtable node\\*\\*.\n\n1. update the airtable node configuration to point to the new `processingorders` table instead of the `orders` table.\n\n1. test your airtable node to be sure it inserts records into the new `processingorders` table.\n\nat this stage, your workflow should now look like this:\n\n[view workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\n## what's next?\n\n**nathan 🙋**: you've already automated half of my work! now i still need to calculate the booked orders for my colleagues. can we automate that as well?\n\n**you 👩🔧**: yes! in the next step, i'll use some javascript code in a node to calculate the booked orders.\n 4. setting values for processing orders",
|
|
7843
|
+
"importantTerms": [
|
|
7844
|
+
"node",
|
|
7845
|
+
"airtable",
|
|
7846
|
+
"fields",
|
|
7847
|
+
"orders",
|
|
7848
|
+
"edit",
|
|
7849
|
+
"this",
|
|
7850
|
+
"data",
|
|
7851
|
+
"workflow",
|
|
7852
|
+
"chapter",
|
|
7853
|
+
"your",
|
|
7854
|
+
"into",
|
|
7855
|
+
"values",
|
|
7856
|
+
"step",
|
|
7857
|
+
"table",
|
|
7858
|
+
"processing",
|
|
7859
|
+
"before",
|
|
7860
|
+
"next",
|
|
7861
|
+
"from",
|
|
7862
|
+
"drag",
|
|
7863
|
+
"setting",
|
|
7864
|
+
"select",
|
|
7865
|
+
"should",
|
|
7866
|
+
"employeename",
|
|
7867
|
+
"orderid",
|
|
7868
|
+
"nodes",
|
|
7869
|
+
"another",
|
|
7870
|
+
"that",
|
|
7871
|
+
"lesson",
|
|
7872
|
+
"connector",
|
|
7873
|
+
"field",
|
|
7874
|
+
"processingorders"
|
|
7875
|
+
]
|
|
7876
|
+
}
|
|
7877
|
+
},
|
|
7878
|
+
{
|
|
7879
|
+
"id": "page-0080",
|
|
7799
7880
|
"title": "Filtering orders",
|
|
7800
7881
|
"url": "https://docs.n8n.io/courses/level-one/chapter-5/chapter-5.3/index.md",
|
|
7801
7882
|
"urlPath": "courses/level-one/chapter-5/chapter-5.3/index.md",
|
|
@@ -7892,88 +7973,6 @@
|
|
|
7892
7973
|
]
|
|
7893
7974
|
}
|
|
7894
7975
|
},
|
|
7895
|
-
{
|
|
7896
|
-
"id": "page-0080",
|
|
7897
|
-
"title": "Setting values for processing orders",
|
|
7898
|
-
"url": "https://docs.n8n.io/courses/level-one/chapter-5/chapter-5.4/index.md",
|
|
7899
|
-
"urlPath": "courses/level-one/chapter-5/chapter-5.4/index.md",
|
|
7900
|
-
"category": "tutorials",
|
|
7901
|
-
"subcategory": null,
|
|
7902
|
-
"nodeName": null,
|
|
7903
|
-
"nodeType": null,
|
|
7904
|
-
"content": {
|
|
7905
|
-
"markdown": "# 4. Setting Values for Processing Orders\n\nIn this step of the workflow, you will learn how to select and set data before transferring it to Airtable using the Edit Fields (Set) node. After this step, your workflow should look like this:\n\n[View workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\nThe next step in Nathan's workflow is to filter the data to only insert the `employeeName` and `orderID` of all `processing` orders into Airtable.\n\nFor this, you need to use the [Edit Fields (Set) node](../../../../integrations/builtin/core-nodes/n8n-nodes-base.set/), which allows you to select and set the data you want to transfer from one node to another.\n\nEdit Fields node\n\nThe Edit Fields node can set completely new data as well as overwrite data that already exists. This node is crucial in workflows which expect incoming data from previous nodes, such as when inserting values into spreadsheets or databases.\n\n## Add another node before the Airtable node\n\nIn your workflow, add another node before the **Airtable node** from the **If node** in the same way we did it in the [Filtering Orders](../chapter-5.3/#add-if-node-before-the-airtable-node) lesson on the If node's `true` connector. Feel free to drag the Airtable node further away if your canvas feels crowded.\n\n## Configure the Edit Fields node\n\nNow search for the **Edit Fields (Set) node** after you've selected the **+** sign coming off the If node's `true` connector.\n\nWith the Edit Fields node window open, configure these parameters:\n\n- Ensure **Mode** is set to **Manual Mapping**.\n- While you can use the **Expression editor** we used in the [Filtering Orders](../chapter-5.3/) lesson, this time, let's drag the fields from the **Input** into the **Fields to Set**:\n - Drag **If** > **orderID** as the first field.\n - Drag **If** > **employeeName** as the second field.\n- Ensure that **Include Other Input Fields** is set to false.\n\nSelect **Execute step**. You should see the following results:\n\n*Edit Fields (Set) node*\n\n## Add data to Airtable\n\nNext, let's insert these values into Airtable:\n\n1. Go to your Airtable base.\n\n1. Add a new table called `processingOrders`.\n\n1. Replace the existing columns with two new columns:\n\n - `orderID` (primary field): Number\n - `employeeName`: Single line text\n\n Reminder\n\n If you get stuck, refer to the [Inserting data into Airtable](../chapter-5.2/) lesson.\n\n1. Delete the three empty rows in the new table.\n\n1. In n8n, connect the Edit Fields node **connector to the** Airtable node\\*\\*.\n\n1. Update the Airtable node configuration to point to the new `processingOrders` table instead of the `orders` table.\n\n1. Test your Airtable node to be sure it inserts records into the new `processingOrders` table.\n\nAt this stage, your workflow should now look like this:\n\n[View workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\n## What's next?\n\n**Nathan 🙋**: You've already automated half of my work! Now I still need to calculate the booked orders for my colleagues. Can we automate that as well?\n\n**You 👩🔧**: Yes! In the next step, I'll use some JavaScript code in a node to calculate the booked orders.\n",
|
|
7906
|
-
"excerpt": "# 4. Setting Values for Processing Orders In this step of the workflow, you will learn how to select and set data before transferring it to Airtable using the Edit Fields (Set) node. After this step, your workflow should look like this: [View workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json) The next step in Nathan's workflow is to filter the data to only insert the `employeeName` and `orderID` of all `processing` orders into Airtable. For this, you need to use the [E...",
|
|
7907
|
-
"sections": [
|
|
7908
|
-
{
|
|
7909
|
-
"title": "4. Setting Values for Processing Orders",
|
|
7910
|
-
"level": 1,
|
|
7911
|
-
"content": "In this step of the workflow, you will learn how to select and set data before transferring it to Airtable using the Edit Fields (Set) node. After this step, your workflow should look like this:\n\n[View workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\nThe next step in Nathan's workflow is to filter the data to only insert the `employeeName` and `orderID` of all `processing` orders into Airtable.\n\nFor this, you need to use the [Edit Fields (Set) node](../../../../integrations/builtin/core-nodes/n8n-nodes-base.set/), which allows you to select and set the data you want to transfer from one node to another.\n\nEdit Fields node\n\nThe Edit Fields node can set completely new data as well as overwrite data that already exists. This node is crucial in workflows which expect incoming data from previous nodes, such as when inserting values into spreadsheets or databases."
|
|
7912
|
-
}
|
|
7913
|
-
]
|
|
7914
|
-
},
|
|
7915
|
-
"metadata": {
|
|
7916
|
-
"keywords": [
|
|
7917
|
-
"setting",
|
|
7918
|
-
"values",
|
|
7919
|
-
"processing",
|
|
7920
|
-
"orders",
|
|
7921
|
-
"another",
|
|
7922
|
-
"node",
|
|
7923
|
-
"before",
|
|
7924
|
-
"airtable",
|
|
7925
|
-
"configure",
|
|
7926
|
-
"edit",
|
|
7927
|
-
"fields",
|
|
7928
|
-
"data",
|
|
7929
|
-
"what's",
|
|
7930
|
-
"next?"
|
|
7931
|
-
],
|
|
7932
|
-
"useCases": [],
|
|
7933
|
-
"operations": [],
|
|
7934
|
-
"codeExamples": 0,
|
|
7935
|
-
"complexity": "beginner",
|
|
7936
|
-
"readingTime": "3 min",
|
|
7937
|
-
"contentLength": 3175,
|
|
7938
|
-
"relatedPages": []
|
|
7939
|
-
},
|
|
7940
|
-
"searchIndex": {
|
|
7941
|
-
"fullText": "setting values for processing orders # 4. setting values for processing orders\n\nin this step of the workflow, you will learn how to select and set data before transferring it to airtable using the edit fields (set) node. after this step, your workflow should look like this:\n\n[view workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\nthe next step in nathan's workflow is to filter the data to only insert the `employeename` and `orderid` of all `processing` orders into airtable.\n\nfor this, you need to use the [edit fields (set) node](../../../../integrations/builtin/core-nodes/n8n-nodes-base.set/), which allows you to select and set the data you want to transfer from one node to another.\n\nedit fields node\n\nthe edit fields node can set completely new data as well as overwrite data that already exists. this node is crucial in workflows which expect incoming data from previous nodes, such as when inserting values into spreadsheets or databases.\n\n## add another node before the airtable node\n\nin your workflow, add another node before the **airtable node** from the **if node** in the same way we did it in the [filtering orders](../chapter-5.3/#add-if-node-before-the-airtable-node) lesson on the if node's `true` connector. feel free to drag the airtable node further away if your canvas feels crowded.\n\n## configure the edit fields node\n\nnow search for the **edit fields (set) node** after you've selected the **+** sign coming off the if node's `true` connector.\n\nwith the edit fields node window open, configure these parameters:\n\n- ensure **mode** is set to **manual mapping**.\n- while you can use the **expression editor** we used in the [filtering orders](../chapter-5.3/) lesson, this time, let's drag the fields from the **input** into the **fields to set**:\n - drag **if** > **orderid** as the first field.\n - drag **if** > **employeename** as the second field.\n- ensure that **include other input fields** is set to false.\n\nselect **execute step**. you should see the following results:\n\n*edit fields (set) node*\n\n## add data to airtable\n\nnext, let's insert these values into airtable:\n\n1. go to your airtable base.\n\n1. add a new table called `processingorders`.\n\n1. replace the existing columns with two new columns:\n\n - `orderid` (primary field): number\n - `employeename`: single line text\n\n reminder\n\n if you get stuck, refer to the [inserting data into airtable](../chapter-5.2/) lesson.\n\n1. delete the three empty rows in the new table.\n\n1. in n8n, connect the edit fields node **connector to the** airtable node\\*\\*.\n\n1. update the airtable node configuration to point to the new `processingorders` table instead of the `orders` table.\n\n1. test your airtable node to be sure it inserts records into the new `processingorders` table.\n\nat this stage, your workflow should now look like this:\n\n[view workflow file](/_workflows//courses/level-one/chapter-5/chapter-5.4.json)\n\n## what's next?\n\n**nathan 🙋**: you've already automated half of my work! now i still need to calculate the booked orders for my colleagues. can we automate that as well?\n\n**you 👩🔧**: yes! in the next step, i'll use some javascript code in a node to calculate the booked orders.\n 4. setting values for processing orders",
|
|
7942
|
-
"importantTerms": [
|
|
7943
|
-
"node",
|
|
7944
|
-
"airtable",
|
|
7945
|
-
"fields",
|
|
7946
|
-
"orders",
|
|
7947
|
-
"edit",
|
|
7948
|
-
"this",
|
|
7949
|
-
"data",
|
|
7950
|
-
"workflow",
|
|
7951
|
-
"chapter",
|
|
7952
|
-
"your",
|
|
7953
|
-
"into",
|
|
7954
|
-
"values",
|
|
7955
|
-
"step",
|
|
7956
|
-
"table",
|
|
7957
|
-
"processing",
|
|
7958
|
-
"before",
|
|
7959
|
-
"next",
|
|
7960
|
-
"from",
|
|
7961
|
-
"drag",
|
|
7962
|
-
"setting",
|
|
7963
|
-
"select",
|
|
7964
|
-
"should",
|
|
7965
|
-
"employeename",
|
|
7966
|
-
"orderid",
|
|
7967
|
-
"nodes",
|
|
7968
|
-
"another",
|
|
7969
|
-
"that",
|
|
7970
|
-
"lesson",
|
|
7971
|
-
"connector",
|
|
7972
|
-
"field",
|
|
7973
|
-
"processingorders"
|
|
7974
|
-
]
|
|
7975
|
-
}
|
|
7976
|
-
},
|
|
7977
7976
|
{
|
|
7978
7977
|
"id": "page-0081",
|
|
7979
7978
|
"title": "Calculating booked orders",
|
|
@@ -41623,6 +41622,101 @@
|
|
|
41623
41622
|
},
|
|
41624
41623
|
{
|
|
41625
41624
|
"id": "page-0536",
|
|
41625
|
+
"title": "Image operations",
|
|
41626
|
+
"url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-langchain.openai/image-operations/index.md",
|
|
41627
|
+
"urlPath": "integrations/builtin/app-nodes/n8n-nodes-langchain.openai/image-operations/index.md",
|
|
41628
|
+
"category": "integrations",
|
|
41629
|
+
"subcategory": "app-nodes",
|
|
41630
|
+
"nodeName": null,
|
|
41631
|
+
"nodeType": null,
|
|
41632
|
+
"content": {
|
|
41633
|
+
"markdown": "# OpenAI Image operations\n\nUse this operation to analyze or generate an image in OpenAI. Refer to [OpenAI](../) for more information on the OpenAI node itself.\n\n## Analyze Image\n\nUse this operation to take in images and answer questions about them.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [OpenAI credential](../../../credentials/openai/).\n- **Resource**: Select **Image**.\n- **Operation**: Select **Analayze Image**.\n- **Model**: Select the model you want to use to analyze an image.\n- **Text Input**: Ask a question about the image.\n- **Input Type**: Select how you'd like to input the image. Options include:\n - **Image URL(s)**: Enter the **URL(s)** of the image(s) to analyze. Add multiple URLs in a comma-separated list.\n - **Binary File(s)**: Enter the name of the binary property which contains the image(s) in the **Input Data Field Name**.\n\n### Options\n\n- **Detail**: Specify the balance between response time versus token usage.\n- **Length of Description (Max Tokens)**: Defaults to 300. Fewer tokens will result in shorter, less detailed image description.\n\nRefer to [Images | OpenAI](https://platform.openai.com/docs/api-reference/images) documentation for more information.\n\n## Generate an Image\n\nUse this operation to create an image from a text prompt.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [OpenAI credential](../../../credentials/openai/).\n- **Resource**: Select **Image**.\n- **Operation**: Select **Generate an Image**.\n- **Model**: Select the model you want to use to generate an image.\n- **Prompt**: Enter the text description of the desired image(s). The maximum length is 1000 characters for `dall-e-2` and 4000 characters for `dall-e-3`.\n\n### Options\n\n- **Quality**: The quality of the image you generate. **HD** creates images with finer details and greater consistency across the image. This option is only supported for `dall-e-3`. Otherwise, choose **Standard**.\n- **Resolution**: Select the resolution of the generated images. Select **1024x1024** for `dall-e-2`. Select one of **1024x1024**, **1792x1024**, or **1024x1792** for `dall-e-3` models.\n- **Style**: Select the style of the generated images. This option is only supported for `dall-e-3`.\n - **Natural**: Use this to produce more natural looking images.\n - **Vivid**: Use this to produce hyper-real and dramatic images.\n- **Respond with image URL(s)**: Whether to return image URL(s) instead of binary file(s).\n- **Put Output in Field**: Defaults to `data`. Enter the name of the output field to put the binary file data in. Only available if **Respond with image URL(s)** is turned off.\n\nRefer to [Create image | OpenAI](https://platform.openai.com/docs/api-reference/images/create) documentation for more information.\n\n## Edit an Image\n\nUse this operation to edit an image from a text prompt.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [OpenAI credential](../../../credentials/openai/).\n- **Resource**: Select **Image**.\n- **Operation**: Select **Edit Image**.\n- **Model**: Select the model you want to use to generate an image. Supports `dall-e-2` and `gpt-image-1`.\n- **Prompt**: Enter the text description of the desired edits to the input image(s).\n- **Image(s)**: Add one or more binary fields to include images with your prompt. Each image should be a png, webp, or jpg file less than 50MB. You can provide up to 16 images.\n- **Number of Images**: The number of images to generate. Must be between 1 and 10.\n- **Size**: The size and dimensions of the generated images (in px).\n- **Quality**: The quality of the image that will be generated (auto, low, medium, high, standard). Only supported for `gpt-image-1`.\n- **Output Format**: The format in which the generated images are returned (png, webp, or jpg). Only supported for gpt-image-1.\n- **Output Compression**: The compression level (0-100%) for the generated images. Only supported for `gpt-image-1` with webp or jpeg output formats.\n\n### Options\n\n- **Background**: Allows to set transparency for the background of the generated image(s). Only supported for `gpt-image-1`.\n- **Input Fidelity**: Control how much effort the model will exert to match the style and features of input images. Only supported for `gpt-image-1`.\n- **Image Mask**: Name of the binary property that contains the image. A second image whose fully transparent areas (for example, where alpha is zero) shows where the image should be edited. If there are multiple images provided, the mask will be applied on the first image. Must be a valid PNG file, less than 4MB, and have the same dimensions as image.\n- **User**: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.\n\n## Common issues\n\nFor common errors or issues and suggested resolution steps, refer to [Common Issues](../common-issues/).\n",
|
|
41634
|
+
"excerpt": "# OpenAI Image operations Use this operation to analyze or generate an image in OpenAI. Refer to [OpenAI](../) for more information on the OpenAI node itself. ## Analyze Image Use this operation to take in images and answer questions about them. Enter these parameters: - **Credential to connect with**: Create or select an existing [OpenAI credential](../../../credentials/openai/). - **Resource**: Select **Image**. - **Operation**: Select **Analayze Image**. - **Model**: Select the model you...",
|
|
41635
|
+
"sections": [
|
|
41636
|
+
{
|
|
41637
|
+
"title": "OpenAI Image operations",
|
|
41638
|
+
"level": 1,
|
|
41639
|
+
"content": "Use this operation to analyze or generate an image in OpenAI. Refer to [OpenAI](../) for more information on the OpenAI node itself."
|
|
41640
|
+
}
|
|
41641
|
+
]
|
|
41642
|
+
},
|
|
41643
|
+
"metadata": {
|
|
41644
|
+
"keywords": [
|
|
41645
|
+
"image",
|
|
41646
|
+
"operations",
|
|
41647
|
+
"openai",
|
|
41648
|
+
"analyze",
|
|
41649
|
+
"options",
|
|
41650
|
+
"generate",
|
|
41651
|
+
"edit",
|
|
41652
|
+
"common",
|
|
41653
|
+
"issues"
|
|
41654
|
+
],
|
|
41655
|
+
"useCases": [],
|
|
41656
|
+
"operations": [],
|
|
41657
|
+
"codeExamples": 0,
|
|
41658
|
+
"complexity": "beginner",
|
|
41659
|
+
"readingTime": "4 min",
|
|
41660
|
+
"contentLength": 4915,
|
|
41661
|
+
"relatedPages": []
|
|
41662
|
+
},
|
|
41663
|
+
"searchIndex": {
|
|
41664
|
+
"fullText": "image operations # openai image operations\n\nuse this operation to analyze or generate an image in openai. refer to [openai](../) for more information on the openai node itself.\n\n## analyze image\n\nuse this operation to take in images and answer questions about them.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [openai credential](../../../credentials/openai/).\n- **resource**: select **image**.\n- **operation**: select **analayze image**.\n- **model**: select the model you want to use to analyze an image.\n- **text input**: ask a question about the image.\n- **input type**: select how you'd like to input the image. options include:\n - **image url(s)**: enter the **url(s)** of the image(s) to analyze. add multiple urls in a comma-separated list.\n - **binary file(s)**: enter the name of the binary property which contains the image(s) in the **input data field name**.\n\n### options\n\n- **detail**: specify the balance between response time versus token usage.\n- **length of description (max tokens)**: defaults to 300. fewer tokens will result in shorter, less detailed image description.\n\nrefer to [images | openai](https://platform.openai.com/docs/api-reference/images) documentation for more information.\n\n## generate an image\n\nuse this operation to create an image from a text prompt.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [openai credential](../../../credentials/openai/).\n- **resource**: select **image**.\n- **operation**: select **generate an image**.\n- **model**: select the model you want to use to generate an image.\n- **prompt**: enter the text description of the desired image(s). the maximum length is 1000 characters for `dall-e-2` and 4000 characters for `dall-e-3`.\n\n### options\n\n- **quality**: the quality of the image you generate. **hd** creates images with finer details and greater consistency across the image. this option is only supported for `dall-e-3`. otherwise, choose **standard**.\n- **resolution**: select the resolution of the generated images. select **1024x1024** for `dall-e-2`. select one of **1024x1024**, **1792x1024**, or **1024x1792** for `dall-e-3` models.\n- **style**: select the style of the generated images. this option is only supported for `dall-e-3`.\n - **natural**: use this to produce more natural looking images.\n - **vivid**: use this to produce hyper-real and dramatic images.\n- **respond with image url(s)**: whether to return image url(s) instead of binary file(s).\n- **put output in field**: defaults to `data`. enter the name of the output field to put the binary file data in. only available if **respond with image url(s)** is turned off.\n\nrefer to [create image | openai](https://platform.openai.com/docs/api-reference/images/create) documentation for more information.\n\n## edit an image\n\nuse this operation to edit an image from a text prompt.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [openai credential](../../../credentials/openai/).\n- **resource**: select **image**.\n- **operation**: select **edit image**.\n- **model**: select the model you want to use to generate an image. supports `dall-e-2` and `gpt-image-1`.\n- **prompt**: enter the text description of the desired edits to the input image(s).\n- **image(s)**: add one or more binary fields to include images with your prompt. each image should be a png, webp, or jpg file less than 50mb. you can provide up to 16 images.\n- **number of images**: the number of images to generate. must be between 1 and 10.\n- **size**: the size and dimensions of the generated images (in px).\n- **quality**: the quality of the image that will be generated (auto, low, medium, high, standard). only supported for `gpt-image-1`.\n- **output format**: the format in which the generated images are returned (png, webp, or jpg). only supported for gpt-image-1.\n- **output compression**: the compression level (0-100%) for the generated images. only supported for `gpt-image-1` with webp or jpeg output formats.\n\n### options\n\n- **background**: allows to set transparency for the background of the generated image(s). only supported for `gpt-image-1`.\n- **input fidelity**: control how much effort the model will exert to match the style and features of input images. only supported for `gpt-image-1`.\n- **image mask**: name of the binary property that contains the image. a second image whose fully transparent areas (for example, where alpha is zero) shows where the image should be edited. if there are multiple images provided, the mask will be applied on the first image. must be a valid png file, less than 4mb, and have the same dimensions as image.\n- **user**: a unique identifier representing your end-user, which can help openai to monitor and detect abuse.\n\n## common issues\n\nfor common errors or issues and suggested resolution steps, refer to [common issues](../common-issues/).\n openai image operations",
|
|
41665
|
+
"importantTerms": [
|
|
41666
|
+
"image",
|
|
41667
|
+
"images",
|
|
41668
|
+
"select",
|
|
41669
|
+
"openai",
|
|
41670
|
+
"this",
|
|
41671
|
+
"enter",
|
|
41672
|
+
"with",
|
|
41673
|
+
"only",
|
|
41674
|
+
"operation",
|
|
41675
|
+
"generate",
|
|
41676
|
+
"model",
|
|
41677
|
+
"input",
|
|
41678
|
+
"dall",
|
|
41679
|
+
"supported",
|
|
41680
|
+
"generated",
|
|
41681
|
+
"credential",
|
|
41682
|
+
"create",
|
|
41683
|
+
"binary",
|
|
41684
|
+
"more",
|
|
41685
|
+
"text",
|
|
41686
|
+
"file",
|
|
41687
|
+
"prompt",
|
|
41688
|
+
"output",
|
|
41689
|
+
"analyze",
|
|
41690
|
+
"refer",
|
|
41691
|
+
"options",
|
|
41692
|
+
"name",
|
|
41693
|
+
"description",
|
|
41694
|
+
"will",
|
|
41695
|
+
"quality",
|
|
41696
|
+
"common",
|
|
41697
|
+
"issues",
|
|
41698
|
+
"operations",
|
|
41699
|
+
"information",
|
|
41700
|
+
"these",
|
|
41701
|
+
"parameters",
|
|
41702
|
+
"connect",
|
|
41703
|
+
"existing",
|
|
41704
|
+
"credentials",
|
|
41705
|
+
"resource",
|
|
41706
|
+
"want",
|
|
41707
|
+
"which",
|
|
41708
|
+
"data",
|
|
41709
|
+
"field",
|
|
41710
|
+
"less",
|
|
41711
|
+
"resolution",
|
|
41712
|
+
"style",
|
|
41713
|
+
"edit",
|
|
41714
|
+
"webp"
|
|
41715
|
+
]
|
|
41716
|
+
}
|
|
41717
|
+
},
|
|
41718
|
+
{
|
|
41719
|
+
"id": "page-0537",
|
|
41626
41720
|
"title": "File operations",
|
|
41627
41721
|
"url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-langchain.openai/file-operations/index.md",
|
|
41628
41722
|
"urlPath": "integrations/builtin/app-nodes/n8n-nodes-langchain.openai/file-operations/index.md",
|
|
@@ -41704,101 +41798,6 @@
|
|
|
41704
41798
|
]
|
|
41705
41799
|
}
|
|
41706
41800
|
},
|
|
41707
|
-
{
|
|
41708
|
-
"id": "page-0537",
|
|
41709
|
-
"title": "Image operations",
|
|
41710
|
-
"url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-langchain.openai/image-operations/index.md",
|
|
41711
|
-
"urlPath": "integrations/builtin/app-nodes/n8n-nodes-langchain.openai/image-operations/index.md",
|
|
41712
|
-
"category": "integrations",
|
|
41713
|
-
"subcategory": "app-nodes",
|
|
41714
|
-
"nodeName": null,
|
|
41715
|
-
"nodeType": null,
|
|
41716
|
-
"content": {
|
|
41717
|
-
"markdown": "# OpenAI Image operations\n\nUse this operation to analyze or generate an image in OpenAI. Refer to [OpenAI](../) for more information on the OpenAI node itself.\n\n## Analyze Image\n\nUse this operation to take in images and answer questions about them.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [OpenAI credential](../../../credentials/openai/).\n- **Resource**: Select **Image**.\n- **Operation**: Select **Analayze Image**.\n- **Model**: Select the model you want to use to analyze an image.\n- **Text Input**: Ask a question about the image.\n- **Input Type**: Select how you'd like to input the image. Options include:\n - **Image URL(s)**: Enter the **URL(s)** of the image(s) to analyze. Add multiple URLs in a comma-separated list.\n - **Binary File(s)**: Enter the name of the binary property which contains the image(s) in the **Input Data Field Name**.\n\n### Options\n\n- **Detail**: Specify the balance between response time versus token usage.\n- **Length of Description (Max Tokens)**: Defaults to 300. Fewer tokens will result in shorter, less detailed image description.\n\nRefer to [Images | OpenAI](https://platform.openai.com/docs/api-reference/images) documentation for more information.\n\n## Generate an Image\n\nUse this operation to create an image from a text prompt.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [OpenAI credential](../../../credentials/openai/).\n- **Resource**: Select **Image**.\n- **Operation**: Select **Generate an Image**.\n- **Model**: Select the model you want to use to generate an image.\n- **Prompt**: Enter the text description of the desired image(s). The maximum length is 1000 characters for `dall-e-2` and 4000 characters for `dall-e-3`.\n\n### Options\n\n- **Quality**: The quality of the image you generate. **HD** creates images with finer details and greater consistency across the image. This option is only supported for `dall-e-3`. Otherwise, choose **Standard**.\n- **Resolution**: Select the resolution of the generated images. Select **1024x1024** for `dall-e-2`. Select one of **1024x1024**, **1792x1024**, or **1024x1792** for `dall-e-3` models.\n- **Style**: Select the style of the generated images. This option is only supported for `dall-e-3`.\n - **Natural**: Use this to produce more natural looking images.\n - **Vivid**: Use this to produce hyper-real and dramatic images.\n- **Respond with image URL(s)**: Whether to return image URL(s) instead of binary file(s).\n- **Put Output in Field**: Defaults to `data`. Enter the name of the output field to put the binary file data in. Only available if **Respond with image URL(s)** is turned off.\n\nRefer to [Create image | OpenAI](https://platform.openai.com/docs/api-reference/images/create) documentation for more information.\n\n## Edit an Image\n\nUse this operation to edit an image from a text prompt.\n\nEnter these parameters:\n\n- **Credential to connect with**: Create or select an existing [OpenAI credential](../../../credentials/openai/).\n- **Resource**: Select **Image**.\n- **Operation**: Select **Edit Image**.\n- **Model**: Select the model you want to use to generate an image. Supports `dall-e-2` and `gpt-image-1`.\n- **Prompt**: Enter the text description of the desired edits to the input image(s).\n- **Image(s)**: Add one or more binary fields to include images with your prompt. Each image should be a png, webp, or jpg file less than 50MB. You can provide up to 16 images.\n- **Number of Images**: The number of images to generate. Must be between 1 and 10.\n- **Size**: The size and dimensions of the generated images (in px).\n- **Quality**: The quality of the image that will be generated (auto, low, medium, high, standard). Only supported for `gpt-image-1`.\n- **Output Format**: The format in which the generated images are returned (png, webp, or jpg). Only supported for gpt-image-1.\n- **Output Compression**: The compression level (0-100%) for the generated images. Only supported for `gpt-image-1` with webp or jpeg output formats.\n\n### Options\n\n- **Background**: Allows to set transparency for the background of the generated image(s). Only supported for `gpt-image-1`.\n- **Input Fidelity**: Control how much effort the model will exert to match the style and features of input images. Only supported for `gpt-image-1`.\n- **Image Mask**: Name of the binary property that contains the image. A second image whose fully transparent areas (for example, where alpha is zero) shows where the image should be edited. If there are multiple images provided, the mask will be applied on the first image. Must be a valid PNG file, less than 4MB, and have the same dimensions as image.\n- **User**: A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.\n\n## Common issues\n\nFor common errors or issues and suggested resolution steps, refer to [Common Issues](../common-issues/).\n",
|
|
41718
|
-
"excerpt": "# OpenAI Image operations Use this operation to analyze or generate an image in OpenAI. Refer to [OpenAI](../) for more information on the OpenAI node itself. ## Analyze Image Use this operation to take in images and answer questions about them. Enter these parameters: - **Credential to connect with**: Create or select an existing [OpenAI credential](../../../credentials/openai/). - **Resource**: Select **Image**. - **Operation**: Select **Analayze Image**. - **Model**: Select the model you...",
|
|
41719
|
-
"sections": [
|
|
41720
|
-
{
|
|
41721
|
-
"title": "OpenAI Image operations",
|
|
41722
|
-
"level": 1,
|
|
41723
|
-
"content": "Use this operation to analyze or generate an image in OpenAI. Refer to [OpenAI](../) for more information on the OpenAI node itself."
|
|
41724
|
-
}
|
|
41725
|
-
]
|
|
41726
|
-
},
|
|
41727
|
-
"metadata": {
|
|
41728
|
-
"keywords": [
|
|
41729
|
-
"image",
|
|
41730
|
-
"operations",
|
|
41731
|
-
"openai",
|
|
41732
|
-
"analyze",
|
|
41733
|
-
"options",
|
|
41734
|
-
"generate",
|
|
41735
|
-
"edit",
|
|
41736
|
-
"common",
|
|
41737
|
-
"issues"
|
|
41738
|
-
],
|
|
41739
|
-
"useCases": [],
|
|
41740
|
-
"operations": [],
|
|
41741
|
-
"codeExamples": 0,
|
|
41742
|
-
"complexity": "beginner",
|
|
41743
|
-
"readingTime": "4 min",
|
|
41744
|
-
"contentLength": 4915,
|
|
41745
|
-
"relatedPages": []
|
|
41746
|
-
},
|
|
41747
|
-
"searchIndex": {
|
|
41748
|
-
"fullText": "image operations # openai image operations\n\nuse this operation to analyze or generate an image in openai. refer to [openai](../) for more information on the openai node itself.\n\n## analyze image\n\nuse this operation to take in images and answer questions about them.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [openai credential](../../../credentials/openai/).\n- **resource**: select **image**.\n- **operation**: select **analayze image**.\n- **model**: select the model you want to use to analyze an image.\n- **text input**: ask a question about the image.\n- **input type**: select how you'd like to input the image. options include:\n - **image url(s)**: enter the **url(s)** of the image(s) to analyze. add multiple urls in a comma-separated list.\n - **binary file(s)**: enter the name of the binary property which contains the image(s) in the **input data field name**.\n\n### options\n\n- **detail**: specify the balance between response time versus token usage.\n- **length of description (max tokens)**: defaults to 300. fewer tokens will result in shorter, less detailed image description.\n\nrefer to [images | openai](https://platform.openai.com/docs/api-reference/images) documentation for more information.\n\n## generate an image\n\nuse this operation to create an image from a text prompt.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [openai credential](../../../credentials/openai/).\n- **resource**: select **image**.\n- **operation**: select **generate an image**.\n- **model**: select the model you want to use to generate an image.\n- **prompt**: enter the text description of the desired image(s). the maximum length is 1000 characters for `dall-e-2` and 4000 characters for `dall-e-3`.\n\n### options\n\n- **quality**: the quality of the image you generate. **hd** creates images with finer details and greater consistency across the image. this option is only supported for `dall-e-3`. otherwise, choose **standard**.\n- **resolution**: select the resolution of the generated images. select **1024x1024** for `dall-e-2`. select one of **1024x1024**, **1792x1024**, or **1024x1792** for `dall-e-3` models.\n- **style**: select the style of the generated images. this option is only supported for `dall-e-3`.\n - **natural**: use this to produce more natural looking images.\n - **vivid**: use this to produce hyper-real and dramatic images.\n- **respond with image url(s)**: whether to return image url(s) instead of binary file(s).\n- **put output in field**: defaults to `data`. enter the name of the output field to put the binary file data in. only available if **respond with image url(s)** is turned off.\n\nrefer to [create image | openai](https://platform.openai.com/docs/api-reference/images/create) documentation for more information.\n\n## edit an image\n\nuse this operation to edit an image from a text prompt.\n\nenter these parameters:\n\n- **credential to connect with**: create or select an existing [openai credential](../../../credentials/openai/).\n- **resource**: select **image**.\n- **operation**: select **edit image**.\n- **model**: select the model you want to use to generate an image. supports `dall-e-2` and `gpt-image-1`.\n- **prompt**: enter the text description of the desired edits to the input image(s).\n- **image(s)**: add one or more binary fields to include images with your prompt. each image should be a png, webp, or jpg file less than 50mb. you can provide up to 16 images.\n- **number of images**: the number of images to generate. must be between 1 and 10.\n- **size**: the size and dimensions of the generated images (in px).\n- **quality**: the quality of the image that will be generated (auto, low, medium, high, standard). only supported for `gpt-image-1`.\n- **output format**: the format in which the generated images are returned (png, webp, or jpg). only supported for gpt-image-1.\n- **output compression**: the compression level (0-100%) for the generated images. only supported for `gpt-image-1` with webp or jpeg output formats.\n\n### options\n\n- **background**: allows to set transparency for the background of the generated image(s). only supported for `gpt-image-1`.\n- **input fidelity**: control how much effort the model will exert to match the style and features of input images. only supported for `gpt-image-1`.\n- **image mask**: name of the binary property that contains the image. a second image whose fully transparent areas (for example, where alpha is zero) shows where the image should be edited. if there are multiple images provided, the mask will be applied on the first image. must be a valid png file, less than 4mb, and have the same dimensions as image.\n- **user**: a unique identifier representing your end-user, which can help openai to monitor and detect abuse.\n\n## common issues\n\nfor common errors or issues and suggested resolution steps, refer to [common issues](../common-issues/).\n openai image operations",
|
|
41749
|
-
"importantTerms": [
|
|
41750
|
-
"image",
|
|
41751
|
-
"images",
|
|
41752
|
-
"select",
|
|
41753
|
-
"openai",
|
|
41754
|
-
"this",
|
|
41755
|
-
"enter",
|
|
41756
|
-
"with",
|
|
41757
|
-
"only",
|
|
41758
|
-
"operation",
|
|
41759
|
-
"generate",
|
|
41760
|
-
"model",
|
|
41761
|
-
"input",
|
|
41762
|
-
"dall",
|
|
41763
|
-
"supported",
|
|
41764
|
-
"generated",
|
|
41765
|
-
"credential",
|
|
41766
|
-
"create",
|
|
41767
|
-
"binary",
|
|
41768
|
-
"more",
|
|
41769
|
-
"text",
|
|
41770
|
-
"file",
|
|
41771
|
-
"prompt",
|
|
41772
|
-
"output",
|
|
41773
|
-
"analyze",
|
|
41774
|
-
"refer",
|
|
41775
|
-
"options",
|
|
41776
|
-
"name",
|
|
41777
|
-
"description",
|
|
41778
|
-
"will",
|
|
41779
|
-
"quality",
|
|
41780
|
-
"common",
|
|
41781
|
-
"issues",
|
|
41782
|
-
"operations",
|
|
41783
|
-
"information",
|
|
41784
|
-
"these",
|
|
41785
|
-
"parameters",
|
|
41786
|
-
"connect",
|
|
41787
|
-
"existing",
|
|
41788
|
-
"credentials",
|
|
41789
|
-
"resource",
|
|
41790
|
-
"want",
|
|
41791
|
-
"which",
|
|
41792
|
-
"data",
|
|
41793
|
-
"field",
|
|
41794
|
-
"less",
|
|
41795
|
-
"resolution",
|
|
41796
|
-
"style",
|
|
41797
|
-
"edit",
|
|
41798
|
-
"webp"
|
|
41799
|
-
]
|
|
41800
|
-
}
|
|
41801
|
-
},
|
|
41802
41801
|
{
|
|
41803
41802
|
"id": "page-0538",
|
|
41804
41803
|
"title": "Text operations",
|
|
@@ -52413,6 +52412,89 @@
|
|
|
52413
52412
|
},
|
|
52414
52413
|
{
|
|
52415
52414
|
"id": "page-0664",
|
|
52415
|
+
"title": "GraphQL",
|
|
52416
|
+
"url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.graphql/index.md",
|
|
52417
|
+
"urlPath": "integrations/builtin/core-nodes/n8n-nodes-base.graphql/index.md",
|
|
52418
|
+
"category": "other",
|
|
52419
|
+
"subcategory": null,
|
|
52420
|
+
"nodeName": "graphql",
|
|
52421
|
+
"nodeType": "n8n-nodes-base.graphql",
|
|
52422
|
+
"content": {
|
|
52423
|
+
"markdown": "# GraphQL\n\n[GraphQL](https://graphql.org/) is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data. Use the GraphQL node to query a GraphQL endpoint.\n\n## Node parameters\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n### Authentication\n\nSelect the type of authentication to use.\n\nIf you select anything other than **None**, the **Credential for** parameter appears for you to select an existing or create a new authentication credential for that authentication type.\n\n### HTTP Request Method\n\nSelect the underlying HTTP Request method the node should use. Choose from:\n\n- **GET**\n- **POST**: If you select this method, you'll also need to select the **Request Format** the node should use for the query payload. Choose from:\n - **GraphQL (Raw)**\n - **JSON**\n\n### Endpoint\n\nEnter the GraphQL Endpoint you'd like to hit.\n\n### Ignore SSL Issues\n\nWhen you turn on this control, n8n ignores SSL certificate validation failure.\n\n### Query\n\nEnter the GraphQL query you want to execute.\n\nRefer to [Related Resources](#related-resources) for information on writing your query.\n\n### Response Format\n\nSelect the format you'd like to receive query results in. Choose between:\n\n- **JSON**\n- **String**: If you select this format, enter a **Response Data Property Name** to define the property the string is written to.\n\n## Headers\n\nEnter any **Headers** you want to pass as part of the query as **Name** / **Value** pairs.\n\n## Templates and examples\n\n**Get top 5 products on Product Hunt every hour**\n\nby Harshil Agrawal\n\n[View template details](https://n8n.io/workflows/1298-get-top-5-products-on-product-hunt-every-hour/)\n\n**API queries data from GraphQL**\n\nby Jan Oberhauser\n\n[View template details](https://n8n.io/workflows/216-api-queries-data-from-graphql/)\n\n**Bulk Create Shopify Products with Inventory Management from Google Sheets**\n\nby Richard Uren\n\n[View template details](https://n8n.io/workflows/5664-bulk-create-shopify-products-with-inventory-management-from-google-sheets/)\n\n[Browse GraphQL integration templates](https://n8n.io/integrations/graphql/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nTo use the GraphQL node, you need to understand GraphQL query language. GraphQL have their own [Introduction to GraphQL](https://graphql.org/learn/) tutorial.\n",
|
|
52424
|
+
"excerpt": "# GraphQL [GraphQL](https://graphql.org/) is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data. Use the GraphQL node to query a GraphQL endpoint. ## Node parameters This node can be used as an AI tool This node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../...",
|
|
52425
|
+
"sections": [
|
|
52426
|
+
{
|
|
52427
|
+
"title": "GraphQL",
|
|
52428
|
+
"level": 1,
|
|
52429
|
+
"content": "[GraphQL](https://graphql.org/) is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data. Use the GraphQL node to query a GraphQL endpoint."
|
|
52430
|
+
}
|
|
52431
|
+
]
|
|
52432
|
+
},
|
|
52433
|
+
"metadata": {
|
|
52434
|
+
"keywords": [
|
|
52435
|
+
"graphql",
|
|
52436
|
+
"node",
|
|
52437
|
+
"parameters",
|
|
52438
|
+
"authentication",
|
|
52439
|
+
"http",
|
|
52440
|
+
"request",
|
|
52441
|
+
"method",
|
|
52442
|
+
"endpoint",
|
|
52443
|
+
"ignore",
|
|
52444
|
+
"issues",
|
|
52445
|
+
"query",
|
|
52446
|
+
"response",
|
|
52447
|
+
"format",
|
|
52448
|
+
"headers",
|
|
52449
|
+
"templates",
|
|
52450
|
+
"examples",
|
|
52451
|
+
"related",
|
|
52452
|
+
"resources"
|
|
52453
|
+
],
|
|
52454
|
+
"useCases": [],
|
|
52455
|
+
"operations": [],
|
|
52456
|
+
"codeExamples": 0,
|
|
52457
|
+
"complexity": "intermediate",
|
|
52458
|
+
"readingTime": "2 min",
|
|
52459
|
+
"contentLength": 2637,
|
|
52460
|
+
"relatedPages": []
|
|
52461
|
+
},
|
|
52462
|
+
"searchIndex": {
|
|
52463
|
+
"fullText": "graphql # graphql\n\n[graphql](https://graphql.org/) is an open-source data query and manipulation language for apis, and a runtime for fulfilling queries with existing data. use the graphql node to query a graphql endpoint.\n\n## node parameters\n\nthis node can be used as an ai tool\n\nthis node can be used to enhance the capabilities of an ai agent. when used in this way, many parameters can be set automatically, or with information directed by ai - find out more in the [ai tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n### authentication\n\nselect the type of authentication to use.\n\nif you select anything other than **none**, the **credential for** parameter appears for you to select an existing or create a new authentication credential for that authentication type.\n\n### http request method\n\nselect the underlying http request method the node should use. choose from:\n\n- **get**\n- **post**: if you select this method, you'll also need to select the **request format** the node should use for the query payload. choose from:\n - **graphql (raw)**\n - **json**\n\n### endpoint\n\nenter the graphql endpoint you'd like to hit.\n\n### ignore ssl issues\n\nwhen you turn on this control, n8n ignores ssl certificate validation failure.\n\n### query\n\nenter the graphql query you want to execute.\n\nrefer to [related resources](#related-resources) for information on writing your query.\n\n### response format\n\nselect the format you'd like to receive query results in. choose between:\n\n- **json**\n- **string**: if you select this format, enter a **response data property name** to define the property the string is written to.\n\n## headers\n\nenter any **headers** you want to pass as part of the query as **name** / **value** pairs.\n\n## templates and examples\n\n**get top 5 products on product hunt every hour**\n\nby harshil agrawal\n\n[view template details](https://n8n.io/workflows/1298-get-top-5-products-on-product-hunt-every-hour/)\n\n**api queries data from graphql**\n\nby jan oberhauser\n\n[view template details](https://n8n.io/workflows/216-api-queries-data-from-graphql/)\n\n**bulk create shopify products with inventory management from google sheets**\n\nby richard uren\n\n[view template details](https://n8n.io/workflows/5664-bulk-create-shopify-products-with-inventory-management-from-google-sheets/)\n\n[browse graphql integration templates](https://n8n.io/integrations/graphql/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nto use the graphql node, you need to understand graphql query language. graphql have their own [introduction to graphql](https://graphql.org/learn/) tutorial.\n graphql",
|
|
52464
|
+
"importantTerms": [
|
|
52465
|
+
"graphql",
|
|
52466
|
+
"query",
|
|
52467
|
+
"select",
|
|
52468
|
+
"https",
|
|
52469
|
+
"node",
|
|
52470
|
+
"this",
|
|
52471
|
+
"from",
|
|
52472
|
+
"data",
|
|
52473
|
+
"with",
|
|
52474
|
+
"authentication",
|
|
52475
|
+
"format",
|
|
52476
|
+
"enter",
|
|
52477
|
+
"products",
|
|
52478
|
+
"workflows",
|
|
52479
|
+
"queries",
|
|
52480
|
+
"endpoint",
|
|
52481
|
+
"parameters",
|
|
52482
|
+
"used",
|
|
52483
|
+
"create",
|
|
52484
|
+
"request",
|
|
52485
|
+
"method",
|
|
52486
|
+
"choose",
|
|
52487
|
+
"related",
|
|
52488
|
+
"resources",
|
|
52489
|
+
"templates",
|
|
52490
|
+
"view",
|
|
52491
|
+
"template",
|
|
52492
|
+
"details"
|
|
52493
|
+
]
|
|
52494
|
+
}
|
|
52495
|
+
},
|
|
52496
|
+
{
|
|
52497
|
+
"id": "page-0665",
|
|
52416
52498
|
"title": "Git",
|
|
52417
52499
|
"url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.git/index.md",
|
|
52418
52500
|
"urlPath": "integrations/builtin/core-nodes/n8n-nodes-base.git/index.md",
|
|
@@ -52517,89 +52599,6 @@
|
|
|
52517
52599
|
]
|
|
52518
52600
|
}
|
|
52519
52601
|
},
|
|
52520
|
-
{
|
|
52521
|
-
"id": "page-0665",
|
|
52522
|
-
"title": "GraphQL",
|
|
52523
|
-
"url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.graphql/index.md",
|
|
52524
|
-
"urlPath": "integrations/builtin/core-nodes/n8n-nodes-base.graphql/index.md",
|
|
52525
|
-
"category": "other",
|
|
52526
|
-
"subcategory": null,
|
|
52527
|
-
"nodeName": "graphql",
|
|
52528
|
-
"nodeType": "n8n-nodes-base.graphql",
|
|
52529
|
-
"content": {
|
|
52530
|
-
"markdown": "# GraphQL\n\n[GraphQL](https://graphql.org/) is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data. Use the GraphQL node to query a GraphQL endpoint.\n\n## Node parameters\n\nThis node can be used as an AI tool\n\nThis node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n### Authentication\n\nSelect the type of authentication to use.\n\nIf you select anything other than **None**, the **Credential for** parameter appears for you to select an existing or create a new authentication credential for that authentication type.\n\n### HTTP Request Method\n\nSelect the underlying HTTP Request method the node should use. Choose from:\n\n- **GET**\n- **POST**: If you select this method, you'll also need to select the **Request Format** the node should use for the query payload. Choose from:\n - **GraphQL (Raw)**\n - **JSON**\n\n### Endpoint\n\nEnter the GraphQL Endpoint you'd like to hit.\n\n### Ignore SSL Issues\n\nWhen you turn on this control, n8n ignores SSL certificate validation failure.\n\n### Query\n\nEnter the GraphQL query you want to execute.\n\nRefer to [Related Resources](#related-resources) for information on writing your query.\n\n### Response Format\n\nSelect the format you'd like to receive query results in. Choose between:\n\n- **JSON**\n- **String**: If you select this format, enter a **Response Data Property Name** to define the property the string is written to.\n\n## Headers\n\nEnter any **Headers** you want to pass as part of the query as **Name** / **Value** pairs.\n\n## Templates and examples\n\n**Get top 5 products on Product Hunt every hour**\n\nby Harshil Agrawal\n\n[View template details](https://n8n.io/workflows/1298-get-top-5-products-on-product-hunt-every-hour/)\n\n**API queries data from GraphQL**\n\nby Jan Oberhauser\n\n[View template details](https://n8n.io/workflows/216-api-queries-data-from-graphql/)\n\n**Bulk Create Shopify Products with Inventory Management from Google Sheets**\n\nby Richard Uren\n\n[View template details](https://n8n.io/workflows/5664-bulk-create-shopify-products-with-inventory-management-from-google-sheets/)\n\n[Browse GraphQL integration templates](https://n8n.io/integrations/graphql/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nTo use the GraphQL node, you need to understand GraphQL query language. GraphQL have their own [Introduction to GraphQL](https://graphql.org/learn/) tutorial.\n",
|
|
52531
|
-
"excerpt": "# GraphQL [GraphQL](https://graphql.org/) is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data. Use the GraphQL node to query a GraphQL endpoint. ## Node parameters This node can be used as an AI tool This node can be used to enhance the capabilities of an AI agent. When used in this way, many parameters can be set automatically, or with information directed by AI - find out more in the [AI tool parameters documentation](../...",
|
|
52532
|
-
"sections": [
|
|
52533
|
-
{
|
|
52534
|
-
"title": "GraphQL",
|
|
52535
|
-
"level": 1,
|
|
52536
|
-
"content": "[GraphQL](https://graphql.org/) is an open-source data query and manipulation language for APIs, and a runtime for fulfilling queries with existing data. Use the GraphQL node to query a GraphQL endpoint."
|
|
52537
|
-
}
|
|
52538
|
-
]
|
|
52539
|
-
},
|
|
52540
|
-
"metadata": {
|
|
52541
|
-
"keywords": [
|
|
52542
|
-
"graphql",
|
|
52543
|
-
"node",
|
|
52544
|
-
"parameters",
|
|
52545
|
-
"authentication",
|
|
52546
|
-
"http",
|
|
52547
|
-
"request",
|
|
52548
|
-
"method",
|
|
52549
|
-
"endpoint",
|
|
52550
|
-
"ignore",
|
|
52551
|
-
"issues",
|
|
52552
|
-
"query",
|
|
52553
|
-
"response",
|
|
52554
|
-
"format",
|
|
52555
|
-
"headers",
|
|
52556
|
-
"templates",
|
|
52557
|
-
"examples",
|
|
52558
|
-
"related",
|
|
52559
|
-
"resources"
|
|
52560
|
-
],
|
|
52561
|
-
"useCases": [],
|
|
52562
|
-
"operations": [],
|
|
52563
|
-
"codeExamples": 0,
|
|
52564
|
-
"complexity": "intermediate",
|
|
52565
|
-
"readingTime": "2 min",
|
|
52566
|
-
"contentLength": 2637,
|
|
52567
|
-
"relatedPages": []
|
|
52568
|
-
},
|
|
52569
|
-
"searchIndex": {
|
|
52570
|
-
"fullText": "graphql # graphql\n\n[graphql](https://graphql.org/) is an open-source data query and manipulation language for apis, and a runtime for fulfilling queries with existing data. use the graphql node to query a graphql endpoint.\n\n## node parameters\n\nthis node can be used as an ai tool\n\nthis node can be used to enhance the capabilities of an ai agent. when used in this way, many parameters can be set automatically, or with information directed by ai - find out more in the [ai tool parameters documentation](../../../../advanced-ai/examples/using-the-fromai-function/).\n\n### authentication\n\nselect the type of authentication to use.\n\nif you select anything other than **none**, the **credential for** parameter appears for you to select an existing or create a new authentication credential for that authentication type.\n\n### http request method\n\nselect the underlying http request method the node should use. choose from:\n\n- **get**\n- **post**: if you select this method, you'll also need to select the **request format** the node should use for the query payload. choose from:\n - **graphql (raw)**\n - **json**\n\n### endpoint\n\nenter the graphql endpoint you'd like to hit.\n\n### ignore ssl issues\n\nwhen you turn on this control, n8n ignores ssl certificate validation failure.\n\n### query\n\nenter the graphql query you want to execute.\n\nrefer to [related resources](#related-resources) for information on writing your query.\n\n### response format\n\nselect the format you'd like to receive query results in. choose between:\n\n- **json**\n- **string**: if you select this format, enter a **response data property name** to define the property the string is written to.\n\n## headers\n\nenter any **headers** you want to pass as part of the query as **name** / **value** pairs.\n\n## templates and examples\n\n**get top 5 products on product hunt every hour**\n\nby harshil agrawal\n\n[view template details](https://n8n.io/workflows/1298-get-top-5-products-on-product-hunt-every-hour/)\n\n**api queries data from graphql**\n\nby jan oberhauser\n\n[view template details](https://n8n.io/workflows/216-api-queries-data-from-graphql/)\n\n**bulk create shopify products with inventory management from google sheets**\n\nby richard uren\n\n[view template details](https://n8n.io/workflows/5664-bulk-create-shopify-products-with-inventory-management-from-google-sheets/)\n\n[browse graphql integration templates](https://n8n.io/integrations/graphql/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nto use the graphql node, you need to understand graphql query language. graphql have their own [introduction to graphql](https://graphql.org/learn/) tutorial.\n graphql",
|
|
52571
|
-
"importantTerms": [
|
|
52572
|
-
"graphql",
|
|
52573
|
-
"query",
|
|
52574
|
-
"select",
|
|
52575
|
-
"https",
|
|
52576
|
-
"node",
|
|
52577
|
-
"this",
|
|
52578
|
-
"from",
|
|
52579
|
-
"data",
|
|
52580
|
-
"with",
|
|
52581
|
-
"authentication",
|
|
52582
|
-
"format",
|
|
52583
|
-
"enter",
|
|
52584
|
-
"products",
|
|
52585
|
-
"workflows",
|
|
52586
|
-
"queries",
|
|
52587
|
-
"endpoint",
|
|
52588
|
-
"parameters",
|
|
52589
|
-
"used",
|
|
52590
|
-
"create",
|
|
52591
|
-
"request",
|
|
52592
|
-
"method",
|
|
52593
|
-
"choose",
|
|
52594
|
-
"related",
|
|
52595
|
-
"resources",
|
|
52596
|
-
"templates",
|
|
52597
|
-
"view",
|
|
52598
|
-
"template",
|
|
52599
|
-
"details"
|
|
52600
|
-
]
|
|
52601
|
-
}
|
|
52602
|
-
},
|
|
52603
52602
|
{
|
|
52604
52603
|
"id": "page-0666",
|
|
52605
52604
|
"title": "HTML",
|
|
@@ -59971,19 +59970,19 @@
|
|
|
59971
59970
|
},
|
|
59972
59971
|
{
|
|
59973
59972
|
"id": "page-0758",
|
|
59974
|
-
"title": "Cisco
|
|
59975
|
-
"url": "https://docs.n8n.io/integrations/builtin/credentials/
|
|
59976
|
-
"urlPath": "integrations/builtin/credentials/
|
|
59973
|
+
"title": "Cisco Secure Endpoint credentials",
|
|
59974
|
+
"url": "https://docs.n8n.io/integrations/builtin/credentials/ciscosecureendpoint/index.md",
|
|
59975
|
+
"urlPath": "integrations/builtin/credentials/ciscosecureendpoint/index.md",
|
|
59977
59976
|
"category": "other",
|
|
59978
59977
|
"subcategory": null,
|
|
59979
59978
|
"nodeName": null,
|
|
59980
59979
|
"nodeType": null,
|
|
59981
59980
|
"content": {
|
|
59982
|
-
"markdown": "# Cisco
|
|
59983
|
-
"excerpt": "# Cisco
|
|
59981
|
+
"markdown": "# Cisco Secure Endpoint credentials\n\nYou can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/).\n\n## Prerequisites\n\n- Create a [Cisco DevNet developer account](https://developer.cisco.com).\n- Access to a [Cisco Secure Endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html).\n\n## Authentication methods\n\n- OAuth2\n\n## Related resources\n\nRefer to [Cisco Secure Endpoint's documentation](https://developer.cisco.com/docs/secure-endpoint/introduction/) for more information about the service.\n\nThis is a credential-only node. Refer to [Custom API operations](../../../custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/cisco-secure-endpoint/) on n8n's website.\n\n## Using OAuth2\n\nTo configure this credential, you'll need:\n\n- The **Region** for your Cisco Secure Endpoint. Options are:\n - Asia Pacific, Japan, and China\n - Europe\n - North America\n- A **Client ID**: Provided when you register a SecureX API Client\n- A **Client Secret**: Provided when you register a SecureX API Client\n\nTo get a Client ID and Client Secret, you'll need to Register a SecureX API Client. Refer to [Cisco Secure Endpoint's authentication documentation](https://developer.cisco.com/docs/secure-endpoint/authentication/#authentication) for detailed instructions. Use the SecureX **Client Password** as the **Client Secret** within the n8n credential.\n",
|
|
59982
|
+
"excerpt": "# Cisco Secure Endpoint credentials You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/). ## Prerequisites - Create a [Cisco DevNet developer account](https://developer.cisco.com). - Access to a [Cisco Secure Endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html). ## Authentication methods - OAuth2 ##...",
|
|
59984
59983
|
"sections": [
|
|
59985
59984
|
{
|
|
59986
|
-
"title": "Cisco
|
|
59985
|
+
"title": "Cisco Secure Endpoint credentials",
|
|
59987
59986
|
"level": 1,
|
|
59988
59987
|
"content": "You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/)."
|
|
59989
59988
|
}
|
|
@@ -59992,53 +59991,62 @@
|
|
|
59992
59991
|
"metadata": {
|
|
59993
59992
|
"keywords": [
|
|
59994
59993
|
"cisco",
|
|
59995
|
-
"
|
|
59994
|
+
"secure",
|
|
59995
|
+
"endpoint",
|
|
59996
59996
|
"credentials",
|
|
59997
59997
|
"prerequisites",
|
|
59998
59998
|
"authentication",
|
|
59999
59999
|
"methods",
|
|
60000
60000
|
"related",
|
|
60001
60001
|
"resources",
|
|
60002
|
-
"using"
|
|
60002
|
+
"using",
|
|
60003
|
+
"oauth2"
|
|
60003
60004
|
],
|
|
60004
60005
|
"useCases": [],
|
|
60005
60006
|
"operations": [],
|
|
60006
60007
|
"codeExamples": 0,
|
|
60007
60008
|
"complexity": "beginner",
|
|
60008
60009
|
"readingTime": "1 min",
|
|
60009
|
-
"contentLength":
|
|
60010
|
+
"contentLength": 1568,
|
|
60010
60011
|
"relatedPages": []
|
|
60011
60012
|
},
|
|
60012
60013
|
"searchIndex": {
|
|
60013
|
-
"fullText": "cisco
|
|
60014
|
+
"fullText": "cisco secure endpoint credentials # cisco secure endpoint credentials\n\nyou can use these credentials to authenticate when using the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [custom api call](../../../custom-operations/).\n\n## prerequisites\n\n- create a [cisco devnet developer account](https://developer.cisco.com).\n- access to a [cisco secure endpoint license](https://www.cisco.com/site/us/en/products/security/endpoint-security/secure-endpoint/index.html).\n\n## authentication methods\n\n- oauth2\n\n## related resources\n\nrefer to [cisco secure endpoint's documentation](https://developer.cisco.com/docs/secure-endpoint/introduction/) for more information about the service.\n\nthis is a credential-only node. refer to [custom api operations](../../../custom-operations/) to learn more. view [example workflows and related content](https://n8n.io/integrations/cisco-secure-endpoint/) on n8n's website.\n\n## using oauth2\n\nto configure this credential, you'll need:\n\n- the **region** for your cisco secure endpoint. options are:\n - asia pacific, japan, and china\n - europe\n - north america\n- a **client id**: provided when you register a securex api client\n- a **client secret**: provided when you register a securex api client\n\nto get a client id and client secret, you'll need to register a securex api client. refer to [cisco secure endpoint's authentication documentation](https://developer.cisco.com/docs/secure-endpoint/authentication/#authentication) for detailed instructions. use the securex **client password** as the **client secret** within the n8n credential.\n cisco secure endpoint credentials",
|
|
60014
60015
|
"importantTerms": [
|
|
60015
60016
|
"cisco",
|
|
60016
|
-
"
|
|
60017
|
+
"endpoint",
|
|
60018
|
+
"secure",
|
|
60019
|
+
"client",
|
|
60017
60020
|
"https",
|
|
60018
60021
|
"credentials",
|
|
60019
60022
|
"custom",
|
|
60020
60023
|
"developer",
|
|
60024
|
+
"authentication",
|
|
60025
|
+
"securex",
|
|
60026
|
+
"when",
|
|
60021
60027
|
"operations",
|
|
60022
60028
|
"refer",
|
|
60023
|
-
"
|
|
60029
|
+
"credential",
|
|
60030
|
+
"register",
|
|
60031
|
+
"secret"
|
|
60024
60032
|
]
|
|
60025
60033
|
}
|
|
60026
60034
|
},
|
|
60027
60035
|
{
|
|
60028
60036
|
"id": "page-0759",
|
|
60029
|
-
"title": "Cisco
|
|
60030
|
-
"url": "https://docs.n8n.io/integrations/builtin/credentials/
|
|
60031
|
-
"urlPath": "integrations/builtin/credentials/
|
|
60037
|
+
"title": "Cisco Meraki credentials",
|
|
60038
|
+
"url": "https://docs.n8n.io/integrations/builtin/credentials/ciscomeraki/index.md",
|
|
60039
|
+
"urlPath": "integrations/builtin/credentials/ciscomeraki/index.md",
|
|
60032
60040
|
"category": "other",
|
|
60033
60041
|
"subcategory": null,
|
|
60034
60042
|
"nodeName": null,
|
|
60035
60043
|
"nodeType": null,
|
|
60036
60044
|
"content": {
|
|
60037
|
-
"markdown": "# Cisco
|
|
60038
|
-
"excerpt": "# Cisco
|
|
60045
|
+
"markdown": "# Cisco Meraki credentials\n\nYou can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/).\n\n## Prerequisites\n\n- Create a [Cisco DevNet developer account](https://developer.cisco.com).\n- Access to a [Cisco Meraki account](https://meraki.cisco.com/).\n\n## Authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Cisco Meraki's API documentation](https://developer.cisco.com/meraki/api-v1/introduction/) for more information about the service.\n\nThis is a credential-only node. Refer to [Custom API operations](../../../custom-operations/) to learn more. View [example workflows and related content](https://n8n.io/integrations/cisco-meraki/) on n8n's website.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Refer to the [Cisco Meraki Obtaining your Meraki API Key documentation](https://developer.cisco.com/meraki/api-v1/authorization/#obtaining-your-meraki-api-key) for instructions on getting your API Key.\n",
|
|
60046
|
+
"excerpt": "# Cisco Meraki credentials You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/). ## Prerequisites - Create a [Cisco DevNet developer account](https://developer.cisco.com). - Access to a [Cisco Meraki account](https://meraki.cisco.com/). ## Authentication methods - API key ## Related resources Refer to [Cisco Meraki's API documentation](https://developer.cisco....",
|
|
60039
60047
|
"sections": [
|
|
60040
60048
|
{
|
|
60041
|
-
"title": "Cisco
|
|
60049
|
+
"title": "Cisco Meraki credentials",
|
|
60042
60050
|
"level": 1,
|
|
60043
60051
|
"content": "You can use these credentials to authenticate when using the [HTTP Request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [Custom API call](../../../custom-operations/)."
|
|
60044
60052
|
}
|
|
@@ -60047,44 +60055,35 @@
|
|
|
60047
60055
|
"metadata": {
|
|
60048
60056
|
"keywords": [
|
|
60049
60057
|
"cisco",
|
|
60050
|
-
"
|
|
60051
|
-
"endpoint",
|
|
60058
|
+
"meraki",
|
|
60052
60059
|
"credentials",
|
|
60053
60060
|
"prerequisites",
|
|
60054
60061
|
"authentication",
|
|
60055
60062
|
"methods",
|
|
60056
60063
|
"related",
|
|
60057
60064
|
"resources",
|
|
60058
|
-
"using"
|
|
60059
|
-
"oauth2"
|
|
60065
|
+
"using"
|
|
60060
60066
|
],
|
|
60061
60067
|
"useCases": [],
|
|
60062
60068
|
"operations": [],
|
|
60063
60069
|
"codeExamples": 0,
|
|
60064
60070
|
"complexity": "beginner",
|
|
60065
60071
|
"readingTime": "1 min",
|
|
60066
|
-
"contentLength":
|
|
60072
|
+
"contentLength": 1072,
|
|
60067
60073
|
"relatedPages": []
|
|
60068
60074
|
},
|
|
60069
60075
|
"searchIndex": {
|
|
60070
|
-
"fullText": "cisco
|
|
60076
|
+
"fullText": "cisco meraki credentials # cisco meraki credentials\n\nyou can use these credentials to authenticate when using the [http request node](../../core-nodes/n8n-nodes-base.httprequest/) to make a [custom api call](../../../custom-operations/).\n\n## prerequisites\n\n- create a [cisco devnet developer account](https://developer.cisco.com).\n- access to a [cisco meraki account](https://meraki.cisco.com/).\n\n## authentication methods\n\n- api key\n\n## related resources\n\nrefer to [cisco meraki's api documentation](https://developer.cisco.com/meraki/api-v1/introduction/) for more information about the service.\n\nthis is a credential-only node. refer to [custom api operations](../../../custom-operations/) to learn more. view [example workflows and related content](https://n8n.io/integrations/cisco-meraki/) on n8n's website.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: refer to the [cisco meraki obtaining your meraki api key documentation](https://developer.cisco.com/meraki/api-v1/authorization/#obtaining-your-meraki-api-key) for instructions on getting your api key.\n cisco meraki credentials",
|
|
60071
60077
|
"importantTerms": [
|
|
60072
60078
|
"cisco",
|
|
60073
|
-
"
|
|
60074
|
-
"secure",
|
|
60075
|
-
"client",
|
|
60079
|
+
"meraki",
|
|
60076
60080
|
"https",
|
|
60077
60081
|
"credentials",
|
|
60078
60082
|
"custom",
|
|
60079
60083
|
"developer",
|
|
60080
|
-
"authentication",
|
|
60081
|
-
"securex",
|
|
60082
|
-
"when",
|
|
60083
60084
|
"operations",
|
|
60084
60085
|
"refer",
|
|
60085
|
-
"
|
|
60086
|
-
"register",
|
|
60087
|
-
"secret"
|
|
60086
|
+
"your"
|
|
60088
60087
|
]
|
|
60089
60088
|
}
|
|
60090
60089
|
},
|
|
@@ -60204,56 +60203,6 @@
|
|
|
60204
60203
|
},
|
|
60205
60204
|
{
|
|
60206
60205
|
"id": "page-0762",
|
|
60207
|
-
"title": "Clearbit credentials",
|
|
60208
|
-
"url": "https://docs.n8n.io/integrations/builtin/credentials/clearbit/index.md",
|
|
60209
|
-
"urlPath": "integrations/builtin/credentials/clearbit/index.md",
|
|
60210
|
-
"category": "other",
|
|
60211
|
-
"subcategory": null,
|
|
60212
|
-
"nodeName": null,
|
|
60213
|
-
"nodeType": null,
|
|
60214
|
-
"content": {
|
|
60215
|
-
"markdown": "# Clearbit credentials\n\nYou can use these credentials to authenticate the following node:\n\n- [Clearbit](../../app-nodes/n8n-nodes-base.clearbit/)\n\n## Prerequisites\n\nCreate a [Clearbit](https://www.clearbit.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Clearbit's API documentation](https://dashboard.clearbit.com/docs) for more information about authenticating with the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Refer to [Clearbit's API Authentication documentation](https://dashboard.clearbit.com/docs#authentication) for more information on creating and viewing API keys.\n",
|
|
60216
|
-
"excerpt": "# Clearbit credentials You can use these credentials to authenticate the following node: - [Clearbit](../../app-nodes/n8n-nodes-base.clearbit/) ## Prerequisites Create a [Clearbit](https://www.clearbit.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Clearbit's API documentation](https://dashboard.clearbit.com/docs) for more information about authenticating with the service. ## Using API key To configure this credential, you'll need: - An **A...",
|
|
60217
|
-
"sections": [
|
|
60218
|
-
{
|
|
60219
|
-
"title": "Clearbit credentials",
|
|
60220
|
-
"level": 1,
|
|
60221
|
-
"content": "You can use these credentials to authenticate the following node:\n\n- [Clearbit](../../app-nodes/n8n-nodes-base.clearbit/)"
|
|
60222
|
-
}
|
|
60223
|
-
]
|
|
60224
|
-
},
|
|
60225
|
-
"metadata": {
|
|
60226
|
-
"keywords": [
|
|
60227
|
-
"clearbit",
|
|
60228
|
-
"credentials",
|
|
60229
|
-
"prerequisites",
|
|
60230
|
-
"supported",
|
|
60231
|
-
"authentication",
|
|
60232
|
-
"methods",
|
|
60233
|
-
"related",
|
|
60234
|
-
"resources",
|
|
60235
|
-
"using"
|
|
60236
|
-
],
|
|
60237
|
-
"useCases": [],
|
|
60238
|
-
"operations": [],
|
|
60239
|
-
"codeExamples": 0,
|
|
60240
|
-
"complexity": "beginner",
|
|
60241
|
-
"readingTime": "1 min",
|
|
60242
|
-
"contentLength": 672,
|
|
60243
|
-
"relatedPages": []
|
|
60244
|
-
},
|
|
60245
|
-
"searchIndex": {
|
|
60246
|
-
"fullText": "clearbit credentials # clearbit credentials\n\nyou can use these credentials to authenticate the following node:\n\n- [clearbit](../../app-nodes/n8n-nodes-base.clearbit/)\n\n## prerequisites\n\ncreate a [clearbit](https://www.clearbit.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [clearbit's api documentation](https://dashboard.clearbit.com/docs) for more information about authenticating with the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: refer to [clearbit's api authentication documentation](https://dashboard.clearbit.com/docs#authentication) for more information on creating and viewing api keys.\n clearbit credentials",
|
|
60247
|
-
"importantTerms": [
|
|
60248
|
-
"clearbit",
|
|
60249
|
-
"credentials",
|
|
60250
|
-
"https",
|
|
60251
|
-
"authentication"
|
|
60252
|
-
]
|
|
60253
|
-
}
|
|
60254
|
-
},
|
|
60255
|
-
{
|
|
60256
|
-
"id": "page-0763",
|
|
60257
60206
|
"title": "ClickUp credentials",
|
|
60258
60207
|
"url": "https://docs.n8n.io/integrations/builtin/credentials/clickup/index.md",
|
|
60259
60208
|
"urlPath": "integrations/builtin/credentials/clickup/index.md",
|
|
@@ -60324,6 +60273,56 @@
|
|
|
60324
60273
|
]
|
|
60325
60274
|
}
|
|
60326
60275
|
},
|
|
60276
|
+
{
|
|
60277
|
+
"id": "page-0763",
|
|
60278
|
+
"title": "Clearbit credentials",
|
|
60279
|
+
"url": "https://docs.n8n.io/integrations/builtin/credentials/clearbit/index.md",
|
|
60280
|
+
"urlPath": "integrations/builtin/credentials/clearbit/index.md",
|
|
60281
|
+
"category": "other",
|
|
60282
|
+
"subcategory": null,
|
|
60283
|
+
"nodeName": null,
|
|
60284
|
+
"nodeType": null,
|
|
60285
|
+
"content": {
|
|
60286
|
+
"markdown": "# Clearbit credentials\n\nYou can use these credentials to authenticate the following node:\n\n- [Clearbit](../../app-nodes/n8n-nodes-base.clearbit/)\n\n## Prerequisites\n\nCreate a [Clearbit](https://www.clearbit.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Clearbit's API documentation](https://dashboard.clearbit.com/docs) for more information about authenticating with the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Refer to [Clearbit's API Authentication documentation](https://dashboard.clearbit.com/docs#authentication) for more information on creating and viewing API keys.\n",
|
|
60287
|
+
"excerpt": "# Clearbit credentials You can use these credentials to authenticate the following node: - [Clearbit](../../app-nodes/n8n-nodes-base.clearbit/) ## Prerequisites Create a [Clearbit](https://www.clearbit.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Clearbit's API documentation](https://dashboard.clearbit.com/docs) for more information about authenticating with the service. ## Using API key To configure this credential, you'll need: - An **A...",
|
|
60288
|
+
"sections": [
|
|
60289
|
+
{
|
|
60290
|
+
"title": "Clearbit credentials",
|
|
60291
|
+
"level": 1,
|
|
60292
|
+
"content": "You can use these credentials to authenticate the following node:\n\n- [Clearbit](../../app-nodes/n8n-nodes-base.clearbit/)"
|
|
60293
|
+
}
|
|
60294
|
+
]
|
|
60295
|
+
},
|
|
60296
|
+
"metadata": {
|
|
60297
|
+
"keywords": [
|
|
60298
|
+
"clearbit",
|
|
60299
|
+
"credentials",
|
|
60300
|
+
"prerequisites",
|
|
60301
|
+
"supported",
|
|
60302
|
+
"authentication",
|
|
60303
|
+
"methods",
|
|
60304
|
+
"related",
|
|
60305
|
+
"resources",
|
|
60306
|
+
"using"
|
|
60307
|
+
],
|
|
60308
|
+
"useCases": [],
|
|
60309
|
+
"operations": [],
|
|
60310
|
+
"codeExamples": 0,
|
|
60311
|
+
"complexity": "beginner",
|
|
60312
|
+
"readingTime": "1 min",
|
|
60313
|
+
"contentLength": 672,
|
|
60314
|
+
"relatedPages": []
|
|
60315
|
+
},
|
|
60316
|
+
"searchIndex": {
|
|
60317
|
+
"fullText": "clearbit credentials # clearbit credentials\n\nyou can use these credentials to authenticate the following node:\n\n- [clearbit](../../app-nodes/n8n-nodes-base.clearbit/)\n\n## prerequisites\n\ncreate a [clearbit](https://www.clearbit.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [clearbit's api documentation](https://dashboard.clearbit.com/docs) for more information about authenticating with the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: refer to [clearbit's api authentication documentation](https://dashboard.clearbit.com/docs#authentication) for more information on creating and viewing api keys.\n clearbit credentials",
|
|
60318
|
+
"importantTerms": [
|
|
60319
|
+
"clearbit",
|
|
60320
|
+
"credentials",
|
|
60321
|
+
"https",
|
|
60322
|
+
"authentication"
|
|
60323
|
+
]
|
|
60324
|
+
}
|
|
60325
|
+
},
|
|
60327
60326
|
{
|
|
60328
60327
|
"id": "page-0764",
|
|
60329
60328
|
"title": "Clockify credentials",
|
|
@@ -68996,6 +68995,68 @@
|
|
|
68996
68995
|
},
|
|
68997
68996
|
{
|
|
68998
68997
|
"id": "page-0900",
|
|
68998
|
+
"title": "Okta credentials",
|
|
68999
|
+
"url": "https://docs.n8n.io/integrations/builtin/credentials/okta/index.md",
|
|
69000
|
+
"urlPath": "integrations/builtin/credentials/okta/index.md",
|
|
69001
|
+
"category": "other",
|
|
69002
|
+
"subcategory": null,
|
|
69003
|
+
"nodeName": null,
|
|
69004
|
+
"nodeType": null,
|
|
69005
|
+
"content": {
|
|
69006
|
+
"markdown": "# Okta credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Okta](../../app-nodes/n8n-nodes-base.okta/)\n\n## Prerequisites\n\nCreate an [Okta free trial](https://www.okta.com/free-trial/) or create an admin account on an existing Okta org.\n\n## Supported authentication methods\n\n- SSWS API Access token\n\n## Related resources\n\nRefer to [Okta's documentation](https://developer.okta.com/docs/reference/) for more information about the service.\n\n## Using SSWS API access token\n\nTo configure this credential, you'll need:\n\n- The **URL**: The base URL of your Okta org, also referred to as your unique subdomain. There are two quick ways to access it:\n 1. In the Admin Console, select your **Profile**, hover over the domain listed below your username, and select the **Copy** icon. Paste this into n8n, but be sure to add `https://` before it.\n 1. Copy the base URL of your Admin Console URL, for example `https://dev-123456-admin.okta.com`. Paste it into n8n and remove `-admin`, for example: `https://dev-123456.okta.com`.\n- An **SSWS Access Token**: Create a token by going to **Security > API > Tokens > Create token**. Refer to [Create Okta API tokens](https://help.okta.com/en-us/content/topics/security/api.htm?cshid=ext-create-api-token#create-okta-api-token) for more information.\n",
|
|
69007
|
+
"excerpt": "# Okta credentials You can use these credentials to authenticate the following nodes: - [Okta](../../app-nodes/n8n-nodes-base.okta/) ## Prerequisites Create an [Okta free trial](https://www.okta.com/free-trial/) or create an admin account on an existing Okta org. ## Supported authentication methods - SSWS API Access token ## Related resources Refer to [Okta's documentation](https://developer.okta.com/docs/reference/) for more information about the service. ## Using SSWS API access token...",
|
|
69008
|
+
"sections": [
|
|
69009
|
+
{
|
|
69010
|
+
"title": "Okta credentials",
|
|
69011
|
+
"level": 1,
|
|
69012
|
+
"content": "You can use these credentials to authenticate the following nodes:\n\n- [Okta](../../app-nodes/n8n-nodes-base.okta/)"
|
|
69013
|
+
}
|
|
69014
|
+
]
|
|
69015
|
+
},
|
|
69016
|
+
"metadata": {
|
|
69017
|
+
"keywords": [
|
|
69018
|
+
"okta",
|
|
69019
|
+
"credentials",
|
|
69020
|
+
"prerequisites",
|
|
69021
|
+
"supported",
|
|
69022
|
+
"authentication",
|
|
69023
|
+
"methods",
|
|
69024
|
+
"related",
|
|
69025
|
+
"resources",
|
|
69026
|
+
"using",
|
|
69027
|
+
"ssws",
|
|
69028
|
+
"access",
|
|
69029
|
+
"token"
|
|
69030
|
+
],
|
|
69031
|
+
"useCases": [
|
|
69032
|
+
"`https://dev-123456.okta.com`."
|
|
69033
|
+
],
|
|
69034
|
+
"operations": [],
|
|
69035
|
+
"codeExamples": 0,
|
|
69036
|
+
"complexity": "beginner",
|
|
69037
|
+
"readingTime": "1 min",
|
|
69038
|
+
"contentLength": 1315,
|
|
69039
|
+
"relatedPages": []
|
|
69040
|
+
},
|
|
69041
|
+
"searchIndex": {
|
|
69042
|
+
"fullText": "okta credentials # okta credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [okta](../../app-nodes/n8n-nodes-base.okta/)\n\n## prerequisites\n\ncreate an [okta free trial](https://www.okta.com/free-trial/) or create an admin account on an existing okta org.\n\n## supported authentication methods\n\n- ssws api access token\n\n## related resources\n\nrefer to [okta's documentation](https://developer.okta.com/docs/reference/) for more information about the service.\n\n## using ssws api access token\n\nto configure this credential, you'll need:\n\n- the **url**: the base url of your okta org, also referred to as your unique subdomain. there are two quick ways to access it:\n 1. in the admin console, select your **profile**, hover over the domain listed below your username, and select the **copy** icon. paste this into n8n, but be sure to add `https://` before it.\n 1. copy the base url of your admin console url, for example `https://dev-123456-admin.okta.com`. paste it into n8n and remove `-admin`, for example: `https://dev-123456.okta.com`.\n- an **ssws access token**: create a token by going to **security > api > tokens > create token**. refer to [create okta api tokens](https://help.okta.com/en-us/content/topics/security/api.htm?cshid=ext-create-api-token#create-okta-api-token) for more information.\n okta credentials",
|
|
69043
|
+
"importantTerms": [
|
|
69044
|
+
"okta",
|
|
69045
|
+
"create",
|
|
69046
|
+
"token",
|
|
69047
|
+
"https",
|
|
69048
|
+
"admin",
|
|
69049
|
+
"your",
|
|
69050
|
+
"credentials",
|
|
69051
|
+
"access",
|
|
69052
|
+
"nodes",
|
|
69053
|
+
"base",
|
|
69054
|
+
"ssws"
|
|
69055
|
+
]
|
|
69056
|
+
}
|
|
69057
|
+
},
|
|
69058
|
+
{
|
|
69059
|
+
"id": "page-0901",
|
|
68999
69060
|
"title": "Odoo credentials",
|
|
69000
69061
|
"url": "https://docs.n8n.io/integrations/builtin/credentials/odoo/index.md",
|
|
69001
69062
|
"urlPath": "integrations/builtin/credentials/odoo/index.md",
|
|
@@ -69068,68 +69129,6 @@
|
|
|
69068
69129
|
]
|
|
69069
69130
|
}
|
|
69070
69131
|
},
|
|
69071
|
-
{
|
|
69072
|
-
"id": "page-0901",
|
|
69073
|
-
"title": "Okta credentials",
|
|
69074
|
-
"url": "https://docs.n8n.io/integrations/builtin/credentials/okta/index.md",
|
|
69075
|
-
"urlPath": "integrations/builtin/credentials/okta/index.md",
|
|
69076
|
-
"category": "other",
|
|
69077
|
-
"subcategory": null,
|
|
69078
|
-
"nodeName": null,
|
|
69079
|
-
"nodeType": null,
|
|
69080
|
-
"content": {
|
|
69081
|
-
"markdown": "# Okta credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Okta](../../app-nodes/n8n-nodes-base.okta/)\n\n## Prerequisites\n\nCreate an [Okta free trial](https://www.okta.com/free-trial/) or create an admin account on an existing Okta org.\n\n## Supported authentication methods\n\n- SSWS API Access token\n\n## Related resources\n\nRefer to [Okta's documentation](https://developer.okta.com/docs/reference/) for more information about the service.\n\n## Using SSWS API access token\n\nTo configure this credential, you'll need:\n\n- The **URL**: The base URL of your Okta org, also referred to as your unique subdomain. There are two quick ways to access it:\n 1. In the Admin Console, select your **Profile**, hover over the domain listed below your username, and select the **Copy** icon. Paste this into n8n, but be sure to add `https://` before it.\n 1. Copy the base URL of your Admin Console URL, for example `https://dev-123456-admin.okta.com`. Paste it into n8n and remove `-admin`, for example: `https://dev-123456.okta.com`.\n- An **SSWS Access Token**: Create a token by going to **Security > API > Tokens > Create token**. Refer to [Create Okta API tokens](https://help.okta.com/en-us/content/topics/security/api.htm?cshid=ext-create-api-token#create-okta-api-token) for more information.\n",
|
|
69082
|
-
"excerpt": "# Okta credentials You can use these credentials to authenticate the following nodes: - [Okta](../../app-nodes/n8n-nodes-base.okta/) ## Prerequisites Create an [Okta free trial](https://www.okta.com/free-trial/) or create an admin account on an existing Okta org. ## Supported authentication methods - SSWS API Access token ## Related resources Refer to [Okta's documentation](https://developer.okta.com/docs/reference/) for more information about the service. ## Using SSWS API access token...",
|
|
69083
|
-
"sections": [
|
|
69084
|
-
{
|
|
69085
|
-
"title": "Okta credentials",
|
|
69086
|
-
"level": 1,
|
|
69087
|
-
"content": "You can use these credentials to authenticate the following nodes:\n\n- [Okta](../../app-nodes/n8n-nodes-base.okta/)"
|
|
69088
|
-
}
|
|
69089
|
-
]
|
|
69090
|
-
},
|
|
69091
|
-
"metadata": {
|
|
69092
|
-
"keywords": [
|
|
69093
|
-
"okta",
|
|
69094
|
-
"credentials",
|
|
69095
|
-
"prerequisites",
|
|
69096
|
-
"supported",
|
|
69097
|
-
"authentication",
|
|
69098
|
-
"methods",
|
|
69099
|
-
"related",
|
|
69100
|
-
"resources",
|
|
69101
|
-
"using",
|
|
69102
|
-
"ssws",
|
|
69103
|
-
"access",
|
|
69104
|
-
"token"
|
|
69105
|
-
],
|
|
69106
|
-
"useCases": [
|
|
69107
|
-
"`https://dev-123456.okta.com`."
|
|
69108
|
-
],
|
|
69109
|
-
"operations": [],
|
|
69110
|
-
"codeExamples": 0,
|
|
69111
|
-
"complexity": "beginner",
|
|
69112
|
-
"readingTime": "1 min",
|
|
69113
|
-
"contentLength": 1315,
|
|
69114
|
-
"relatedPages": []
|
|
69115
|
-
},
|
|
69116
|
-
"searchIndex": {
|
|
69117
|
-
"fullText": "okta credentials # okta credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [okta](../../app-nodes/n8n-nodes-base.okta/)\n\n## prerequisites\n\ncreate an [okta free trial](https://www.okta.com/free-trial/) or create an admin account on an existing okta org.\n\n## supported authentication methods\n\n- ssws api access token\n\n## related resources\n\nrefer to [okta's documentation](https://developer.okta.com/docs/reference/) for more information about the service.\n\n## using ssws api access token\n\nto configure this credential, you'll need:\n\n- the **url**: the base url of your okta org, also referred to as your unique subdomain. there are two quick ways to access it:\n 1. in the admin console, select your **profile**, hover over the domain listed below your username, and select the **copy** icon. paste this into n8n, but be sure to add `https://` before it.\n 1. copy the base url of your admin console url, for example `https://dev-123456-admin.okta.com`. paste it into n8n and remove `-admin`, for example: `https://dev-123456.okta.com`.\n- an **ssws access token**: create a token by going to **security > api > tokens > create token**. refer to [create okta api tokens](https://help.okta.com/en-us/content/topics/security/api.htm?cshid=ext-create-api-token#create-okta-api-token) for more information.\n okta credentials",
|
|
69118
|
-
"importantTerms": [
|
|
69119
|
-
"okta",
|
|
69120
|
-
"create",
|
|
69121
|
-
"token",
|
|
69122
|
-
"https",
|
|
69123
|
-
"admin",
|
|
69124
|
-
"your",
|
|
69125
|
-
"credentials",
|
|
69126
|
-
"access",
|
|
69127
|
-
"nodes",
|
|
69128
|
-
"base",
|
|
69129
|
-
"ssws"
|
|
69130
|
-
]
|
|
69131
|
-
}
|
|
69132
|
-
},
|
|
69133
69132
|
{
|
|
69134
69133
|
"id": "page-0902",
|
|
69135
69134
|
"title": "Ollama credentials",
|
|
@@ -77624,6 +77623,78 @@
|
|
|
77624
77623
|
},
|
|
77625
77624
|
{
|
|
77626
77625
|
"id": "page-1034",
|
|
77626
|
+
"title": "Gmail",
|
|
77627
|
+
"url": "https://docs.n8n.io/integrations/builtin/credentials/sendemail/gmail/index.md",
|
|
77628
|
+
"urlPath": "integrations/builtin/credentials/sendemail/gmail/index.md",
|
|
77629
|
+
"category": "other",
|
|
77630
|
+
"subcategory": null,
|
|
77631
|
+
"nodeName": null,
|
|
77632
|
+
"nodeType": null,
|
|
77633
|
+
"content": {
|
|
77634
|
+
"markdown": "# Gmail Send Email credentials\n\nFollow these steps to configure the Send Email credentials with a Gmail account.\n\n## Prerequisites\n\nTo follow these instructions, you must first:\n\n1. [Enable 2-step Verification](#enable-2-step-verification) on your Gmail account.\n1. [Generate an app password](#generate-an-app-password).\n\n### Enable 2-step Verification\n\nTo enable 2-step Verification:\n\n1. Log in to your [Google Account](https://myaccount.google.com/).\n1. Select **Security** from the left navigation.\n1. Under **How you sign in to Google**, select **2-Step Verification**.\n - If 2-Step Verification is already enabled, skip to the next section.\n1. Select **Get started**.\n1. Follow the on-screen steps to configure 2-Step Verification.\n\nRefer to [Turn on 2-step Verification](https://support.google.com/accounts/answer/185839) for more information.\n\nIf you can't turn on 2-step Verification, check with your email administrator.\n\n### Generate an app password\n\nTo generate an app password:\n\n1. In your Google account, go to [App passwords](https://myaccount.google.com/apppasswords).\n1. Enter an **App name** for your new app password, like `n8n credential`.\n1. Select **Create**.\n1. Copy the generated app password. You'll use this in your n8n credential.\n\nRefer to Google's [Sign in with app passwords documentation](https://support.google.com/accounts/answer/185833?hl=en) for more information.\n\n## Set up the credential\n\nTo set up the Send Email credential to use Gmail:\n\n1. Enter your Gmail email address as the **User**.\n1. Enter the app password you generated above as the **Password**.\n1. Enter `smtp.gmail.com` as the **Host**.\n1. For the **Port**:\n - Keep the default `465` for SSL or if you're unsure what to use.\n - Enter `587` for TLS.\n1. Turn on the **SSL/TLS** toggle.\n\nRefer to the Outgoing Mail (SMTP) Server settings in [Read Gmail messages on other email clients using POP](https://support.google.com/mail/answer/7104828?hl=en) for more information. If the settings above don't work for you, check with your email administrator.\n",
|
|
77635
|
+
"excerpt": "# Gmail Send Email credentials Follow these steps to configure the Send Email credentials with a Gmail account. ## Prerequisites To follow these instructions, you must first: 1. [Enable 2-step Verification](#enable-2-step-verification) on your Gmail account. 1. [Generate an app password](#generate-an-app-password). ### Enable 2-step Verification To enable 2-step Verification: 1. Log in to your [Google Account](https://myaccount.google.com/). 1. Select **Security** from the left navigation...",
|
|
77636
|
+
"sections": [
|
|
77637
|
+
{
|
|
77638
|
+
"title": "Gmail Send Email credentials",
|
|
77639
|
+
"level": 1,
|
|
77640
|
+
"content": "Follow these steps to configure the Send Email credentials with a Gmail account."
|
|
77641
|
+
}
|
|
77642
|
+
]
|
|
77643
|
+
},
|
|
77644
|
+
"metadata": {
|
|
77645
|
+
"keywords": [
|
|
77646
|
+
"gmail",
|
|
77647
|
+
"send",
|
|
77648
|
+
"email",
|
|
77649
|
+
"credentials",
|
|
77650
|
+
"prerequisites",
|
|
77651
|
+
"enable",
|
|
77652
|
+
"step",
|
|
77653
|
+
"verification",
|
|
77654
|
+
"generate",
|
|
77655
|
+
"password",
|
|
77656
|
+
"credential"
|
|
77657
|
+
],
|
|
77658
|
+
"useCases": [],
|
|
77659
|
+
"operations": [],
|
|
77660
|
+
"codeExamples": 0,
|
|
77661
|
+
"complexity": "beginner",
|
|
77662
|
+
"readingTime": "2 min",
|
|
77663
|
+
"contentLength": 2054,
|
|
77664
|
+
"relatedPages": []
|
|
77665
|
+
},
|
|
77666
|
+
"searchIndex": {
|
|
77667
|
+
"fullText": "gmail # gmail send email credentials\n\nfollow these steps to configure the send email credentials with a gmail account.\n\n## prerequisites\n\nto follow these instructions, you must first:\n\n1. [enable 2-step verification](#enable-2-step-verification) on your gmail account.\n1. [generate an app password](#generate-an-app-password).\n\n### enable 2-step verification\n\nto enable 2-step verification:\n\n1. log in to your [google account](https://myaccount.google.com/).\n1. select **security** from the left navigation.\n1. under **how you sign in to google**, select **2-step verification**.\n - if 2-step verification is already enabled, skip to the next section.\n1. select **get started**.\n1. follow the on-screen steps to configure 2-step verification.\n\nrefer to [turn on 2-step verification](https://support.google.com/accounts/answer/185839) for more information.\n\nif you can't turn on 2-step verification, check with your email administrator.\n\n### generate an app password\n\nto generate an app password:\n\n1. in your google account, go to [app passwords](https://myaccount.google.com/apppasswords).\n1. enter an **app name** for your new app password, like `n8n credential`.\n1. select **create**.\n1. copy the generated app password. you'll use this in your n8n credential.\n\nrefer to google's [sign in with app passwords documentation](https://support.google.com/accounts/answer/185833?hl=en) for more information.\n\n## set up the credential\n\nto set up the send email credential to use gmail:\n\n1. enter your gmail email address as the **user**.\n1. enter the app password you generated above as the **password**.\n1. enter `smtp.gmail.com` as the **host**.\n1. for the **port**:\n - keep the default `465` for ssl or if you're unsure what to use.\n - enter `587` for tls.\n1. turn on the **ssl/tls** toggle.\n\nrefer to the outgoing mail (smtp) server settings in [read gmail messages on other email clients using pop](https://support.google.com/mail/answer/7104828?hl=en) for more information. if the settings above don't work for you, check with your email administrator.\n gmail send email credentials",
|
|
77668
|
+
"importantTerms": [
|
|
77669
|
+
"gmail",
|
|
77670
|
+
"step",
|
|
77671
|
+
"verification",
|
|
77672
|
+
"google",
|
|
77673
|
+
"email",
|
|
77674
|
+
"your",
|
|
77675
|
+
"password",
|
|
77676
|
+
"https",
|
|
77677
|
+
"enter",
|
|
77678
|
+
"send",
|
|
77679
|
+
"with",
|
|
77680
|
+
"account",
|
|
77681
|
+
"enable",
|
|
77682
|
+
"generate",
|
|
77683
|
+
"select",
|
|
77684
|
+
"credential",
|
|
77685
|
+
"credentials",
|
|
77686
|
+
"follow",
|
|
77687
|
+
"refer",
|
|
77688
|
+
"turn",
|
|
77689
|
+
"support",
|
|
77690
|
+
"answer",
|
|
77691
|
+
"more",
|
|
77692
|
+
"information"
|
|
77693
|
+
]
|
|
77694
|
+
}
|
|
77695
|
+
},
|
|
77696
|
+
{
|
|
77697
|
+
"id": "page-1035",
|
|
77627
77698
|
"title": "Send Email credentials",
|
|
77628
77699
|
"url": "https://docs.n8n.io/integrations/builtin/credentials/sendemail/index.md",
|
|
77629
77700
|
"urlPath": "integrations/builtin/credentials/sendemail/index.md",
|
|
@@ -77705,78 +77776,6 @@
|
|
|
77705
77776
|
]
|
|
77706
77777
|
}
|
|
77707
77778
|
},
|
|
77708
|
-
{
|
|
77709
|
-
"id": "page-1035",
|
|
77710
|
-
"title": "Gmail",
|
|
77711
|
-
"url": "https://docs.n8n.io/integrations/builtin/credentials/sendemail/gmail/index.md",
|
|
77712
|
-
"urlPath": "integrations/builtin/credentials/sendemail/gmail/index.md",
|
|
77713
|
-
"category": "other",
|
|
77714
|
-
"subcategory": null,
|
|
77715
|
-
"nodeName": null,
|
|
77716
|
-
"nodeType": null,
|
|
77717
|
-
"content": {
|
|
77718
|
-
"markdown": "# Gmail Send Email credentials\n\nFollow these steps to configure the Send Email credentials with a Gmail account.\n\n## Prerequisites\n\nTo follow these instructions, you must first:\n\n1. [Enable 2-step Verification](#enable-2-step-verification) on your Gmail account.\n1. [Generate an app password](#generate-an-app-password).\n\n### Enable 2-step Verification\n\nTo enable 2-step Verification:\n\n1. Log in to your [Google Account](https://myaccount.google.com/).\n1. Select **Security** from the left navigation.\n1. Under **How you sign in to Google**, select **2-Step Verification**.\n - If 2-Step Verification is already enabled, skip to the next section.\n1. Select **Get started**.\n1. Follow the on-screen steps to configure 2-Step Verification.\n\nRefer to [Turn on 2-step Verification](https://support.google.com/accounts/answer/185839) for more information.\n\nIf you can't turn on 2-step Verification, check with your email administrator.\n\n### Generate an app password\n\nTo generate an app password:\n\n1. In your Google account, go to [App passwords](https://myaccount.google.com/apppasswords).\n1. Enter an **App name** for your new app password, like `n8n credential`.\n1. Select **Create**.\n1. Copy the generated app password. You'll use this in your n8n credential.\n\nRefer to Google's [Sign in with app passwords documentation](https://support.google.com/accounts/answer/185833?hl=en) for more information.\n\n## Set up the credential\n\nTo set up the Send Email credential to use Gmail:\n\n1. Enter your Gmail email address as the **User**.\n1. Enter the app password you generated above as the **Password**.\n1. Enter `smtp.gmail.com` as the **Host**.\n1. For the **Port**:\n - Keep the default `465` for SSL or if you're unsure what to use.\n - Enter `587` for TLS.\n1. Turn on the **SSL/TLS** toggle.\n\nRefer to the Outgoing Mail (SMTP) Server settings in [Read Gmail messages on other email clients using POP](https://support.google.com/mail/answer/7104828?hl=en) for more information. If the settings above don't work for you, check with your email administrator.\n",
|
|
77719
|
-
"excerpt": "# Gmail Send Email credentials Follow these steps to configure the Send Email credentials with a Gmail account. ## Prerequisites To follow these instructions, you must first: 1. [Enable 2-step Verification](#enable-2-step-verification) on your Gmail account. 1. [Generate an app password](#generate-an-app-password). ### Enable 2-step Verification To enable 2-step Verification: 1. Log in to your [Google Account](https://myaccount.google.com/). 1. Select **Security** from the left navigation...",
|
|
77720
|
-
"sections": [
|
|
77721
|
-
{
|
|
77722
|
-
"title": "Gmail Send Email credentials",
|
|
77723
|
-
"level": 1,
|
|
77724
|
-
"content": "Follow these steps to configure the Send Email credentials with a Gmail account."
|
|
77725
|
-
}
|
|
77726
|
-
]
|
|
77727
|
-
},
|
|
77728
|
-
"metadata": {
|
|
77729
|
-
"keywords": [
|
|
77730
|
-
"gmail",
|
|
77731
|
-
"send",
|
|
77732
|
-
"email",
|
|
77733
|
-
"credentials",
|
|
77734
|
-
"prerequisites",
|
|
77735
|
-
"enable",
|
|
77736
|
-
"step",
|
|
77737
|
-
"verification",
|
|
77738
|
-
"generate",
|
|
77739
|
-
"password",
|
|
77740
|
-
"credential"
|
|
77741
|
-
],
|
|
77742
|
-
"useCases": [],
|
|
77743
|
-
"operations": [],
|
|
77744
|
-
"codeExamples": 0,
|
|
77745
|
-
"complexity": "beginner",
|
|
77746
|
-
"readingTime": "2 min",
|
|
77747
|
-
"contentLength": 2054,
|
|
77748
|
-
"relatedPages": []
|
|
77749
|
-
},
|
|
77750
|
-
"searchIndex": {
|
|
77751
|
-
"fullText": "gmail # gmail send email credentials\n\nfollow these steps to configure the send email credentials with a gmail account.\n\n## prerequisites\n\nto follow these instructions, you must first:\n\n1. [enable 2-step verification](#enable-2-step-verification) on your gmail account.\n1. [generate an app password](#generate-an-app-password).\n\n### enable 2-step verification\n\nto enable 2-step verification:\n\n1. log in to your [google account](https://myaccount.google.com/).\n1. select **security** from the left navigation.\n1. under **how you sign in to google**, select **2-step verification**.\n - if 2-step verification is already enabled, skip to the next section.\n1. select **get started**.\n1. follow the on-screen steps to configure 2-step verification.\n\nrefer to [turn on 2-step verification](https://support.google.com/accounts/answer/185839) for more information.\n\nif you can't turn on 2-step verification, check with your email administrator.\n\n### generate an app password\n\nto generate an app password:\n\n1. in your google account, go to [app passwords](https://myaccount.google.com/apppasswords).\n1. enter an **app name** for your new app password, like `n8n credential`.\n1. select **create**.\n1. copy the generated app password. you'll use this in your n8n credential.\n\nrefer to google's [sign in with app passwords documentation](https://support.google.com/accounts/answer/185833?hl=en) for more information.\n\n## set up the credential\n\nto set up the send email credential to use gmail:\n\n1. enter your gmail email address as the **user**.\n1. enter the app password you generated above as the **password**.\n1. enter `smtp.gmail.com` as the **host**.\n1. for the **port**:\n - keep the default `465` for ssl or if you're unsure what to use.\n - enter `587` for tls.\n1. turn on the **ssl/tls** toggle.\n\nrefer to the outgoing mail (smtp) server settings in [read gmail messages on other email clients using pop](https://support.google.com/mail/answer/7104828?hl=en) for more information. if the settings above don't work for you, check with your email administrator.\n gmail send email credentials",
|
|
77752
|
-
"importantTerms": [
|
|
77753
|
-
"gmail",
|
|
77754
|
-
"step",
|
|
77755
|
-
"verification",
|
|
77756
|
-
"google",
|
|
77757
|
-
"email",
|
|
77758
|
-
"your",
|
|
77759
|
-
"password",
|
|
77760
|
-
"https",
|
|
77761
|
-
"enter",
|
|
77762
|
-
"send",
|
|
77763
|
-
"with",
|
|
77764
|
-
"account",
|
|
77765
|
-
"enable",
|
|
77766
|
-
"generate",
|
|
77767
|
-
"select",
|
|
77768
|
-
"credential",
|
|
77769
|
-
"credentials",
|
|
77770
|
-
"follow",
|
|
77771
|
-
"refer",
|
|
77772
|
-
"turn",
|
|
77773
|
-
"support",
|
|
77774
|
-
"answer",
|
|
77775
|
-
"more",
|
|
77776
|
-
"information"
|
|
77777
|
-
]
|
|
77778
|
-
}
|
|
77779
|
-
},
|
|
77780
77779
|
{
|
|
77781
77780
|
"id": "page-1036",
|
|
77782
77781
|
"title": "Outlook.com",
|
|
@@ -80746,7 +80745,7 @@
|
|
|
80746
80745
|
"nodeName": "postgrestrigger",
|
|
80747
80746
|
"nodeType": "n8n-nodes-base.postgrestrigger",
|
|
80748
80747
|
"content": {
|
|
80749
|
-
"markdown": "# Postgres Trigger node\n\nUse the Postgres Trigger node to respond to events in [Postgres](https://www.postgresql.org/) and integrate Postgres with other applications. n8n has built-in support responding to insert, update, and delete events.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/postgres/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Postgres Trigger integrations](https://n8n.io/integrations/postgres-trigger/) page.\n\n## Events\n\nYou can configure how the node listens for events.\n\n- Select **Listen and Create Trigger Rule**, then choose the events to listen for:\n - Insert\n - Update\n - Delete\n- Select **Listen to Channel**, then enter a channel name that the node should monitor.\n\n## Related resources\n\nn8n provides an app node for Postgres. You can find the node docs [here](../../app-nodes/n8n-nodes-base.postgres/).\n\nView [example workflows and related content](https://n8n.io/integrations/postgres-trigger/) on n8n's website.\n",
|
|
80748
|
+
"markdown": "# Postgres Trigger node\n\nUse the Postgres Trigger node to respond to events in [Postgres](https://www.postgresql.org/) and integrate Postgres with other applications. n8n has built-in support responding to insert, update, and delete events.\n\nCredentials\n\nYou can find authentication information for this node [here](../../credentials/postgres/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Postgres Trigger integrations](https://n8n.io/integrations/postgres-trigger/) page.\n\n## Events\n\nYou can configure how the node listens for events.\n\n- Select **Listen and Create Trigger Rule**, then choose the events to listen for:\n - Insert\n - Update\n - Delete\n- Select **Listen to Channel**, then enter a channel name that the node should monitor.\n\nPostgres event listener and required database permissions\n\n- To listen for trigger events, n8n automatically creates a Postgres trigger on the target table. This trigger is added when you activate a workflow, and removed when you deactivate it.\n- If your workflow is inactive, the trigger is also added when you test the workflow and removed once test event listening stops.\n- The Postgress trigger calls an automatically-created procedure to tell n8n about the event.\n- The user in your Postgres credential must have permissions to create and execute triggers and procedures. In PostgreSQL, this requires superuser access, table ownership, or the TRIGGER privilege - plus CREATE privilege on the schema where the procedure will reside.\n\n## Related resources\n\nn8n provides an app node for Postgres. You can find the node docs [here](../../app-nodes/n8n-nodes-base.postgres/).\n\nView [example workflows and related content](https://n8n.io/integrations/postgres-trigger/) on n8n's website.\n",
|
|
80750
80749
|
"excerpt": "# Postgres Trigger node Use the Postgres Trigger node to respond to events in [Postgres](https://www.postgresql.org/) and integrate Postgres with other applications. n8n has built-in support responding to insert, update, and delete events. Credentials You can find authentication information for this node [here](../../credentials/postgres/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Postgres Trigger integrations](https://n8n.io/integrati...",
|
|
80751
80750
|
"sections": [
|
|
80752
80751
|
{
|
|
@@ -80769,20 +80768,25 @@
|
|
|
80769
80768
|
"operations": [],
|
|
80770
80769
|
"codeExamples": 0,
|
|
80771
80770
|
"complexity": "beginner",
|
|
80772
|
-
"readingTime": "
|
|
80773
|
-
"contentLength":
|
|
80771
|
+
"readingTime": "2 min",
|
|
80772
|
+
"contentLength": 1785,
|
|
80774
80773
|
"relatedPages": []
|
|
80775
80774
|
},
|
|
80776
80775
|
"searchIndex": {
|
|
80777
|
-
"fullText": "postgres trigger # postgres trigger node\n\nuse the postgres trigger node to respond to events in [postgres](https://www.postgresql.org/) and integrate postgres with other applications. n8n has built-in support responding to insert, update, and delete events.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/postgres/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [postgres trigger integrations](https://n8n.io/integrations/postgres-trigger/) page.\n\n## events\n\nyou can configure how the node listens for events.\n\n- select **listen and create trigger rule**, then choose the events to listen for:\n - insert\n - update\n - delete\n- select **listen to channel**, then enter a channel name that the node should monitor.\n\n## related resources\n\nn8n provides an app node for postgres. you can find the node docs [here](../../app-nodes/n8n-nodes-base.postgres/).\n\nview [example workflows and related content](https://n8n.io/integrations/postgres-trigger/) on n8n's website.\n postgres trigger node",
|
|
80776
|
+
"fullText": "postgres trigger # postgres trigger node\n\nuse the postgres trigger node to respond to events in [postgres](https://www.postgresql.org/) and integrate postgres with other applications. n8n has built-in support responding to insert, update, and delete events.\n\ncredentials\n\nyou can find authentication information for this node [here](../../credentials/postgres/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [postgres trigger integrations](https://n8n.io/integrations/postgres-trigger/) page.\n\n## events\n\nyou can configure how the node listens for events.\n\n- select **listen and create trigger rule**, then choose the events to listen for:\n - insert\n - update\n - delete\n- select **listen to channel**, then enter a channel name that the node should monitor.\n\npostgres event listener and required database permissions\n\n- to listen for trigger events, n8n automatically creates a postgres trigger on the target table. this trigger is added when you activate a workflow, and removed when you deactivate it.\n- if your workflow is inactive, the trigger is also added when you test the workflow and removed once test event listening stops.\n- the postgress trigger calls an automatically-created procedure to tell n8n about the event.\n- the user in your postgres credential must have permissions to create and execute triggers and procedures. in postgresql, this requires superuser access, table ownership, or the trigger privilege - plus create privilege on the schema where the procedure will reside.\n\n## related resources\n\nn8n provides an app node for postgres. you can find the node docs [here](../../app-nodes/n8n-nodes-base.postgres/).\n\nview [example workflows and related content](https://n8n.io/integrations/postgres-trigger/) on n8n's website.\n postgres trigger node",
|
|
80778
80777
|
"importantTerms": [
|
|
80779
80778
|
"postgres",
|
|
80780
80779
|
"trigger",
|
|
80781
80780
|
"node",
|
|
80782
80781
|
"events",
|
|
80782
|
+
"listen",
|
|
80783
80783
|
"https",
|
|
80784
|
+
"this",
|
|
80784
80785
|
"integrations",
|
|
80785
|
-
"
|
|
80786
|
+
"create",
|
|
80787
|
+
"event",
|
|
80788
|
+
"when",
|
|
80789
|
+
"workflow"
|
|
80786
80790
|
]
|
|
80787
80791
|
}
|
|
80788
80792
|
},
|
|
@@ -82360,27 +82364,27 @@
|
|
|
82360
82364
|
},
|
|
82361
82365
|
{
|
|
82362
82366
|
"id": "page-1128",
|
|
82363
|
-
"title": "
|
|
82364
|
-
"url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger/
|
|
82365
|
-
"urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger/
|
|
82367
|
+
"title": "Instagram",
|
|
82368
|
+
"url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger/instagram/index.md",
|
|
82369
|
+
"urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger/instagram/index.md",
|
|
82366
82370
|
"category": "trigger-nodes",
|
|
82367
82371
|
"subcategory": null,
|
|
82368
82372
|
"nodeName": "facebooktrigger",
|
|
82369
82373
|
"nodeType": "n8n-nodes-base.facebooktrigger",
|
|
82370
82374
|
"content": {
|
|
82371
|
-
"markdown": "# Facebook Trigger
|
|
82372
|
-
"excerpt": "# Facebook Trigger
|
|
82375
|
+
"markdown": "# Facebook Trigger Instagram object\n\nUse this object to receive updates when someone comments on the Media objects of your app users; @mentions your app users; or when Stories of your app users expire. Refer to [Facebook Trigger](../) for more information on the trigger itself.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/facebookapp/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Facebook Trigger integrations](https://n8n.io/integrations/facebook-trigger/) page.\n\n## Trigger configuration\n\nTo configure the trigger with this Object:\n\n1. Select the **Credential to connect with**. Select an existing or create a new [Facebook App credential](../../../credentials/facebookapp/).\n1. Enter the **APP ID** of the app connected to your credential. Refer to the [Facebook App credential](../../../credentials/facebookapp/) documentation for more information.\n1. Select **Instagram** as the **Object**.\n1. **Field Names or IDs**: By default, the node will trigger on all the available events using the `*` wildcard filter. If you'd like to limit the events, use the `X` to remove the star and use the dropdown or an expression to select the updates you're interested in. Options include:\n - **Comments**: Notifies you when anyone comments on an IG Media owned by your app's Instagram user.\n - **Messaging Handover**\n - **Mentions**: Notifies you whenever an Instagram user @mentions an Instagram Business or Creator Account in a comment or caption.\n - **Messages**: Notifies you when anyone messages your app's Instagram user.\n - **Messaging Seen**: Notifies you when someone sees a message sent by your app's Instagram user.\n - **Standby**\n - **Story Insights**: Notifies you one hour after a story expires with metrics describing interactions on a story.\n1. In **Options**, turn on the toggle to **Include Values**. This Object type fails without the option enabled.\n\n## Related resources\n\nRefer to [Webhooks for Instagram](https://developers.facebook.com/docs/graph-api/webhooks/getting-started/webhooks-for-instagram) and Meta's [Instagram](https://developers.facebook.com/docs/graph-api/webhooks/reference/instagram/) Graph API reference for more information.\n",
|
|
82376
|
+
"excerpt": "# Facebook Trigger Instagram object Use this object to receive updates when someone comments on the Media objects of your app users; @mentions your app users; or when Stories of your app users expire. Refer to [Facebook Trigger](../) for more information on the trigger itself. Credentials You can find authentication information for this node [here](../../../credentials/facebookapp/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Facebook Tr...",
|
|
82373
82377
|
"sections": [
|
|
82374
82378
|
{
|
|
82375
|
-
"title": "Facebook Trigger
|
|
82379
|
+
"title": "Facebook Trigger Instagram object",
|
|
82376
82380
|
"level": 1,
|
|
82377
|
-
"content": "Use this object to receive updates
|
|
82381
|
+
"content": "Use this object to receive updates when someone comments on the Media objects of your app users; @mentions your app users; or when Stories of your app users expire. Refer to [Facebook Trigger](../) for more information on the trigger itself.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/facebookapp/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Facebook Trigger integrations](https://n8n.io/integrations/facebook-trigger/) page."
|
|
82378
82382
|
}
|
|
82379
82383
|
]
|
|
82380
82384
|
},
|
|
82381
82385
|
"metadata": {
|
|
82382
82386
|
"keywords": [
|
|
82383
|
-
"
|
|
82387
|
+
"instagram",
|
|
82384
82388
|
"facebook",
|
|
82385
82389
|
"trigger",
|
|
82386
82390
|
"object",
|
|
@@ -82391,53 +82395,64 @@
|
|
|
82391
82395
|
"useCases": [],
|
|
82392
82396
|
"operations": [],
|
|
82393
82397
|
"codeExamples": 0,
|
|
82394
|
-
"complexity": "
|
|
82395
|
-
"readingTime": "
|
|
82396
|
-
"contentLength":
|
|
82398
|
+
"complexity": "intermediate",
|
|
82399
|
+
"readingTime": "2 min",
|
|
82400
|
+
"contentLength": 2281,
|
|
82397
82401
|
"relatedPages": []
|
|
82398
82402
|
},
|
|
82399
82403
|
"searchIndex": {
|
|
82400
|
-
"fullText": "
|
|
82404
|
+
"fullText": "instagram # facebook trigger instagram object\n\nuse this object to receive updates when someone comments on the media objects of your app users; @mentions your app users; or when stories of your app users expire. refer to [facebook trigger](../) for more information on the trigger itself.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/facebookapp/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [facebook trigger integrations](https://n8n.io/integrations/facebook-trigger/) page.\n\n## trigger configuration\n\nto configure the trigger with this object:\n\n1. select the **credential to connect with**. select an existing or create a new [facebook app credential](../../../credentials/facebookapp/).\n1. enter the **app id** of the app connected to your credential. refer to the [facebook app credential](../../../credentials/facebookapp/) documentation for more information.\n1. select **instagram** as the **object**.\n1. **field names or ids**: by default, the node will trigger on all the available events using the `*` wildcard filter. if you'd like to limit the events, use the `x` to remove the star and use the dropdown or an expression to select the updates you're interested in. options include:\n - **comments**: notifies you when anyone comments on an ig media owned by your app's instagram user.\n - **messaging handover**\n - **mentions**: notifies you whenever an instagram user @mentions an instagram business or creator account in a comment or caption.\n - **messages**: notifies you when anyone messages your app's instagram user.\n - **messaging seen**: notifies you when someone sees a message sent by your app's instagram user.\n - **standby**\n - **story insights**: notifies you one hour after a story expires with metrics describing interactions on a story.\n1. in **options**, turn on the toggle to **include values**. this object type fails without the option enabled.\n\n## related resources\n\nrefer to [webhooks for instagram](https://developers.facebook.com/docs/graph-api/webhooks/getting-started/webhooks-for-instagram) and meta's [instagram](https://developers.facebook.com/docs/graph-api/webhooks/reference/instagram/) graph api reference for more information.\n facebook trigger instagram object",
|
|
82401
82405
|
"importantTerms": [
|
|
82402
|
-
"
|
|
82406
|
+
"instagram",
|
|
82403
82407
|
"facebook",
|
|
82408
|
+
"trigger",
|
|
82409
|
+
"your",
|
|
82404
82410
|
"object",
|
|
82405
|
-
"
|
|
82411
|
+
"when",
|
|
82412
|
+
"notifies",
|
|
82406
82413
|
"this",
|
|
82407
82414
|
"refer",
|
|
82408
82415
|
"information",
|
|
82409
82416
|
"credentials",
|
|
82410
82417
|
"select",
|
|
82411
82418
|
"credential",
|
|
82412
|
-
"
|
|
82419
|
+
"user",
|
|
82420
|
+
"webhooks",
|
|
82421
|
+
"comments",
|
|
82422
|
+
"users",
|
|
82423
|
+
"mentions",
|
|
82413
82424
|
"more",
|
|
82414
|
-
"facebookapp"
|
|
82425
|
+
"facebookapp",
|
|
82426
|
+
"https",
|
|
82427
|
+
"with",
|
|
82428
|
+
"story",
|
|
82429
|
+
"graph"
|
|
82415
82430
|
]
|
|
82416
82431
|
}
|
|
82417
82432
|
},
|
|
82418
82433
|
{
|
|
82419
82434
|
"id": "page-1129",
|
|
82420
|
-
"title": "
|
|
82421
|
-
"url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger/
|
|
82422
|
-
"urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger/
|
|
82435
|
+
"title": "Group",
|
|
82436
|
+
"url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger/group/index.md",
|
|
82437
|
+
"urlPath": "integrations/builtin/trigger-nodes/n8n-nodes-base.facebooktrigger/group/index.md",
|
|
82423
82438
|
"category": "trigger-nodes",
|
|
82424
82439
|
"subcategory": null,
|
|
82425
82440
|
"nodeName": "facebooktrigger",
|
|
82426
82441
|
"nodeType": "n8n-nodes-base.facebooktrigger",
|
|
82427
82442
|
"content": {
|
|
82428
|
-
"markdown": "# Facebook Trigger
|
|
82429
|
-
"excerpt": "# Facebook Trigger
|
|
82443
|
+
"markdown": "# Facebook Trigger Group object\n\nUse this object to receive updates about activities and events in a group. Refer to [Facebook Trigger](../) for more information on the trigger itself.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/facebookapp/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Facebook Trigger integrations](https://n8n.io/integrations/facebook-trigger/) page.\n\n## Trigger configuration\n\nTo configure the trigger with this Object:\n\n1. Select the **Credential to connect with**. Select an existing or create a new [Facebook App credential](../../../credentials/facebookapp/).\n1. Enter the **APP ID** of the app connected to your credential. Refer to the [Facebook App credential](../../../credentials/facebookapp/) documentation for more information.\n1. Select **Group** as the **Object**.\n1. **Field Names or IDs**: By default, the node will trigger on all the available events using the `*` wildcard filter. If you'd like to limit the events, use the `X` to remove the star and use the dropdown or an expression to select the updates you're interested in.\n1. In **Options**, turn on the toggle to **Include Values**. This Object type fails without the option enabled.\n\n## Related resources\n\nRefer to Meta's [Groups](https://developers.facebook.com/docs/workplace/reference/webhooks/#groups) Workplace API reference for more information.\n",
|
|
82444
|
+
"excerpt": "# Facebook Trigger Group object Use this object to receive updates about activities and events in a group. Refer to [Facebook Trigger](../) for more information on the trigger itself. Credentials You can find authentication information for this node [here](../../../credentials/facebookapp/). Examples and templates For usage examples and templates to help you get started, refer to n8n's [Facebook Trigger integrations](https://n8n.io/integrations/facebook-trigger/) page. ## Trigger configura...",
|
|
82430
82445
|
"sections": [
|
|
82431
82446
|
{
|
|
82432
|
-
"title": "Facebook Trigger
|
|
82447
|
+
"title": "Facebook Trigger Group object",
|
|
82433
82448
|
"level": 1,
|
|
82434
|
-
"content": "Use this object to receive updates
|
|
82449
|
+
"content": "Use this object to receive updates about activities and events in a group. Refer to [Facebook Trigger](../) for more information on the trigger itself.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/facebookapp/).\n\nExamples and templates\n\nFor usage examples and templates to help you get started, refer to n8n's [Facebook Trigger integrations](https://n8n.io/integrations/facebook-trigger/) page."
|
|
82435
82450
|
}
|
|
82436
82451
|
]
|
|
82437
82452
|
},
|
|
82438
82453
|
"metadata": {
|
|
82439
82454
|
"keywords": [
|
|
82440
|
-
"
|
|
82455
|
+
"group",
|
|
82441
82456
|
"facebook",
|
|
82442
82457
|
"trigger",
|
|
82443
82458
|
"object",
|
|
@@ -82448,38 +82463,27 @@
|
|
|
82448
82463
|
"useCases": [],
|
|
82449
82464
|
"operations": [],
|
|
82450
82465
|
"codeExamples": 0,
|
|
82451
|
-
"complexity": "
|
|
82452
|
-
"readingTime": "
|
|
82453
|
-
"contentLength":
|
|
82466
|
+
"complexity": "beginner",
|
|
82467
|
+
"readingTime": "1 min",
|
|
82468
|
+
"contentLength": 1456,
|
|
82454
82469
|
"relatedPages": []
|
|
82455
82470
|
},
|
|
82456
82471
|
"searchIndex": {
|
|
82457
|
-
"fullText": "
|
|
82472
|
+
"fullText": "group # facebook trigger group object\n\nuse this object to receive updates about activities and events in a group. refer to [facebook trigger](../) for more information on the trigger itself.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/facebookapp/).\n\nexamples and templates\n\nfor usage examples and templates to help you get started, refer to n8n's [facebook trigger integrations](https://n8n.io/integrations/facebook-trigger/) page.\n\n## trigger configuration\n\nto configure the trigger with this object:\n\n1. select the **credential to connect with**. select an existing or create a new [facebook app credential](../../../credentials/facebookapp/).\n1. enter the **app id** of the app connected to your credential. refer to the [facebook app credential](../../../credentials/facebookapp/) documentation for more information.\n1. select **group** as the **object**.\n1. **field names or ids**: by default, the node will trigger on all the available events using the `*` wildcard filter. if you'd like to limit the events, use the `x` to remove the star and use the dropdown or an expression to select the updates you're interested in.\n1. in **options**, turn on the toggle to **include values**. this object type fails without the option enabled.\n\n## related resources\n\nrefer to meta's [groups](https://developers.facebook.com/docs/workplace/reference/webhooks/#groups) workplace api reference for more information.\n facebook trigger group object",
|
|
82458
82473
|
"importantTerms": [
|
|
82459
|
-
"instagram",
|
|
82460
|
-
"facebook",
|
|
82461
82474
|
"trigger",
|
|
82462
|
-
"
|
|
82475
|
+
"facebook",
|
|
82463
82476
|
"object",
|
|
82464
|
-
"
|
|
82465
|
-
"notifies",
|
|
82477
|
+
"group",
|
|
82466
82478
|
"this",
|
|
82467
82479
|
"refer",
|
|
82468
82480
|
"information",
|
|
82469
82481
|
"credentials",
|
|
82470
82482
|
"select",
|
|
82471
82483
|
"credential",
|
|
82472
|
-
"
|
|
82473
|
-
"webhooks",
|
|
82474
|
-
"comments",
|
|
82475
|
-
"users",
|
|
82476
|
-
"mentions",
|
|
82484
|
+
"events",
|
|
82477
82485
|
"more",
|
|
82478
|
-
"facebookapp"
|
|
82479
|
-
"https",
|
|
82480
|
-
"with",
|
|
82481
|
-
"story",
|
|
82482
|
-
"graph"
|
|
82486
|
+
"facebookapp"
|
|
82483
82487
|
]
|
|
82484
82488
|
}
|
|
82485
82489
|
},
|
|
@@ -85588,7 +85592,7 @@
|
|
|
85588
85592
|
"nodeName": null,
|
|
85589
85593
|
"nodeType": null,
|
|
85590
85594
|
"content": {
|
|
85591
|
-
"markdown": "# Community node verification guidelines\n\nDo you want n8n to verify your node?\n\nFollow these guidelines while building your node if you want to submit it for verification by n8n. Any user with verified community nodes enabled can discover and install verified nodes from n8n's nodes panel across all deployment types (self-hosted and n8n Cloud).\n\nUpcoming Changes\n\nFrom May 1st 2026 you must publish **ALL** community nodes using a GitHub action and include a [provenance statement](https://docs.npmjs.com/generating-provenance-statements)\n\n## Use the n8n-node tool\n\nAll verified community node authors should use the [`n8n-node` tool](../../n8n-node/) to create and check their package. This helps n8n ensure quality and consistency by:\n\n- Generating the expected package file structure\n- Adding the required metadata and configuration to the `package.json` file\n- Making it easy to lint your code against n8n's standards\n- Allowing you to load your node in a local n8n instance for testing\n\n## Node Types\n\n- The node **MUST** not be an existing node, If your node is an iteration on an existing node create a pull request instead.\n- n8n isn't accepting Logic or Flow control nodes at the moment.\n\n## Package source verification\n\n- Verify that your npm package repository URL matches the expected GitHub repository.\n- Confirm that the package author / maintainer matches between npm and the repository.\n- Confirm that the git link in npm works and that the repository is public.\n- Make sure your package has proper documentation (README, usage examples, etc.).\n- Make sure your package license is MIT.\n- Packages should be published from a GitHub action and include [provenance](https://docs.npmjs.com/generating-provenance-statements)\n\n## No external dependencies\n\n- Ensure that your package does **not** include any external dependencies to keep it lightweight and easy to maintain.\n\n## Proper documentation\n\n- Provide clear documentation, whether it’s a **README** on GitHub or links to relevant **API documentation**.\n- Include usage instructions, example workflows, and any necessary authentication details.\n\n## No access to environment variables or file system\n\n- The code **must not** interact with environment variables or attempt to read/write files.\n- Pass all necessary data through node parameters.\n\n## Follow n8n best practices\n\n- Maintain a clear and consistent coding style.\n- Use **TypeScript** and follow n8n's [**node development guidelines**](../../../overview/).\n- Ensure proper error handling and validation.\n- Make sure the linter passes (in other words, make sure running `npx @n8n/scan-community-package n8n-nodes-PACKAGE` passes).\n\n## Use English language only\n\n- Both the node interface and all documentation must be in **English** only.\n- This includes parameter names, descriptions, help text, error messages and **README** content.\n",
|
|
85595
|
+
"markdown": "# Community node verification guidelines\n\nDo you want n8n to verify your node?\n\nFollow these guidelines while building your node if you want to submit it for verification by n8n. Any user with verified community nodes enabled can discover and install verified nodes from n8n's nodes panel across all deployment types (self-hosted and n8n Cloud).\n\nUpcoming Changes\n\nFrom May 1st 2026 you must publish **ALL** community nodes using a GitHub action and include a [provenance statement](https://docs.npmjs.com/generating-provenance-statements)\n\n## Use the n8n-node tool\n\nAll verified community node authors should use the [`n8n-node` tool](../../n8n-node/) to create and check their package. This helps n8n ensure quality and consistency by:\n\n- Generating the expected package file structure\n- Adding the required metadata and configuration to the `package.json` file\n- Making it easy to lint your code against n8n's standards\n- Allowing you to load your node in a local n8n instance for testing\n\n## Node Types\n\n- The node **MUST** not be an existing node, If your node is an iteration on an existing node create a pull request instead.\n- n8n isn't accepting Logic or Flow control nodes at the moment.\n- Each package should integrate exactly one third-party service. A trigger node for the same service may be included alongside the main node. Packages that wrap multiple unrelated APIs or act as a proxy layer for several services generally don't qualify for verification. Submit each service as its own separate package.\n\n## Package source verification\n\n- Verify that your npm package repository URL matches the expected GitHub repository.\n- Confirm that the package author / maintainer matches between npm and the repository.\n- Confirm that the git link in npm works and that the repository is public.\n- Make sure your package has proper documentation (README, usage examples, etc.).\n- Make sure your package license is MIT.\n- Packages should be published from a GitHub action and include [provenance](https://docs.npmjs.com/generating-provenance-statements)\n\n## No external dependencies\n\n- Ensure that your package does **not** include any external dependencies to keep it lightweight and easy to maintain.\n\n## Proper documentation\n\n- Provide clear documentation, whether it’s a **README** on GitHub or links to relevant **API documentation**.\n- Include usage instructions, example workflows, and any necessary authentication details.\n\n## No access to environment variables or file system\n\n- The code **must not** interact with environment variables or attempt to read/write files.\n- Pass all necessary data through node parameters.\n\n## Follow n8n best practices\n\n- Maintain a clear and consistent coding style.\n- Use **TypeScript** and follow n8n's [**node development guidelines**](../../../overview/).\n- Ensure proper error handling and validation.\n- Make sure the linter passes (in other words, make sure running `npx @n8n/scan-community-package n8n-nodes-PACKAGE` passes).\n\n## Use English language only\n\n- Both the node interface and all documentation must be in **English** only.\n- This includes parameter names, descriptions, help text, error messages and **README** content.\n",
|
|
85592
85596
|
"excerpt": "# Community node verification guidelines Do you want n8n to verify your node? Follow these guidelines while building your node if you want to submit it for verification by n8n. Any user with verified community nodes enabled can discover and install verified nodes from n8n's nodes panel across all deployment types (self-hosted and n8n Cloud). Upcoming Changes From May 1st 2026 you must publish **ALL** community nodes using a GitHub action and include a [provenance statement](https://docs.npmj...",
|
|
85593
85597
|
"sections": [
|
|
85594
85598
|
{
|
|
@@ -85629,20 +85633,20 @@
|
|
|
85629
85633
|
"codeExamples": 0,
|
|
85630
85634
|
"complexity": "beginner",
|
|
85631
85635
|
"readingTime": "3 min",
|
|
85632
|
-
"contentLength":
|
|
85636
|
+
"contentLength": 3183,
|
|
85633
85637
|
"relatedPages": []
|
|
85634
85638
|
},
|
|
85635
85639
|
"searchIndex": {
|
|
85636
|
-
"fullText": "verification guidelines # community node verification guidelines\n\ndo you want n8n to verify your node?\n\nfollow these guidelines while building your node if you want to submit it for verification by n8n. any user with verified community nodes enabled can discover and install verified nodes from n8n's nodes panel across all deployment types (self-hosted and n8n cloud).\n\nupcoming changes\n\nfrom may 1st 2026 you must publish **all** community nodes using a github action and include a [provenance statement](https://docs.npmjs.com/generating-provenance-statements)\n\n## use the n8n-node tool\n\nall verified community node authors should use the [`n8n-node` tool](../../n8n-node/) to create and check their package. this helps n8n ensure quality and consistency by:\n\n- generating the expected package file structure\n- adding the required metadata and configuration to the `package.json` file\n- making it easy to lint your code against n8n's standards\n- allowing you to load your node in a local n8n instance for testing\n\n## node types\n\n- the node **must** not be an existing node, if your node is an iteration on an existing node create a pull request instead.\n- n8n isn't accepting logic or flow control nodes at the moment.\n\n## package source verification\n\n- verify that your npm package repository url matches the expected github repository.\n- confirm that the package author / maintainer matches between npm and the repository.\n- confirm that the git link in npm works and that the repository is public.\n- make sure your package has proper documentation (readme, usage examples, etc.).\n- make sure your package license is mit.\n- packages should be published from a github action and include [provenance](https://docs.npmjs.com/generating-provenance-statements)\n\n## no external dependencies\n\n- ensure that your package does **not** include any external dependencies to keep it lightweight and easy to maintain.\n\n## proper documentation\n\n- provide clear documentation, whether it’s a **readme** on github or links to relevant **api documentation**.\n- include usage instructions, example workflows, and any necessary authentication details.\n\n## no access to environment variables or file system\n\n- the code **must not** interact with environment variables or attempt to read/write files.\n- pass all necessary data through node parameters.\n\n## follow n8n best practices\n\n- maintain a clear and consistent coding style.\n- use **typescript** and follow n8n's [**node development guidelines**](../../../overview/).\n- ensure proper error handling and validation.\n- make sure the linter passes (in other words, make sure running `npx @n8n/scan-community-package n8n-nodes-package` passes).\n\n## use english language only\n\n- both the node interface and all documentation must be in **english** only.\n- this includes parameter names, descriptions, help text, error messages and **readme** content.\n community node verification guidelines",
|
|
85640
|
+
"fullText": "verification guidelines # community node verification guidelines\n\ndo you want n8n to verify your node?\n\nfollow these guidelines while building your node if you want to submit it for verification by n8n. any user with verified community nodes enabled can discover and install verified nodes from n8n's nodes panel across all deployment types (self-hosted and n8n cloud).\n\nupcoming changes\n\nfrom may 1st 2026 you must publish **all** community nodes using a github action and include a [provenance statement](https://docs.npmjs.com/generating-provenance-statements)\n\n## use the n8n-node tool\n\nall verified community node authors should use the [`n8n-node` tool](../../n8n-node/) to create and check their package. this helps n8n ensure quality and consistency by:\n\n- generating the expected package file structure\n- adding the required metadata and configuration to the `package.json` file\n- making it easy to lint your code against n8n's standards\n- allowing you to load your node in a local n8n instance for testing\n\n## node types\n\n- the node **must** not be an existing node, if your node is an iteration on an existing node create a pull request instead.\n- n8n isn't accepting logic or flow control nodes at the moment.\n- each package should integrate exactly one third-party service. a trigger node for the same service may be included alongside the main node. packages that wrap multiple unrelated apis or act as a proxy layer for several services generally don't qualify for verification. submit each service as its own separate package.\n\n## package source verification\n\n- verify that your npm package repository url matches the expected github repository.\n- confirm that the package author / maintainer matches between npm and the repository.\n- confirm that the git link in npm works and that the repository is public.\n- make sure your package has proper documentation (readme, usage examples, etc.).\n- make sure your package license is mit.\n- packages should be published from a github action and include [provenance](https://docs.npmjs.com/generating-provenance-statements)\n\n## no external dependencies\n\n- ensure that your package does **not** include any external dependencies to keep it lightweight and easy to maintain.\n\n## proper documentation\n\n- provide clear documentation, whether it’s a **readme** on github or links to relevant **api documentation**.\n- include usage instructions, example workflows, and any necessary authentication details.\n\n## no access to environment variables or file system\n\n- the code **must not** interact with environment variables or attempt to read/write files.\n- pass all necessary data through node parameters.\n\n## follow n8n best practices\n\n- maintain a clear and consistent coding style.\n- use **typescript** and follow n8n's [**node development guidelines**](../../../overview/).\n- ensure proper error handling and validation.\n- make sure the linter passes (in other words, make sure running `npx @n8n/scan-community-package n8n-nodes-package` passes).\n\n## use english language only\n\n- both the node interface and all documentation must be in **english** only.\n- this includes parameter names, descriptions, help text, error messages and **readme** content.\n community node verification guidelines",
|
|
85637
85641
|
"importantTerms": [
|
|
85638
85642
|
"node",
|
|
85639
85643
|
"package",
|
|
85640
85644
|
"your",
|
|
85645
|
+
"verification",
|
|
85641
85646
|
"community",
|
|
85642
85647
|
"nodes",
|
|
85643
|
-
"verification",
|
|
85644
|
-
"guidelines",
|
|
85645
85648
|
"that",
|
|
85649
|
+
"guidelines",
|
|
85646
85650
|
"documentation",
|
|
85647
85651
|
"must",
|
|
85648
85652
|
"github",
|
|
@@ -85655,8 +85659,10 @@
|
|
|
85655
85659
|
"verified",
|
|
85656
85660
|
"from",
|
|
85657
85661
|
"generating",
|
|
85662
|
+
"should",
|
|
85658
85663
|
"ensure",
|
|
85659
85664
|
"file",
|
|
85665
|
+
"service",
|
|
85660
85666
|
"proper",
|
|
85661
85667
|
"readme"
|
|
85662
85668
|
]
|
|
@@ -87626,6 +87632,65 @@
|
|
|
87626
87632
|
},
|
|
87627
87633
|
{
|
|
87628
87634
|
"id": "page-1202",
|
|
87635
|
+
"title": "What you can do",
|
|
87636
|
+
"url": "https://docs.n8n.io/privacy-security/what-you-can-do/index.md",
|
|
87637
|
+
"urlPath": "privacy-security/what-you-can-do/index.md",
|
|
87638
|
+
"category": "other",
|
|
87639
|
+
"subcategory": null,
|
|
87640
|
+
"nodeName": null,
|
|
87641
|
+
"nodeType": null,
|
|
87642
|
+
"content": {
|
|
87643
|
+
"markdown": "# What you can do\n\nIt's also your responsibility as a customer to ensure you are securing your code and data. This document lists some steps you can take.\n\n## All users\n\n- Report security issues and [terms of service](https://n8n.io/legal/#terms) violations to security@n8n.io.\n- If more than one person uses your n8n instance, set up [User management](../../user-management/) and follow the [Best practices](../../user-management/best-practices/).\n- Use OAuth to connect integrations whenever possible.\n\n## Self-hosted users\n\nIf you self-host n8n, there are additional steps you can take:\n\n- Set up a reverse proxy to handle TLS, ensuring data is encrypted in transit.\n- Ensure data is encrypted at rest by using encrypted partitions, or encryption at the hardware level, and ensuring n8n and its database is written to that location.\n- Run a [Security audit](../../hosting/securing/security-audit/).\n- Be aware of the [Risks](../../integrations/community-nodes/risks/) when installing community nodes, or choose to disable them.\n- Make sure users can't import external modules in the Code node. Refer to [Environment variables | Nodes](../../hosting/configuration/environment-variables/nodes/) for more information.\n- Choose to exclude certain nodes. For example, you can disable nodes like Execute Command or SSH. Refer to [Environment variables | Nodes](../../hosting/configuration/environment-variables/nodes/) for more information.\n- For maximum privacy, you can [Isolate n8n](../../hosting/configuration/configuration-examples/isolation/).\n\n### GDPR for self-hosted users\n\nIf you self-host n8n, you are responsible for deleting user data. If you need to delete data on behalf of one of your users, you can delete the respective execution. n8n recommends configuring n8n to prune execution data automatically every few days to avoid effortful GDPR request handling as much as possible. Configure this using the `EXECUTIONS_DATA_MAX_AGE` environment variable. Refer to [Environment variables](../../hosting/configuration/environment-variables/) for more information.\n",
|
|
87644
|
+
"excerpt": "# What you can do It's also your responsibility as a customer to ensure you are securing your code and data. This document lists some steps you can take. ## All users - Report security issues and [terms of service](https://n8n.io/legal/#terms) violations to security@n8n.io. - If more than one person uses your n8n instance, set up [User management](../../user-management/) and follow the [Best practices](../../user-management/best-practices/). - Use OAuth to connect integrations whenever possib...",
|
|
87645
|
+
"sections": [
|
|
87646
|
+
{
|
|
87647
|
+
"title": "What you can do",
|
|
87648
|
+
"level": 1,
|
|
87649
|
+
"content": "It's also your responsibility as a customer to ensure you are securing your code and data. This document lists some steps you can take."
|
|
87650
|
+
}
|
|
87651
|
+
]
|
|
87652
|
+
},
|
|
87653
|
+
"metadata": {
|
|
87654
|
+
"keywords": [
|
|
87655
|
+
"what",
|
|
87656
|
+
"users",
|
|
87657
|
+
"self",
|
|
87658
|
+
"hosted",
|
|
87659
|
+
"gdpr"
|
|
87660
|
+
],
|
|
87661
|
+
"useCases": [],
|
|
87662
|
+
"operations": [],
|
|
87663
|
+
"codeExamples": 0,
|
|
87664
|
+
"complexity": "beginner",
|
|
87665
|
+
"readingTime": "2 min",
|
|
87666
|
+
"contentLength": 2072,
|
|
87667
|
+
"relatedPages": []
|
|
87668
|
+
},
|
|
87669
|
+
"searchIndex": {
|
|
87670
|
+
"fullText": "what you can do # what you can do\n\nit's also your responsibility as a customer to ensure you are securing your code and data. this document lists some steps you can take.\n\n## all users\n\n- report security issues and [terms of service](https://n8n.io/legal/#terms) violations to security@n8n.io.\n- if more than one person uses your n8n instance, set up [user management](../../user-management/) and follow the [best practices](../../user-management/best-practices/).\n- use oauth to connect integrations whenever possible.\n\n## self-hosted users\n\nif you self-host n8n, there are additional steps you can take:\n\n- set up a reverse proxy to handle tls, ensuring data is encrypted in transit.\n- ensure data is encrypted at rest by using encrypted partitions, or encryption at the hardware level, and ensuring n8n and its database is written to that location.\n- run a [security audit](../../hosting/securing/security-audit/).\n- be aware of the [risks](../../integrations/community-nodes/risks/) when installing community nodes, or choose to disable them.\n- make sure users can't import external modules in the code node. refer to [environment variables | nodes](../../hosting/configuration/environment-variables/nodes/) for more information.\n- choose to exclude certain nodes. for example, you can disable nodes like execute command or ssh. refer to [environment variables | nodes](../../hosting/configuration/environment-variables/nodes/) for more information.\n- for maximum privacy, you can [isolate n8n](../../hosting/configuration/configuration-examples/isolation/).\n\n### gdpr for self-hosted users\n\nif you self-host n8n, you are responsible for deleting user data. if you need to delete data on behalf of one of your users, you can delete the respective execution. n8n recommends configuring n8n to prune execution data automatically every few days to avoid effortful gdpr request handling as much as possible. configure this using the `executions_data_max_age` environment variable. refer to [environment variables](../../hosting/configuration/environment-variables/) for more information.\n what you can do",
|
|
87671
|
+
"importantTerms": [
|
|
87672
|
+
"nodes",
|
|
87673
|
+
"environment",
|
|
87674
|
+
"data",
|
|
87675
|
+
"variables",
|
|
87676
|
+
"users",
|
|
87677
|
+
"hosting",
|
|
87678
|
+
"configuration",
|
|
87679
|
+
"your",
|
|
87680
|
+
"security",
|
|
87681
|
+
"more",
|
|
87682
|
+
"user",
|
|
87683
|
+
"self",
|
|
87684
|
+
"what",
|
|
87685
|
+
"management",
|
|
87686
|
+
"encrypted",
|
|
87687
|
+
"refer",
|
|
87688
|
+
"information"
|
|
87689
|
+
]
|
|
87690
|
+
}
|
|
87691
|
+
},
|
|
87692
|
+
{
|
|
87693
|
+
"id": "page-1203",
|
|
87629
87694
|
"title": "Privacy",
|
|
87630
87695
|
"url": "https://docs.n8n.io/privacy-security/privacy/index.md",
|
|
87631
87696
|
"urlPath": "privacy-security/privacy/index.md",
|
|
@@ -87743,65 +87808,6 @@
|
|
|
87743
87808
|
]
|
|
87744
87809
|
}
|
|
87745
87810
|
},
|
|
87746
|
-
{
|
|
87747
|
-
"id": "page-1203",
|
|
87748
|
-
"title": "What you can do",
|
|
87749
|
-
"url": "https://docs.n8n.io/privacy-security/what-you-can-do/index.md",
|
|
87750
|
-
"urlPath": "privacy-security/what-you-can-do/index.md",
|
|
87751
|
-
"category": "other",
|
|
87752
|
-
"subcategory": null,
|
|
87753
|
-
"nodeName": null,
|
|
87754
|
-
"nodeType": null,
|
|
87755
|
-
"content": {
|
|
87756
|
-
"markdown": "# What you can do\n\nIt's also your responsibility as a customer to ensure you are securing your code and data. This document lists some steps you can take.\n\n## All users\n\n- Report security issues and [terms of service](https://n8n.io/legal/#terms) violations to security@n8n.io.\n- If more than one person uses your n8n instance, set up [User management](../../user-management/) and follow the [Best practices](../../user-management/best-practices/).\n- Use OAuth to connect integrations whenever possible.\n\n## Self-hosted users\n\nIf you self-host n8n, there are additional steps you can take:\n\n- Set up a reverse proxy to handle TLS, ensuring data is encrypted in transit.\n- Ensure data is encrypted at rest by using encrypted partitions, or encryption at the hardware level, and ensuring n8n and its database is written to that location.\n- Run a [Security audit](../../hosting/securing/security-audit/).\n- Be aware of the [Risks](../../integrations/community-nodes/risks/) when installing community nodes, or choose to disable them.\n- Make sure users can't import external modules in the Code node. Refer to [Environment variables | Nodes](../../hosting/configuration/environment-variables/nodes/) for more information.\n- Choose to exclude certain nodes. For example, you can disable nodes like Execute Command or SSH. Refer to [Environment variables | Nodes](../../hosting/configuration/environment-variables/nodes/) for more information.\n- For maximum privacy, you can [Isolate n8n](../../hosting/configuration/configuration-examples/isolation/).\n\n### GDPR for self-hosted users\n\nIf you self-host n8n, you are responsible for deleting user data. If you need to delete data on behalf of one of your users, you can delete the respective execution. n8n recommends configuring n8n to prune execution data automatically every few days to avoid effortful GDPR request handling as much as possible. Configure this using the `EXECUTIONS_DATA_MAX_AGE` environment variable. Refer to [Environment variables](../../hosting/configuration/environment-variables/) for more information.\n",
|
|
87757
|
-
"excerpt": "# What you can do It's also your responsibility as a customer to ensure you are securing your code and data. This document lists some steps you can take. ## All users - Report security issues and [terms of service](https://n8n.io/legal/#terms) violations to security@n8n.io. - If more than one person uses your n8n instance, set up [User management](../../user-management/) and follow the [Best practices](../../user-management/best-practices/). - Use OAuth to connect integrations whenever possib...",
|
|
87758
|
-
"sections": [
|
|
87759
|
-
{
|
|
87760
|
-
"title": "What you can do",
|
|
87761
|
-
"level": 1,
|
|
87762
|
-
"content": "It's also your responsibility as a customer to ensure you are securing your code and data. This document lists some steps you can take."
|
|
87763
|
-
}
|
|
87764
|
-
]
|
|
87765
|
-
},
|
|
87766
|
-
"metadata": {
|
|
87767
|
-
"keywords": [
|
|
87768
|
-
"what",
|
|
87769
|
-
"users",
|
|
87770
|
-
"self",
|
|
87771
|
-
"hosted",
|
|
87772
|
-
"gdpr"
|
|
87773
|
-
],
|
|
87774
|
-
"useCases": [],
|
|
87775
|
-
"operations": [],
|
|
87776
|
-
"codeExamples": 0,
|
|
87777
|
-
"complexity": "beginner",
|
|
87778
|
-
"readingTime": "2 min",
|
|
87779
|
-
"contentLength": 2072,
|
|
87780
|
-
"relatedPages": []
|
|
87781
|
-
},
|
|
87782
|
-
"searchIndex": {
|
|
87783
|
-
"fullText": "what you can do # what you can do\n\nit's also your responsibility as a customer to ensure you are securing your code and data. this document lists some steps you can take.\n\n## all users\n\n- report security issues and [terms of service](https://n8n.io/legal/#terms) violations to security@n8n.io.\n- if more than one person uses your n8n instance, set up [user management](../../user-management/) and follow the [best practices](../../user-management/best-practices/).\n- use oauth to connect integrations whenever possible.\n\n## self-hosted users\n\nif you self-host n8n, there are additional steps you can take:\n\n- set up a reverse proxy to handle tls, ensuring data is encrypted in transit.\n- ensure data is encrypted at rest by using encrypted partitions, or encryption at the hardware level, and ensuring n8n and its database is written to that location.\n- run a [security audit](../../hosting/securing/security-audit/).\n- be aware of the [risks](../../integrations/community-nodes/risks/) when installing community nodes, or choose to disable them.\n- make sure users can't import external modules in the code node. refer to [environment variables | nodes](../../hosting/configuration/environment-variables/nodes/) for more information.\n- choose to exclude certain nodes. for example, you can disable nodes like execute command or ssh. refer to [environment variables | nodes](../../hosting/configuration/environment-variables/nodes/) for more information.\n- for maximum privacy, you can [isolate n8n](../../hosting/configuration/configuration-examples/isolation/).\n\n### gdpr for self-hosted users\n\nif you self-host n8n, you are responsible for deleting user data. if you need to delete data on behalf of one of your users, you can delete the respective execution. n8n recommends configuring n8n to prune execution data automatically every few days to avoid effortful gdpr request handling as much as possible. configure this using the `executions_data_max_age` environment variable. refer to [environment variables](../../hosting/configuration/environment-variables/) for more information.\n what you can do",
|
|
87784
|
-
"importantTerms": [
|
|
87785
|
-
"nodes",
|
|
87786
|
-
"environment",
|
|
87787
|
-
"data",
|
|
87788
|
-
"variables",
|
|
87789
|
-
"users",
|
|
87790
|
-
"hosting",
|
|
87791
|
-
"configuration",
|
|
87792
|
-
"your",
|
|
87793
|
-
"security",
|
|
87794
|
-
"more",
|
|
87795
|
-
"user",
|
|
87796
|
-
"self",
|
|
87797
|
-
"what",
|
|
87798
|
-
"management",
|
|
87799
|
-
"encrypted",
|
|
87800
|
-
"refer",
|
|
87801
|
-
"information"
|
|
87802
|
-
]
|
|
87803
|
-
}
|
|
87804
|
-
},
|
|
87805
87811
|
{
|
|
87806
87812
|
"id": "page-1204",
|
|
87807
87813
|
"title": "0.x",
|
|
@@ -88044,13 +88050,13 @@
|
|
|
88044
88050
|
"nodeName": null,
|
|
88045
88051
|
"nodeType": null,
|
|
88046
88052
|
"content": {
|
|
88047
|
-
"markdown": "# Release notes pre 2.0\n\nNew features and bug fixes for n8n.\n\nYou can also view the [Releases](https://github.com/n8n-io/n8n/releases) in the GitHub repository.\n\nStable and Beta versions\n\nn8n 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).\n\nCurrent `stable`: 2.15.0 Current `beta`: 2.16.0\n\n## How to update n8n\n\nThe steps to update your n8n depend on which n8n platform you use. Refer to the documentation for your n8n:\n\n- [Cloud](../../manage-cloud/update-cloud-version/)\n- Self-hosted options:\n - [npm](../../hosting/installation/npm/)\n - [Docker](../../hosting/installation/docker/)\n\n## Semantic versioning in n8n\n\nn8n uses [semantic versioning](https://semver.org/). All version numbers are in the format `MAJOR.MINOR.PATCH`. Version numbers increment as follows:\n\n- MAJOR version when making incompatible changes which can require user action.\n- MINOR version when adding functionality in a backward-compatible manner.\n- PATCH version when making backward-compatible bug fixes.\n\nOlder versions\n\nYou can find the release notes for older versions of n8n [here](../0-x/)\n\n## n8n@1.123.29\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.28...n8n@1.123.29) for this version.\\\n**Release date:** 2026-04-07\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.28\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.27...n8n@1.123.28) for this version.\\\n**Release date:** 2026-04-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.27\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.26...n8n@1.123.27) for this version.\\\n**Release date:** 2026-03-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.26\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.25...n8n@1.123.26) for this version.\\\n**Release date:** 2026-03-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.25\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.24...n8n@1.123.25) for this version.\\\n**Release date:** 2026-03-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.24\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.23...n8n@1.123.24) for this version.\\\n**Release date:** 2026-03-13\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.23\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.22...n8n@1.123.23) for this version.\\\n**Release date:** 2026-03-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.22\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.21...n8n@1.123.22) for this version.\\\n**Release date:** 2026-02-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.20\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.19...n8n@1.123.20) for this version.\\\n**Release date:** 2026-02-06\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.19\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.18...n8n@1.123.19) for this version.\\\n**Release date:** 2026-02-06\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.18\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.17...n8n@1.123.18) for this version.\\\n**Release date:** 2026-01-29\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.16\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.15...n8n@1.123.16) for this version.\\\n**Release date:** 2026-01-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.15\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.14...n8n@1.123.15) for this version.\\\n**Release date:** 2026-01-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.13\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.12...n8n@1.123.13) for this version.\\\n**Release date:** 2026-01-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.12\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.11...n8n@1.123.12) for this version.\\\n**Release date:** 2026-01-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.11\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.10...n8n@1.123.11) for this version.\\\n**Release date:** 2026-01-08\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.10\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.9...n8n@1.123.10) for this version.\\\n**Release date:** 2025-12-31\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.9\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.8...n8n@1.123.9) for this version.\\\n**Release date:** 2025-12-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.8\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.7...n8n@1.123.8) for this version.\\\n**Release date:** 2025-12-22\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.7\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.6...n8n@1.123.7) for this version.\\\n**Release date:** 2025-12-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.6\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.5...n8n@1.123.6) for this version.\\\n**Release date:** 2025-12-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.4...n8n@1.123.5) for this version.\\\n**Release date:** 2025-12-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.2...n8n@1.123.3) for this version.\\\n**Release date:** 2025-12-05\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.1...n8n@1.123.2) for this version.\\\n**Release date:** 2025-12-04\n\nNext version\n\nThis is the `next` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.0...n8n@1.123.1) for this version.\\\n**Release date:** 2025-12-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.0...n8n@1.123.1) for this version.\\\n**Release date:** 2025-12-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.0...n8n@1.123.0) for this version.\\\n**Release date:** 2025-12-01\n\nThis release contains bug fixes.\n\n### Contributors\n\n[farzad528](https://github.com/farzad528)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.4...n8n@1.122.5) for this version.\\\n**Release date:** 2025-12-04\n\nLatest version\n\nThis is the `latest` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.3...n8n@1.122.4) for this version.\\\n**Release date:** 2025-11-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.2...n8n@1.122.3) for this version.\\\n**Release date:** 2025-11-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.0...n8n@1.122.2) for this version.\\\n**Release date:** 2025-11-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.121.0...n8n@1.122.0) for this version.\\\n**Release date:** 2025-11-24\n\nThis release contains bug fixes and features.\n\n### MCP Client node\n\nThe **MCP Client node** allows you to connect to and use tools exposed by remote MCP servers directly within your workflow.\n\nPreviously, this functionality was only available through AI Agents using the **MCP Client Tool**. With this standalone node, you can now call MCP servers *from any step* in your workflow without relying on an Agent - providing greater flexibility and control over how and where you integrate external tools.\n\n### Custom project roles\n\n**What's new**\\\nYou can now define **custom project roles** that precisely control what a user can do **inside a project**.\n\n- Three **system roles** remain built‑in and non-editable (Admin, Editor, Viewer)\n- You can **create your own roles** (e.g. “Workflow Builder”, “Credential Manager”, “Read‑only Analyst”) with granular permissions per resource:\n- Project\n- Folders\n- Workflows\n- Credentials\n- Data tables / Variables\n- Pushing changes via source control\\\n Example: a “Workflow Builder” role that can:\n- View everything in the project\n- Create and edit workflows and folders\n- Use existing credentials but not create or edit credentials\n\nProject roles is now available in the settings of your n8n Enterprise instance.\n\n**How it works**\n\n1. Go to the new Project roles section (instance admins only).\n1. Start from a preset (Admin, Editor, Viewer) or from scratch.\n1. Configure CRUD‑style permissions.\n1. Save the role. It now becomes available in the project member picker alongside system roles.\n1. Assign these roles to project members.\n\nCustom project roles let you assign permissions that match your organization's needs, improving governance and security in a clear, transparent, and manageable way.\n\nCustom project roles is only available on **n8n enterprise**.\n\n### User provisioning via SSO\n\nIf you’re using SAML or OIDC, your Identity Provider (Okta, Azure AD, Google Workspace, etc.) can now automatically assign each user’s instance role and project roles when they log in.\n\nWhen enabled, administrators can map a group or individual on their SSO identity provider to an instance role and one or more project roles.\n\nThis allows you to manage access centrally from your IdP with automated onboarding and off-boarding, eliminating manual access updates inside the n8n UI\n\nLearn more in our dedicated documentation pages.\n\nFor [OIDC](../../user-management/oidc/setup/#instance-and-project-access-provisioning) For [SAML](../../user-management/saml/setup/#instance-and-project-access-provisioning)\n\nNotes: User provisioning is not real-time and updates apply on the user’s next login.\n\nUser provisioning is only available on n8n Enterprise.\n\n- The AI Workflow Builder now uses improved internal best-practice instructions, which helps it generate higher quality workflows for users.\n- Core updates allow creating data tables from CSV files, configurable workflow statistics, and improved user role provisioning for enterprise, including SSO settings integration.\n- Enterprise customers using Single Sign On via SAML or OIDC can now provision the instance role and project role of each user in their organisation from their Identity Provider.\n - See the [new SAML documentation](../../user-management/saml/setup/#instance-and-project-access-provisioning)\n - See the [new OIDC documentation](../../user-management/oidc/setup/#instance-and-project-access-provisioning)\n- The editor features a dismissable callout for scaling mode, CSV download for data tables, custom project roles (Beta), and enhanced data table visibility.\n- Additional improvements include Stripe billing meter events, and updates to binary data handling and workflow search.\n\n### Contributors\n\n[mi1os](https://github.com/mi1os)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.121.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.121.2...n8n@1.121.3) for this version.\\\n**Release date:** 2025-11-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.121.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.121.1...n8n@1.121.2) for this version.\n\n- Fixed an issue with MCP access scope in the core system.\n- Updated editor to improve notice background colors for better visibility.\n\nThis release also contains bug fixes. **Release date:** 2025-11-20\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.121.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.121.0...n8n@1.121.1) for this version.\n\n- Prepared patch release 1.121.1 by updating version numbers across all packages.\n- Added a changelog entry for version 1.121.1 to document the release.\n\n**Release date:** 2025-11-19\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.121.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.120.0...n8n@1.121.0) for this version.\n\n**Release date:** 2025-11-18\n\n### Critical security update\n\nThis release contains a critical security update. For more information, see [Security Advisory: Security Vulnerability in n8n Versions 1.65-1.120.4](https://blog.n8n.io/security-advisory-20260108/).\n\n### Instance-level MCP connections (beta)\n\nYou can now enable MCP connections at the instance level, giving MCP-compatible AI platforms access to all selected workflows through a single oAuth-secured connection.\n\nOnce connected, these platforms can discover and interact with your workflows directly from their own interfaces, so you can observe, query, and trigger n8n workflows without switching contexts. As you add new MCP-enabled workflows to your instance, they automatically become available through the same connection without additional setup.\n\n🛠️ How to: To enable workflows through an instance-level MCP connection, both your instance and each workflow must be opted in.\n\n- To turn this feature on in your n8n instance, go the settings page for the instance and switch the Enable MCP Access toggle to on.\n- To allow access to individual workflows, go to the settings in each workflow and switch the Available in MCP toggle to on.\n\n🧠 Keep in mind:\n\n- To keep access organized and auditable, consider using a workspace or team account when connecting on behalf of an organization.\n- All platforms connected to your instance MCP will have access to each of the workflows you have enabled. At this time, you cannot limit access of individual workflows to particular platforms.\n\nThis feature simplifies integration and improves visibility across AI platforms that support MCP, helping you use your n8n workflows directly in the tools where you already work and experiment. [Learn more in documentation.](../../advanced-ai/accessing-n8n-mcp-server/)\n\nEnable MCP for an instance in instance settings.\n\nEnable MCP for each workflow in workflow settings.\n\n### Contributors\n\n[vicalca](https://github.com/vicalca)\\\n[datpp-ct](https://github.com/datpp-ct)\\\n[cesars-gh](https://github.com/cesars-gh)\\\n[farzad528](https://github.com/farzad528)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.120.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.120.3...n8n@1.120.4) for this version.\n\n**Release date:** 2025-11-19\n\n- Prepared for release 1.120.4 by updating version numbers across all core, backend, AI/LLM, frontend, and tooling packages.\n- Added a changelog entry for version 1.120.4 to document the release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.120.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.120.1...n8n@1.120.2) for this version.\\\n**Release date:** 2025-11-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.120.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.120.0...n8n@1.120.1) for this version.\\\n**Release date:** 2025-11-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.120.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.119.0...n8n@1.120.0) for this version.\\\n**Release date:** 2025-11-10\n\nThis release contains **security updates** and bug fixes. We recommend all users upgrade promptly to version 1.120 or higher.\n\n### Contributors\n\n[rothenbergt](https://github.com/rothenbergt)\n\n## n8n@1.119.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.119.1...n8n@1.119.2) for this version.\\\n**Release date:** 2025-11-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.119.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.119.0...n8n@1.119.1) for this version.\\\n**Release date:** 2025-11-10\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.118.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.118.1...n8n@1.118.2) for this version.\\\n**Release date:** 2025-11-05\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.119.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.118.0...n8n@1.119.0) for this version.\\\n**Release date:** 2025-11-03\n\nThis release includes multiple bug fixes for AI Agent, task runners, editor, and integrations, as well as new features like improved workflow settings, AWS Assume Role credentials, and enhanced security and audit capabilities.\n\n### Guardrails Node\n\nThe Guardrails node provides a set of rules and policies that control an AI agent's behavior by filtering its inputs and outputs. This helps safeguard from malicious input and from generating unsafe or undesirable responses. There are two operations:\n\n- Check Text for Violations: Validate text against a set of policies (e.g. NSFW, prompt injection).\n- Sanitize Text: Detects and replaces specific data such as PII, URLs, or secrets with placeholders.\n\nThe default presets and prompts are adapted from the open-source [guardrails package](https://github.com/openai/openai-guardrails-js) made available by OpenAI.\n\nFor more info, see [Guardrails documentation](../../integrations/builtin/core-nodes/n8n-nodes-langchain.guardrails/)\n\n### OAuth for MCP Client Tool node\n\nThe MCP Client Tool now supports OAuth authentication, enabling secure connections to APIs that implement delegated access flows. [Learn more](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolmcp/) about the MCP Client Tool node.\n\nAuthentication options in MCP Client Tool node\n\n### Contributors\n\n[cesars-gh](https://github.com/cesars-gh)\\\n[ongdisheng](https://github.com/ongdisheng)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.118.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.118.0...n8n@1.118.1) for this version.\\\n**Release date:** 2025-10-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.117.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.117.2...n8n@1.117.3) for this version.\\\n**Release date:** 2025-10-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.118.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.117.0...n8n@1.118.0) for this version.\\\n**Release date:** 2025-10-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Project-level variables\n\nYou can now create variables at either the global or project level.\n\n- Project-level variables are only visible and usable by members of that project.\n- Global variables can be overridden at the project level for more specific configurations.\n- The maximum character limit has been increased to 1,000 to support longer values.\n\nThis update improves security and flexibility as part of our ongoing effort to isolate data and settings per project.\n\n### Improvements to Environments\n\nWe’ve made several updates to improve reliability, consistency, and control across environments.\n\n- **Projects are now fully synchronized across environments.** When a workflow is pushed within a project, it’s automatically created and synced in all environments where it’s pulled. Moving, renaming, or deleting projects is now reflected everywhere, keeping instances aligned.\n- **Improved protection for read-only environments.** Read-only instances now block all changes, including folder moves and workflow ownership updates, ensuring production environments stay stable and isolated.\n- **Bug fix: tag mapping synchronization.** Fixed an issue where tag mappings only updated when tags changed. They now sync on every commit for consistent tagging across environments.\n\n### Custom date ranges for Insights\n\nYou can now define custom date ranges instead of using fixed ones, giving you more control over the data you analyze.\n\n## n8n@1.117.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.117.1...n8n@1.117.2) for this version.\\\n**Release date:** 2025-10-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.117.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.117.0...n8n@1.117.1) for this version.\\\n**Release date:** 2025-10-24\n\nThis release contains bug fixes.\n\n### AI Workflow Builder is now available to Enterprise Cloud users.\n\nAI Workflow Builder turns prompts into workflows. Describe what you want to build, and n8n will generate a draft workflow by adding, configuring, and connecting nodes for you. From there, you can refine and expand the workflow directly in the editor.\n\n**What’s new:**\n\n- Previously available to Starter and Pro users, AI Workflow Builder is now accessible to Enterprise Cloud users as well, with 1,000 monthly credits.\n- Supported on n8n version 1.115+. **If you don’t see the feature yet, open /settings/usage to trigger a license refresh.**\n- We’ve fixed a bug and now cloud users on v1.117.1 onwards will have access to a more reliable builder.\n- We’re currently working on bringing AI Workflow Builder to self-hosted users as well, including Community, Business, and Enterprise.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.117.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.116.0...n8n@1.117.0) for this version.\\\n**Release date:** 2025-10-21\n\nThis release contains bug fixes.\n\n### Contributors\n\n[jackfrancismurphy](https://github.com/jackfrancismurphy)\\\n[JiriDeJonghe](https://github.com/JiriDeJonghe)\\\n[ramkrishna2910](https://github.com/ramkrishna2910)\\\nOracle and/or its affiliates ([sudarshan12s](https://github.com/sudarshan12s))\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.116.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.116.1...n8n@1.116.2) for this version.\\\n**Release date:** 2025-10-21\n\nThis release contains a bug fix.\n\n## n8n@1.115.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.3...n8n@1.115.4) for this version.\\\n**Release date:** 2025-10-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.116.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.116.0...n8n@1.116.1) for this version.\\\n**Release date:** 2025-10-14\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.116.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.0...n8n@1.116.0) for this version.\\\n**Release date:** 2025-10-13\n\nThis release contains bug fixes.\n\n### Data migration tool\n\nYou can now easily migrate n8n data between different database types. This new tooling currently supports SQLite and Postgres, making the transition to a scaling database choice simpler, allowing you to take your data with you.\n\nThe tooling comes in the form of two new CLI commands, `export:entities` and `import:entities`\n\n**`Export`** The new export command lets you export data from your existing n8n database (SQLite / Postgres), producing a set of encrypted files within a compressed directory for you to move around and use with the import commands.\n\nFor details, see [Export entities](../../hosting/cli-commands/#export-entities)\n\n**`Import`** The new import command allows you to read from a compressed and encrypted set of files generated from the new export command, and import them in to your new database of choice (SQLite / Postgres) to be used with your n8n instance.\n\nFor details, see [Import entities](../../hosting/cli-commands/#import-entities)\n\n### Contributors\n\n[JHTosas](https://github.com/JHTosas)\\\n[clesecq](https://github.com/clesecq)\\\n[Gulianrdgd](https://github.com/Gulianrdgd)\\\n[tishun](https://github.com/tishun)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.116.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.0...n8n@1.116.0) for this version.\\\n**Release date:** 2025-10-13\n\nThis release contains bug fixes.\n\n### Contributors\n\n[JHTosas](https://github.com/JHTosas)\\\n[clesecq](https://github.com/clesecq)\\\n[Gulianrdgd](https://github.com/Gulianrdgd)\\\n[tishun](https://github.com/tishun)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.115.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.2...n8n@1.115.3) for this version.\\\n**Release date:** 2025-10-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.115.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.1...n8n@1.115.2) for this version.\\\n**Release date:** 2025-10-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.114.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.3...n8n@1.114.4) for this version.\\\n**Release date:** 2025-10-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.115.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.0...n8n@1.115.0) for this version.\\\n**Release date:** 2025-10-06\n\nThis release contains bug fixes.\n\n### AI Workflow Builder (Beta)\n\n**AI Workflow Builder** turns your natural language prompts into working automations. Describe what you want to build, and n8n will generate a draft workflow by adding and configuring nodes and wiring up the logic for you. From there, you can refine, expand, or adjust the workflow directly in the editor.\n\nThis feature helps you move from idea to implementation faster and without losing technical control. It’s especially helpful when starting from a blank canvas, validating an approach, or exploring new nodes and capabilities. Multi-turn interaction lets you iterate in conversation, turning your ideas into structured, production-ready workflows step by step.\n\nLearn more about how we we’re building this feature in our [forum post](https://community.n8n.io/t/ai-powered-workflow-building-coming-soon/196499).\n\n[](/_video/release-notes/AI_Workflow_Builder.webm)\n\n**Availability:**\n\n- This feature is initially going to be available for Cloud users on the 14-day Trial, Starter and Pro plans.\n- Availability for Enterprise users on Cloud will follow in a future update.\n- We are actively exploring the best way to bring this feature to self-hosted users.\n\n**Rollout timing:**\n\n- To ensure the smoothest experience for all users, this feature will be rolled out to users on version 1.115.0 over the course of a week so you may not have access to the feature immediately when you upgrade to 1.115.0.\n\n**Credit limits by plan:** This feature will have monthly credit limits [by plan](https://n8n.io/pricing/).\n\n- Each prompt/interaction with the AI Workflow Builder consumes one credit.\n- Trial users have access to 20 credits, Starter plans have 50 per month and Pro plans will have 150 credits per month.\n- At this time, there will not be a way to access additional credits within your plan, however we are we are exploring this.\n\nLearn more about AI Workflow Builder in [documentation](https://docs.n8n.io/advanced-ai/ai-workflow-builder/).\n\n### Source Control: Added HTTPS support\n\nYou can now connect to Git repositories via HTTPS in addition to SSH, making Source Control usable in environments where SSH is restricted.\n\nHTTPS is now supported as a connection type in Environments.\n\n### Contributors\n\n[baileympearson](https://github.com/baileympearson)\\\n[h40huynh](https://github.com/h40huynh)\\\n[Ankit-69k](https://github.com/Ankit-69k)\\\n[francisfontoura](https://github.com/francisfontoura)\\\n[iocanel](https://github.com/iocanel)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.114.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.2...n8n@1.114.3) for this version.\\\n**Release date:** 2025-10-06\n\nThis release contains bug fixes.\n\n## n8n@1.114.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.1...n8n@1.114.2) for this version.\\\n**Release date:** 2025-10-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.114.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.0...n8n@1.114.1) for this version.\\\n**Release date:** 2025-10-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.114.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.113.0...n8n@1.114.0) for this version.\\\n**Release date:** 2025-09-29\n\nThis release contains core updates, editor improvements, project updates, performance improvements, and bug fixes.\n\n### Contributors\n\n[nealzhu3](https://github.com/nealzhu3)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.113.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.113.2...n8n@1.113.3) for this version.\\\n**Release date:** 2025-09-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.6\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.5...n8n@1.112.6) for this version.\\\n**Release date:** 2025-09-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.113.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.113.1...n8n@1.113.2) for this version.\\\n**Release date:** 2025-09-24\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Python task runner\n\nThis version introduces the **Python task runner** as a beta feature. This feature secures n8n's Python sandbox and enables users to run real Python modules in n8n workflows. The original Pyodide-based implementation will be phased out.\n\nThis is a **breaking change** that replaces Pyodide - see [here](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.code/#python-native-beta) for a list of differences. Any Code node set to the legacy `python` parameter will need to be manually updated to use the new `pythonNative` parameter. Any Code node script set to `python` and relying on Pyodide syntax is likely to need to be manually adjusted to account for breaking changes.\n\n- For self-hosting users, see [here](https://docs.n8n.io/hosting/configuration/task-runners/#setting-up-external-mode) for deployment instructions for task runners going forward and how to install extra dependencies.\n- On n8n Cloud, this will be a gradual transition. If in your n8n Cloud instance the Code node offers an option named \"Python (Native) (Beta)\", then your instance has been transitioned to native Python and you will need to look out for any breaking changes. Imports are disabled for security reasons at this time.\n\nThe native Python runner is currently in beta and is subject to change as we find a balance between security and usability. Your feedback is welcome.\n\n## n8n@1.112.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.4...n8n@1.112.5) for this version.\\\n**Release date:** 2025-09-24\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.113.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.113.0...n8n@1.113.1) for this version.\\\n**Release date:** 2025-09-23\n\nThis release contains bug fixes.\n\n### Data tables\n\nWe’re excited to introduce **data tables**, bringing built-in data storage to n8n. You can now store and query structured data directly inside the platform, without relying on external databases for many common automation scenarios. Track workflow state between runs, store tokens or session data, keep product or customer reference tables, or stage intermediate results for multi-step processes.\n\nPreviously, persisting data meant provisioning and connecting to an external store such as Redis or Google Sheets. That added credential setup, infrastructure overhead, latency, and constant context switching. **Data tables** eliminate that friction and keeps your data easily editable and close to your workflows.\n\nData tables are available today on all plans. They currently support numbers, strings, and datetimes with JSON support coming soon. On Cloud, each instance can store up to 50 MB. On self-hosted setups, the default is also 50 MB, but this limit can be adjusted if your infrastructure allows.\n\n[Overview of data tables](https://www.youtube.com/watch?v=ljkiIkt6lZ4)\n\n🛠️ **How to:**\n\n**Create a data table**\n\n- From the canvas, open the **Create workflow** dropdown and select **Create Data table**.\n- Or, go to the **Overview** panel on the left-side navigation bar and open the **Data tables** tab.\n\n**Use a data table in your workflow**\n\n- Add the **Data table node** to your workflow to get, update, insert, upsert, or delete rows.\n\n**Adjust the storage limit** (self-hosted only)\n\n- Change the default 50 MB limit with the environment variable: `N8N_DATA_TABLES_MAX_SIZE_BYTES`. [See configuration docs](https://docs.n8n.io/hosting/configuration/configuration-methods/).\n\n🧠**Keep in mind**\n\n- Data tables don’t currently support foreign keys or default values.\n- For now, all data tables are accessible to everyone in a project. More granular permissions and sharing options are planned.\n\nLearn more about [**data tables**](../../data/data-tables/) and the [**Data table node**](../../integrations/builtin/core-nodes/n8n-nodes-base.datatable/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.3...n8n@1.112.4) for this version.\\\n**Release date:** 2025-09-23\n\nThis release contains an editor improvement.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.113.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.0...n8n@1.113.0) for this version.\\\n**Release date:** 2025-09-22\n\nThis release contains core updates, editor improvements, a new node, node updates, and bug fixes.\n\n### SSO improvements\n\nWe’ve made updates to strengthen Single Sign-On (SSO) reliability and security, especially for enterprise and multi-instance setups.\n\n- OIDC and SAML sync in multi-main setups \\[version: 1.113.0\\]: In multi-main deployments, updates to SSO settings are now synchronized across all instances, ensuring consistent login behavior everywhere.\n- Enhanced OIDC integration \\[version 1.111.0\\]: n8n now supports OIDC providers that enforce state and nonce parameters. These are validated during login, providing smoother and more secure Single Sign-On.\n\n### Filter insights by project\n\nWe've added project filtering to insights, enabling more granular reporting and visibility into individual project performance.\n\nFilter insights\n\n### Contributors\n\n[ongdisheng](https://github.com/ongdisheng)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.2...n8n@1.112.3) for this version.\\\n**Release date:** 2025-09-19\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.111.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.111.0...n8n@1.111.1) for this version.\\\n**Release date:** 2025-09-19\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.110.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.110.1...n8n@1.110.2) for this version.\\\n**Release date:** 2025-09-19\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.1...n8n@1.112.2) for this version.\\\n**Release date:** 2025-09-18\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.0...n8n@1.112.1) for this version.\\\n**Release date:** 2025-09-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.111.0...n8n@1.112.0) for this version.\\\n**Release date:** 2025-09-15\n\nThis release contains API improvements, core updates, editor improvements, node updates, and bug fixes.\n\n### Additional API Endpoints versions\n\nWe’ve made several updates to the Executions API:\n\n- Execution details: `GET /executions` now includes *status* and *workflow_name* in the response.\n- Retry execution endpoint: Added new public API endpoints to retry failed executions.\n- Additional filters: You can now filter executions by running or canceled status.\n\n### Enhancements to workflow diff\n\nWe added a several updates on workflows diffs as well:\n\n- Better view in Code nodes and Stickies: Workflow diffs now highlight changes per line instead of per block, making edits easier to review and understand.\n- Enable/Disable sync: You can now enable or disable sync in the viewport, letting you compare a workflow change in one view without affecting the other.\n\nWorkflow diff\n\n### Contributors\n\n[GuraaseesSingh](https://github.com/GuraaseesSingh)\\\n[jabbson](https://github.com/jabbson)\\\n[ongdisheng](https://github.com/ongdisheng)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.111.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.110.0...n8n@1.111.0) for this version.\\\n**Release date:** 2025-09-08\n\nThis release contains core updates, API improvements, node updates, and bug fixes.\n\n### Contributors\n\n[abellion](https://github.com/abellion)\\\n[cesars-gh](https://github.com/cesars-gh)\\\n[durran](https://github.com/durran)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.110.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.110.0...n8n@1.110.1) for this version.\\\n**Release date:** 2025-09-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.109.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.109.1...n8n@1.109.2) for this version.\\\n**Release date:** 2025-09-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.110.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.109.0...n8n@1.110.0) for this version.\\\n**Release date:** 2025-09-01\n\nThis release contains core updates, editor improvements, node updates, performance improvements, and bug fixes.\n\n### Contributors\n\n[heyxmirko](https://github.com/heyxmirko)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.109.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.109.0...n8n@1.109.1) for this version.\\\n**Release date:** 2025-08-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.108.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.108.1...n8n@1.108.2) for this version.\\\n**Release date:** 2025-08-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.109.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.108.0...n8n@1.109.0) for this version.\\\n**Release date:** 2025-08-25\n\nThis release contains core updates, editor improvements, node updates, performance improvements, and bug fixes.\n\n### Contributors\n\n[naXa777](https://github.com/naXa777)\\\n[prettycode2022](https://github.com/prettycode2022)\\\n[oppai](https://github.com/oppai)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.3...n8n@1.107.4) for this version.\\\n**Release date:** 2025-08-20\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.108.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.108.0...n8n@1.108.1) for this version.\\\n**Release date:** 2025-08-20\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.2...n8n@1.107.3) for this version.\\\n**Release date:** 2025-08-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.108.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.0...n8n@1.108.0) for this version.\\\n**Release date:** 2025-08-18\n\nThis release contains a new CLI tool, editor improvements, node updates, performance improvements, and bug fixes.\n\n### Workflow Diff\n\nFor teams working across different environments, deployments often involve multiple people making changes at different times. Without a clear view of those changes, it’s easy to miss something important.\n\n[Workflow Diff](../../source-control-environments/using/compare-changes/) gives you an easy and visual way to review workflow changes before you deploy them between environments.\n\nWith it, you can:\n\n- Quickly see what’s been added, changed, or deleted, with clear colour highlights.\n- Easily see important settings changes on a workflow.\n- Check changes inside each node, and spot connector updates, with a side-by-side view of its settings.\n- Get a quick count of all changes to understand the size of a deployment.\n\nWorkflow Diff\n\nWorkflow Diff eases the review and approval of changes before deployment, enabling teams to collaborate on workflows without breaking existing automations or disrupting production. It’s one step further in integrating DevOps best practices in n8n.\n\nNow available for Enterprise customers using Environments.\n\n### Contributors\n\n[ManuLasker](https://github.com/ManuLasker)\\\n[EternalDeiwos](https://github.com/EternalDeiwos)\\\n[jreyesr](https://github.com/jreyesr)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.1...n8n@1.107.2) for this version.\\\n**Release date:** 2025-08-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.0...n8n@1.107.1) for this version.\\\n**Release date:** 2025-08-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.106.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.106.2...n8n@1.106.3) for this version.\\\n**Release date:** 2025-08-11\n\nThis release contains a backported update.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.106.0...n8n@1.107.0) for this version.\\\n**Release date:** 2025-08-11\n\nThis release contains bug fixes.\n\n### Contributors\n\n[Amsal1](https://github.com/Amsal1)\\\n[andrewzolotukhin](https://github.com/andrewzolotukhin)\\\n[DMA902](https://github.com/DMA902)\\\n[fkowal](https://github.com/fkowal)\\\n[Gulianrdgd](https://github.com/Gulianrdgd)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.106.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.106.1...n8n@1.106.2) for this version.\\\n**Release date:** 2025-08-08\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.106.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.106.0...n8n@1.106.1) for this version.\\\n**Release date:** 2025-08-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.3...n8n@1.105.4) for this version.\\\n**Release date:** 2025-08-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.2...n8n@1.105.3) for this version.\\\n**Release date:** 2025-08-05\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.106.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.0...n8n@1.106.0) for this version.\\\n**Release date:** 2025-08-04\n\nThis release contains performance improvements, core updates, editor improvements, node updates, a new node, and bug fixes.\n\n### **No more limit of active workflows and new self-hosted Business Plan**\n\nWe have rolled out a new pricing model to make it easier for builders of all sizes to adopt and scale automation with n8n.\n\n***What’s new***\n\n**No more limit of active workflows.**\n\nAll n8n plans, from Starter to Enterprise, now include unlimited users, workflows, and steps. Our pricing is based on the volume of executions. Meaning you can build and test as many workflows as you want, including complex, data-heavy, or long-running automations, without worrying about quotas.\n\n**New self-hosted Business Plan for growing teams**\n\nDesigned for SMBs and mid-sized companies, the Business Plan includes features such as:\n\n- 6 shared projects\n- SSO, SAML and LDAP\n- Different environments\n- Global variables\n- Version control using Git\n- 30 days of Insights\n\nPlease note that this plan only includes support from our community forum. For dedicated support we recommend upgrading to our Enterprise plan.\n\n**Enterprise pricing now scales with executions**\n\nEnterprise plans no longer use workflow-based pricing, and is now also based on the volume of executions.\n\n***What you need to do***\n\nTo ensure these changes apply to your account, update your n8n instance to the latest version.\n\n[Read the blog](https://blog.n8n.io/build-without-limits-everything-you-need-to-know-about-n8ns-new-pricing/) for full details.\n\n### Contributors\n\n[baruchiro](https://github.com/baruchiro)\\\n[killthekitten](https://github.com/killthekitten)\\\n[baileympearson](https://github.com/baileympearson)\\\n[Yingrjimsch](https://github.com/Yingrjimsch)\\\n[joshualipman123](https://github.com/joshualipman123)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.1...n8n@1.105.2) for this version.\\\n**Release date:** 2025-08-01\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.0...n8n@1.105.1) for this version.\\\n**Release date:** 2025-08-01\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.104.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.104.1...n8n@1.104.2) for this version.\\\n**Release date:** 2025-07-31\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.104.0...n8n@1.105.0) for this version.\\\n**Release date:** 2025-07-28\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### **Respond to Chat node**\n\nWith the [\\*\\*Respond to Chat](../../integrations/builtin/core-nodes/n8n-nodes-langchain.chat/) node\\*\\*, you can now access Human-in-the-Loop functionality natively in n8n Chat.\n\nEnable conversational experiences where you can ask for clarification, request approval before taking further action, and get back intermediate results — all within a single workflow execution.\n\nThis unlocks multi-turn interactions that feel more natural and reduce the number of executions required. It is ideal for building interactive AI use cases like conversational forms, branched workflows based on user replies, and step-by-step approvals.\n\n🛠️ **How to:**\n\n- Add a **Chat Trigger** node and select **Using Respond Nodes** for the **Response mode**\n- Place the **Respond to Chat** node anywhere in your workflow to send a message into the Chat and optionally wait for the user to input a response before continuing execution of the workflow steps.\n\n[](/_video/release-notes/Respond-to-chat.webm)\n\n### Contributors\n\n[dana-gill](https://github.com/dana-gill)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.104.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.104.0...n8n@1.104.1) for this version.\\\n**Release date:** 2025-07-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.103.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.103.1...n8n@1.103.2) for this version.\\\n**Release date:** 2025-07-22\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.104.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.103.0...n8n@1.104.0) for this version.\\\n**Release date:** 2025-07-21\n\n\\=======\n\nThis release contains core updates, editor improvements, a new node, node updates, and bug fixes.\n\n### Contributors\n\n[nunulk](https://github.com/nunulk)\\\n[iaptsiauri](https://github.com/iaptsiauri)\\\n[KGuillaume-chaps](https://github.com/KGuillaume-chaps)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.101.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.101.2...n8n@1.101.3) for this version.\\\n**Release date:** 2025-07-18\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.3...n8n@1.102.4) for this version.\\\n**Release date:** 2025-07-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.103.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.103.0...n8n@1.103.1) for this version.\\\n**Release date:** 2025-07-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.2...n8n@1.102.3) for this version.\\\n**Release date:** 2025-07-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.103.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.0...n8n@1.103.0) for this version.\\\n**Release date:** 2025-07-14\n\nThis release contains core updates, editor improvements, new nodes, node improvements, and bug fixes.\n\n### **Chat streaming**\n\nNo more waiting for full responses to load when using the n8n chat interface. **Streaming** now delivers AI-generated text replies word by word so users can read messages as they’re being generated. It feels faster, smoother, and more like what people expect from chat experiences.\n\nStreaming is available in public chat views (hosted or embedded) and can be used in custom apps via webhook.\n\n🛠️ How-to\n\nConfigure streaming in the Node Details View of these nodes:\n\n- Chat Trigger node: Options>Add Field>Response Mode>Streaming\n- Webhook node: Respond>Streaming\n- AI Agent node: Add option> Enable streaming\n\n[](/_video/release-notes/streaming.webm)\n\n### Improved instance user list with more visibility\n\nThe instance user list has been updated with a new table layout and additional details to help admins manage access more easily.\n\nYou can now:\n\n- See total users and filter by name or email\n- View which projects each user has access to\n- Whether a user has enabled 2FA and sort based on that\n- See the last active date for each user\n\nThis makes it easier to audit user activity, identify inactive accounts, and understand how access is distributed across your instance.\n\n### Webhook HTML responses\n\nStarting with this release, if your workflow sends an HTML response to a webhook, n8n automatically wraps the content in an `<iframe>`. This is a security mechanism to protect the instance users.\n\nThis has the following implications:\n\n- HTML renders in a sandboxed iframe instead of directly in the parent document.\n- JavaScript code that attempts to access the top-level window or local storage will fail.\n- Authentication headers aren't available in the sandboxed iframe (for example, basic auth). You need to use an alternative approach, like embedding a short-lived access token within the HTML.\n- Relative URLs (for example, `<form action=\"/\">`) won't work. Use absolute URLs instead.\n\n### Built-in Metrics for AI Evaluations\n\nUsing evaluations is a best practice for any AI solution, and a must if reliability and predictability are business-critical. With this release, we’ve made it easier to set up evaluations in n8n by introducing a set of built-in metrics. These metrics can review AI responses and assign scores based on factors like correctness, helpfulness, and more.\n\nYou can run regular evaluations and review scores over time as a way to monitor your AI workflow's performance. You can also compare results across different models to help guide model selection, or run evaluations before and after a prompt change to support data-driven, iterative building.\n\nAs with all evaluations in n8n, you’ll need a dataset that includes the inputs you want to test. For some evaluations, the dataset must also include expected outputs (ground truth) to compare against. The evaluation workflow runs each input through the portion you're testing to generate a response. The built-in metric scores each response based on the aspect you're measuring, allowing you to compare results before and after changes or track trends over time in the Evaluations tab.\n\nYou can still define your own custom metrics, but for common use cases, the built-in options make it much faster to implement.\n\n🛠️ **How to:**\n\n1. Set up your evaluation as described [here](../../advanced-ai/evaluations/metric-based-evaluations/#how-it-works), using an **Evaluation** node as the trigger and another with the **Set Metrics** operation.\n1. In the **Set Metrics** node, choose a metric from the dropdown list.\n1. Define any additional parameters required for your selected metric. In most cases, this includes mapping the dataset columns to the appropriate fields.\n\n📏 **Available built-in metrics:**\n\n- **Correctness (AI-based):** Compares AI workflow-generated responses to expected answers. Another LLM acts as a judge, scoring the responses based on guidance you provide in the prompt.\n- **Helpfulness (AI-based):** Evaluates how helpful a response is in relation to a user query, using an LLM and prompt-defined scoring criteria.\n- **String Similarity:** Measures how closely the response matches the expected output by comparing strings. Useful for command generation or when output needs to follow a specific structure.\n- **Categorization:** Checks whether a response matches an expected label, such as assigning items to the correct category.\n- **Tools Used:** Verifies whether the AI agent called the tools you specified in your dataset. To enable this, make sure **Return Intermediate Steps** is turned on in your agent so the evaluation can access the tools it actually called.\n\n🧠 Keep in mind\n\n- Registered Community Edition enables analysis of one evaluation in the **Evaluations** tab which allows easy comparison of evaluation runs over time. Pro and Enterprise plans allow unlimited evaluations in the **Evaluations** tab.\n\nBuilt-in Metrics\n\n[Learn more](../../advanced-ai/evaluations/overview/) about setting up and customizing evaluations.\n\n### AI Agent Tool node\n\nWith the **AI Agent Tool** node we are introducing a simplified pattern for multi-agent orchestration that can be run in a single execution and stay entirely on one canvas. You can now connect multiple **AI Agent Tool** nodes to a primary **AI Agent** node, allowing it to supervise and delegate work across other specialized agents.\n\nThis setup is especially useful for building complex systems that function like real-world teams, where a lead agent assigns parts of a task to specialists. You can even add multiple layers of agents directing other agents, just like you would have in a real multi-tiered organizational structure. It also helps with prompt management by letting you split long, complex instructions into smaller, focused tasks across multiple agents. While similar orchestration was already possible using sub-workflows, AI Agent Tool nodes are a good choice when you want the interaction to happen within a single execution or prefer to manage and debug everything from a single canvas.\n\n🛠️ **How to:**\n\n- Add an **AI Agent** node to your workflow and click **+** to create a Tools connection.\n- Search for and select the **AI Agent Tool** node from the Nodes Panel.\n- Name the node clearly so the primary agent can reference it, then add a short description and prompt.\n- Connect any LLMs, memory, and tools the agent needs to perform its role.\n- Instruct the primary **AI Agent** on when to use the **AI Agent Tool** and to pass along relevant context in its prompt.\n\n🧠 **Keep in mind:**\n\n- The orchestrating agent does not pass full execution context by default. Any necessary context must be included in the prompt.\n\n**AI Agent Tool** nodes makes it easier to build layered, agent-to-agent workflows without relying on sub-workflows, helping you move faster when building and debugging multi-agent systems.\n\nAI Agent Tool node\n\n### Contributors\n\n[ksg97031](https://github.com/ksg97031)\\\n[israelshenkar](https://github.com/israelshenkar)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.1...n8n@1.102.2) for this version.\\\n**Release date:** 2025-07-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.101.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.101.1...n8n@1.101.2) for this version.\\\n**Release date:** 2025-07-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.0...n8n@1.102.1) for this version.\\\n**Release date:** 2025-07-09\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.101.0...n8n@1.102.0) for this version.\\\n**Release date:** 2025-07-07\n\nThis release contains core updates, editor improvements, new nodes, node updates, and bug fixes.\n\n### Enforce 2FA across your instance\n\nEnterprise Instance owners can now enforce two-factor authentication (2FA) for all users in their instance.\n\nOnce enabled, any user who hasn’t set up 2FA will be redirected to complete the setup before they can continue using n8n. This helps organizations meet internal security policies and ensures stronger protection across the workspace.\n\nThis feature is available only on the Enterprise plan.\n\n### Contributors\n\n[marty-sullivan](https://github.com/marty-sullivan)\\\n[cesars-gh](https://github.com/cesars-gh)\\\n[dudanogueira](https://github.com/dudanogueira)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.101.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.101.0...n8n@1.101.1) for this version.\\\n**Release date:** 2025-07-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.101.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.100.0...n8n@1.101.0) for this version.\\\n**Release date:** 2025-06-30\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### Contributors\n\n[luka-mimi](https://github.com/luka-mimi)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.100.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.100.0...n8n@1.100.1) for this version.\\\n**Release date:** 2025-06-25\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.100.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.99.0...n8n@1.100.0) for this version.\\\n**Release date:** 2025-06-23\n\nThis release contains core updates, editor improvements, a new node, node updates, and bug fixes.\n\n### Model Selector node\n\nThe [Model Selector node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.modelselector/) gives you more control when working with multiple LLMs in your workflows.\n\nUse it to determine which connected model should handle a given input, based on conditions like expressions or global variables. This makes it easier to implement model routing strategies, such as switching models based on performance, task type, cost, or availability.\n\n🛠️ **How to:** Connect multiple model nodes to the Model Selector node, then configure routing conditions in the node’s settings.\n\n🧠 **Keep in mind:**\n\n- Rules are evaluated in order. The first matching rule determines which model is used even if others would also match.\n- As a sub-node, expressions behave differently here: they always resolves to the first item rather than resolving for each item in turn.\n\nThe Model Selector node is especially useful in evaluation or production scenarios where routing logic between models needs to adapt based on performance, cost, availability, or dataset-specific needs.\n\nModel Selector node\n\n### Support for OIDC (OpenID Connect) authentication\n\nYou can now use OIDC (OpenID Connect) as an authentication method for Single Sign-On (SSO).\n\nThis gives enterprise teams more flexibility to integrate n8n with their existing identity providers using a widely adopted and easy-to-manage standard. OIDC is now available alongside SAML, giving Enterprises the choice to select what best fits their internal needs.\n\n### Project admins can now commit to Git within environments\n\nProject admins now have the ability to commit workflow and credential changes directly to Git through the environments feature. This update streamlines the workflow deployment process by giving project-level admins direct control over committing their changes. It also ensures that the those who know their workflows best can review and commit updates themselves, without needing to involve instance-level admins.\n\n[Learn more about source control environments](../../source-control-environments/)\n\n### Contributors\n\n[aliou](https://github.com/aliou)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.99.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.99.0...n8n@1.99.1) for this version.\\\n**Release date:** 2025-06-19\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.98.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.98.1...n8n@1.98.2) for this version.\\\n**Release date:** 2025-06-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.99.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.98.0...n8n@1.99.0) for this version.\\\n**Release date:** 2025-06-16\n\nThis release contains performance improvements, core updates, editor changes, node updates, and bug fixes.\n\n### Automatically name nodes\n\nDefault node names now update automatically based on the resource and operation selected, so you’ll always know what a node does at a glance.\n\nThis adds clarity to your canvas and saves time renaming nodes manually.\n\nDon’t worry, automatic naming won’t break references. And, and if you’ve renamed a node yourself, we’ll leave it just the way you wrote it.\n\n[](/_video/release-notes/automatic_node_naming.mp4)\n\n### Support for RAG extended with built-in templates\n\nRetrieval-Augmented Generation (RAG) can improve AI responses by providing language models access to data sources with up-to-date, domain-specific, or proprietary knowledge. RAG workflows typically rely on vector stores to manage and search this data efficiently.\n\nTo get the benefits of using vector stores, such as returning results based on semantic meaning rather than just keyword matches, you need a way to upload your data to the vector store and a way to query it.\n\nIn n8n, uploading and querying vectors stores happens in two workflows. Now, you have an example to get your started and make implementation easier with the **RAG starter template**.\n\n- The **Load Data** workflow shows how to add data with the appropriate embedding model, split it into chunks with the [Default Data Loader](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/), and add metadata as desired.\n- The **Retriever** workflow for querying data, shows how agents and vector stores work together to help you define highly relevant results and save tokens using the **Question and Answer** tool.\n\nEnable semantic search and the retrieval of unstructured data for increased quality and relevance of AI responses.\n\n🛠️ **How to:**\n\n- Search for **RAG starter template** in the search bar of the Nodes panel to insert it into your workflow.\n\nLearn more about implementing RAG in n8n [here](../../advanced-ai/rag-in-n8n/).\n\nRAG starter template\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.98.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.98.0...n8n@1.98.1) for this version.\\\n**Release date:** 2025-06-12\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.98.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.97.0...n8n@1.98.0) for this version.\\\n**Release date:** 2025-06-11\n\nThis release contains performance improvements, core updates, editor changes, node updates, a new node, and bug fixes.\n\n### Contributors\n\n[luka-mimi](https://github.com/luka-mimi)\\\n[Alexandero89](https://github.com/Alexandero89)\\\n[khoazero123](https://github.com/khoazero123)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.97.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.97.0...n8n@1.97.1) for this version.\\\n**Release date:** 2025-06-04\n\nThis release contains backports.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.95.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.95.2...n8n@1.95.3) for this version.\\\n**Release date:** 2025-06-03\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.97.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.96.0...n8n@1.97.0) for this version.\\\n**Release date:** 2025-06-02\n\nThis release contains new features, performance improvements and bug fixes.\n\n### Convert to sub-workflow\n\nLarge, monolithic workflows can slow things down. They’re harder to maintain, tougher to debug, and more difficult to scale. With sub-workflows, you can take a more modular approach, breaking up big workflows into smaller, manageable parts that are easier to reuse, test, understand, and explain.\n\nUntil now, creating sub-workflows required copying and pasting nodes manually, setting up a new workflow from scratch, and reconnecting everything by hand. **Convert to sub-workflow** allows you to simplify this process into a single action, so you can spend more time building and less time restructuring.\n\n[](/_video/release-notes/convert_to_sub-workflow.mp4)\n\n**How it works**\n\n1. Highlight the nodes you want to convert to a sub-workflow. These must:\n - Be fully connected, meaning no missing steps in between them\n - Start from a single starting node\n - End with a single node\n1. Right-click to open the context menu and select **Convert to sub-workflow**\n - Or use the shortcut: `Alt + X`\n1. n8n will:\n - Open a new tab containing the selected nodes\n - Preserve all node parameters as-is\n - Replace the selected nodes in the original workflow with a **Call My Sub-workflow** node\n\n*Note*: You will need to manually adjust the field types in the Start and Return nodes in the new sub-workflow.\n\nThis makes it easier to keep workflows modular, performant, and easier to maintain.\n\nLearn more about [sub-workflows](../../flow-logic/subworkflows/).\n\nThis release contains performance improvements and bug fixes.\n\n### Contributors\n\n[maatthc](https://github.com/maatthc)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.96.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.95.0...n8n@1.96.0) for this version.\\\n**Release date:** 2025-06-02\n\nBuild failure\n\nThis release failed to build. Please use `1.97.0` instead.\n\nThis release contains API updates, core changes, editor improvements, node updates, and bug fixes.\n\n### API support for assigning users to projects\n\nYou can now use the API to add and update users within projects. This includes:\n\n- Assigning existing or pending users to a project with a specific role\n- Updating a user’s role within a project\n- Removing users from one or more projects\n\nThis update now allows you to use the API to add users to both the instance and specific projects, removing the need to manually assign them in the UI.\n\n### Add pending users to project member assignment\n\nYou can now add **pending users,** those who have been invited but haven't completed sign-up, to projects as members.\n\nThis change lets you configure a user's project access upfront, without waiting for them to finish setting up their account. It eliminates the back-and-forth of managing access post-sign-up, ensuring users have the right project roles immediately upon joining.\n\n### Contributors\n\n[matthabermehl](https://github.com/matthabermehl)\\\n[Stamsy](https://github.com/Stamsy)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.95.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.95.1...n8n@1.95.2) for this version.\\\n**Release date:** 2025-05-29\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.95.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.95.0...n8n@1.95.1) for this version.\\\n**Release date:** 2025-05-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.94.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.94.0...n8n@1.94.1) for this version.\\\n**Release date:** 2025-05-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.95.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.94.0...n8n@1.95.0) for this version.\\\n**Release date:** 2025-05-26\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### Evaluations for AI workflows\n\nWe’ve added a feature to help you iterate, test, and compare changes to your AI automations before pushing them to production so you can achieve more predictability and make better decisions.\n\nWhen you're building with AI, a small prompt tweak or model swap might improve results with some inputs, while quietly degrading performance with others. But without a way to evaluate performance across many inputs, you’re left guessing whether your AI is actually getting better when you make a change.\n\nBy implementing **Evaluations for AI workflows** in n8n, you can assess how your AI performs across a range of inputs by adding a dedicated path in your workflow for running test cases and applying custom metrics to track results. This helps you build viable proof-of-concepts quickly, iterate more effectively, catch regressions early, and make more confident decisions when your AI is in production.\n\n#### Evaluation node and tab\n\nThe **Evaluation node** includes several operations that, when used together, enable end-to-end AI evaluation.\n\nEvaluation node\n\nUse this node to:\n\n- Run your AI logic against a wide range of test cases in the same execution\n- Capture the outputs of those test cases\n- Score the results using your own metrics or LLM-as-judge logic\n- Isolate a testing path to only include the nodes and logic you want to evaluate\n\nThe **Evaluations tab** enables you to review test results in the n8n UI, perfect for comparing runs, spotting regressions, and viewing performance over time.\n\n#### 🛠 How evaluations work\n\nThe evaluation path runs alongside your normal execution logic and only activates when you want—making it ideal for testing and iteration.\n\nGet started by selecting an AI workflow you want to evaluate that includes one or more LLM or Agent nodes.\n\n1. Add an **Evaluation** node with the **On new Evaluation event** operation. This node will act as an additional trigger you’ll run only when testing. Configure it to read your dataset from Google Sheets, with each row representing a test input.\n\n > 💡 Better datasets mean better evaluations. Craft your dataset from a variety of test cases, including edge cases and typical inputs, to get meaningful feedback on how your AI performs. Learn more and access sample datasets [here](../../advanced-ai/evaluations/light-evaluations/#1-create-a-dataset).\n\n1. Add a second **Evaluation** node using the **Set Outputs** operation after the part of the workflow you're testing—typically after an LLM or Agent node. This captures the response and writes it back to your dataset in Google Sheets.\n\n1. To evaluate output quality, add a third **Evaluation** node with the **Set Metrics** operation at a point after you’ve generated the outputs. You can develop workflow logic, custom calculations, or add an LLM-as-Judge to score the outputs. Map these metrics to your dataset in the node’s parameters.\n\n > 💡 Well-defined metrics = smarter decisions. Scoring your outputs based on similarity, correctness, or categorization can help you track whether changes are actually improving performance. Learn more and get links to example templates [here](../../advanced-ai/evaluations/metric-based-evaluations/#2-add-metrics-to-workflow).\n\nEvaluation workflow\n\nWhen the Evaluation trigger node is executed, it runs each input in our dataset through your AI logic. This continues until all test cases are processed, a limit is reached, or you manually stop the execution. Once your evaluation path is set up, you can update your prompt, model, or workflow logic—and re-run the Evaluation trigger node to compare results. If you’ve added metrics, they’ll appear in the Evaluations tab.\n\nIn some instances, you may want to isolate your testing path to make iteration faster or to avoid executing downstream logic. In this case, you can add an Evaluation node with the `Check If Evaluating` operation to ensure only the expected nodes run when performing evaluations.\n\n#### Things to keep in mind\n\nEvaluations for AI Workflows are designed to fit into your development flow, with more enhancements on the way. For now, here are a few things to note:\n\n- Test datasets are currently managed through Google Sheets. You’ll need a Google Sheets credential to run evaluations.\n- Each workflow supports one evaluation at a time. If you’d like to test multiple segments, consider splitting them into sub-workflows for more flexibility.\n- Community Edition supports one single evaluation. Pro and Enterprise plans allow unlimited evaluations.\n- AI Evaluations are not enabled for instances in scaling mode at this time.\n\nYou can find details, tips, and common troubleshooting info [here](../../advanced-ai/evaluations/tips-and-common-issues/).\n\n👉 Learn more about the AI evaluation strategies and practical implementation techniques. [Watch now](https://www.youtube.com/live/QkciQpotQBQ?feature=shared).\n\n### Contributors\n\n[Phiph](https://github.com/Phiph)\\\n[cesars-gh](https://github.com/cesars-gh)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.94.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.93.0...n8n@1.94.0) for this version.\\\n**Release date:** 2025-05-19\n\nThis release contains editor improvements, an API update, node updates, new nodes, and bug fixes.\n\n### Verified community nodes on Cloud\n\nWe’ve expanded the n8n ecosystem and unlocked a new level of flexibility for all users including those on n8n Cloud! Now you can access a select set of community nodes and partner integrations without leaving the canvas. This means you install and automate with a wider range of integrations without leaving your workspace. The power of the community is now built-in.\n\nThis update focuses on three major improvements:\n\n- **Cloud availability**: Community nodes are no longer just for self-hosted users. A select set of nodes is now available on n8n Cloud.\n- **Built-in discovery**: You can find and explore these nodes right from the Nodes panel without leaving the editor or searching on npm.\n- **Trust and verification**: Nodes that appear in the editor have been manually vetted for quality and security. These verified nodes are marked with a checkmark.\n\nWe’re starting with a selection of around 25 nodes, including some of the most-used community-built packages and partner-supported integrations. For this phase, we focused on nodes that don’t include external package dependencies - helping streamline the review process and ensure a smooth rollout.\n\nThis is just the start. We plan to expand the library gradually, bringing even more verified nodes into the editor along with the powerful and creative use cases they unlock. In time, our criteria will evolve, opening the door to a wider range of contributions while keeping quality and security in focus.\n\nLearn more about this update and find out which nodes are already installable from the editor in our [blog](https://blog.n8n.io/community-nodes-available-on-n8n-cloud/) post.\n\n💻 **Use a verified node**\n\nMake sure you're on **n8n version 1.94.0** or later and the instance Owner has enabled verified community nodes. On Cloud, this can be done from the Admin Panel. For self-hosted instances, please refer to [documentation](../../hosting/configuration/environment-variables/nodes/). In both cases, verified nodes are enabled by default.\n\n- Open the **Nodes panel** from the editor\n- Search for the Node. Verified nodes are indicated by a shield 🛡️\n- Select the node and click **Install**\n\n[](/_video/release-notes/Community-nodes-node-panel.mp4)\n\nOnce an Owner installs a node, everyone on the instance can start using it—just drag, drop, and connect like any other node in your workflow.\n\n🛠️ **Build a node and get it verified**\n\nWant your node to be verified and discoverable from the editor? Here’s how to get involved:\n\n1. Review the [community node verification guidelines](../../integrations/creating-nodes/build/reference/verification-guidelines/).\n1. If you’re building something new, follow the recommendations for [creating nodes](../../integrations/creating-nodes/overview/).\n1. Check your design against the [UX guidelines](../../integrations/creating-nodes/build/reference/ux-guidelines/).\n1. [Submit your node](../../integrations/creating-nodes/deploy/submit-community-nodes/) to npm.\n1. Request verification by filling out [this form](https://internal.users.n8n.cloud/form/f0ff9304-f34a-420e-99da-6103a2f8ac5b).\n\n**Already built a node? Raise your hand!**\n\nIf you’ve already published a community node and want it considered for verification, make sure it meets the requirements noted above, then let us know by submitting the interest [form](https://internal.users.n8n.cloud/form/f0ff9304-f34a-420e-99da-6103a2f8ac5b). We’re actively curating the next batch and would love to include your work.\n\n### Extended logs view\n\nWhen workflows get complex, debugging can get... clicky. That’s where an extended **Logs View** comes in. Now you can get a clearer path to trace executions, troubleshoot issues, and understand the behavior of a complete workflow — without bouncing between node detail views.\n\nThis update brings a unified, always-accessible panel to the bottom of the canvas, showing you each step of the execution as it happens. Whether you're working with loops, sub-workflows, or AI agents, you’ll see a structured view of everything that ran, in the order it ran—with input, output, and status info right where you need it.\n\nYou can jump into node details when you want to dig deeper, or follow a single item through every step it touched. Real-time highlighting shows you which nodes are currently running or have failed, and you’ll see total execution time for any workflow—plus token usage for AI workflows to help monitor performance. And if you're debugging across multiple screens? Just pop the logs out and drag them wherever you’d like.\n\n⚙️**What it does**\n\n- Adds a **Logs view** to the bottom of the canvas that can be opened or collapsed. (Chat also appears here if your workflow uses it).\n- Displays a **hierarchical list of nodes** in the order they were executed—including expanded views of sub-workflows.\n- Allows you to **click a node in hierarchy** to preview inputs and outputs directly, or jump into the full Node Details view with a link.\n- Provides ability to **toggle** input and output data on and off.\n- Highlights each node **live as it runs**, showing when it starts, completes, or fails.\n- Includes **execution history** view to explore past execution data in a similar way.\n- Shows **roll-up stats** like total execution time and total AI tokens used (for AI-enabled workflows).\n- Includes a **“pop out”** button to open the logs as a floating window—perfect for dragging to another screen while debugging.\n\n🛠️**How to**\n\nTo access the expanded logs view, click on the Logs bar at the bottom of the canvas. The view is also opens up when you open the chat window on the bottom of the page.\n\n### Contributors\n\n[Stamsy](https://github.com/Stamsy)\\\n[feelgood-interface](https://github.com/feelgood-interface)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.93.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.92.0...n8n@1.93.0) for this version.\\\n**Release date:** 2025-05-12\n\nThis release contains core updates, editor improvements, new nodes, node updates, and bug fixes.\n\n### Faster ways to open sub-workflows\n\nWe’ve added several new ways to navigate your multi-workflow automations faster.\n\nFrom any workflow with a sub-workflow node:\n\n🖱️ Right-click on a sub-workflow node and select `Open sub-workflow` from the context menu\n\n⌨️ Keyboard shortcuts\n\n- **Windows:** `CTRL + SHIFT + O` or `CTRL + Double Click`\n- **Mac:** `CMD + SHIFT + O` or `CMD + Double Click`\n\nThese options will bring your sub-workflow up in a new tab.\n\n### Archive workflows\n\nIf you’ve ever accidentally removed a workflow, you’ll appreciate the new archiving feature. Instead of permanently deleting workflows with the Remove action, workflows are now archived by default. This allows you to recover them if needed.\n\n**How to:**\n\n- **Archive a workflow** - Select **Archive** from the Editor UI menu. It has replaced the **Remove** action.\n- **Find archived workflows** - Archived workflows are hidden by default. To find your archived workflows, select the option for **Show archived workflows** in the workflow filter menu.\n- **Permanently delete a workflow** - Once a workflow is archived, you can **Delete** it from the options menu.\n- **Recover a workflow** - Select **Unarchive** from the options menu.\n\n**Keep in mind:**\n\n- Workflows archival requires the same permissions as required previously for removal.\n- You cannot select archived workflows as sub-workflows to execute\n- Active workflows are deactivated when they are archived\n- Archived workflows can not be edited\n\n### Contributors\n\n[LeaDevelop](https://github.com/LeaDevelop)\\\n[ayhandoslu](https://github.com/ayhandoslu)\\\n[valentina98](https://github.com/valentina98)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.92.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.92.1...n8n@1.92.2) for this version.\\\n**Release date:** 2025-05-08\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.91.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.91.2...n8n@1.91.3) for this version.\\\n**Release date:** 2025-05-08\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.92.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.92.0...n8n@1.92.1) for this version.\\\n**Release date:** 2025-05-06\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.92.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.91.0...n8n@1.92.0) for this version.\\\n**Release date:** 2025-05-05\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### Partial Execution for AI Tools\n\nWe’ve made it easier to build and iterate on AI agents in n8n. You can now run and test specific tools without having to execute the entire agent workflow.\n\nPartial execution is especially useful when refining or troubleshooting parts of your agent logic. It allows you to test changes incrementally, without triggering full agent runs, reducing unnecessary AI calls, token usage, and downstream activity. This makes iteration faster, more cost-efficient, and more precise when working with complex or multi-step AI workflows.\n\nPartial execution for AI tools is available now for all tools - making it even easier to build, test, and fine-tune AI agents in n8n.\n\n[](/_video/release-notes/AI-agent-partial-execution.mp4)\n\n**How to:**\n\nTo use this feature you can either:\n\n- Click the **Play** button on the tool you want to execute directly from the canvas view.\n- Open the tool’s **Node Details View** and select **\"Execute Step\"** to run it from there.\n\nIf you have previously run the workflow, the input and output will be prefilled with data from the last execution. A pop-up form will open where you can manually fill in the parameters before executing your test.\n\n### Extended logs view\n\nWhen workflows get complex, debugging can get... clicky. That’s where an extended **Logs View** comes in. Now you can get a clearer path to trace executions, troubleshoot issues, and understand the behavior of a complete workflow — without bouncing between node detail views.\n\nThis update brings a unified, always-accessible panel to the bottom of the canvas, showing you each step of the execution as it happens. Whether you're working with loops, sub-workflows, or AI agents, you’ll see a structured view of everything that ran, in the order it ran—with input, output, and status info right where you need it.\n\nYou can jump into node details when you want to dig deeper, or follow a single item through every step it touched. Real-time highlighting shows you which nodes are currently running or have failed, and you’ll see total execution time for any workflow—plus token usage for AI workflows to help monitor performance. And if you're debugging across multiple screens? Just pop the logs out and drag them wherever you’d like.\n\n⚙️**What it does**\n\n- Adds a **Logs view** to the bottom of the canvas that can be opened or collapsed. (Chat also appears here if your workflow uses it).\n- Displays a **hierarchical list of nodes** in the order they were executed—including expanded views of sub-workflows.\n- Allows you to **click a node in hierarchy** to preview inputs and outputs directly, or jump into the full Node Details view with a link.\n- Provides ability to **toggle** input and output data on and off.\n- Highlights each node **live as it runs**, showing when it starts, completes, or fails.\n- Includes **execution history** view to explore past execution data in a similar way.\n- Shows **roll-up stats** like total execution time and total AI tokens used (for AI-enabled workflows).\n- Includes a **“pop out”** button to open the logs as a floating window—perfect for dragging to another screen while debugging.\n\n🛠️**How to**\n\nTo access the expanded logs view, click on the Logs bar at the bottom of the canvas. The view is also opens up when you open the chat window on the bottom of the page.\n\n### Insights enhancements for Enterprise\n\nTwo weeks after the launch of [Insights](../../insights/), we’re releasing some enhancements designed for enterprise users.\n\n- **Expanded time ranges**. You can now filter insights over a variety of time periods, from the last 24 hours up to 1 year. Pro users are limited to 7 day and 14 day views.\n- **Hourly granularity**. Drill down into the last 24 hours of production executions with hourly granularity, making it easier to analyze workflows and quickly identify issues.\n\nThese updates provide deeper visibility into workflow history, helping you uncover trends over longer periods and detect problems sooner with more precise reporting.\n\nFilter insights\n\n### Contributors\n\n[Stamsy](https://github.com/Stamsy)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.91.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.91.1...n8n@1.91.2) for this version.\\\n**Release date:** 2025-05-05\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.90.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.90.2...n8n@1.90.3) for this version.\\\n**Release date:** 2025-05-05\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.91.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.91.0...n8n@1.91.1) for this version.\\\n**Release date:** 2025-05-01\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.91.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.90.0...n8n@1.91.0) for this version.\\\n**Release date:** 2025-04-28\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### Breadcrumb view from the canvas\n\nWe’ve added **breadcrumb navigation directly on the canvas**, so you can quickly navigate to any of a workflow’s parent folders right from the canvas.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.90.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.90.1...n8n@1.90.2) for this version.\\\n**Release date:** 2025-04-25\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.90.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.90.0...n8n@1.90.1) for this version.\\\n**Release date:** 2025-04-22\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.90.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.89.0...n8n@1.90.0) for this version.\\\n**Release date:** 2025-04-22\n\nThis release contains core updates, editor updates, node updates, performance improvements, and bug fixes.\n\n### Extended HTTP Request tool functionality\n\nWe’ve brought the full power of the HTTP Request node to the HTTP Request tool in AI workflows. That means your AI Agents now have access to all the advanced configuration options—like Pagination, Batching, Timeout, Redirects, Proxy support, and even cURL import.\n\n[](/_video/release-notes/http-request-tool.mp4)\n\nThis update also includes support for the `$fromAI` function to dynamically generate the right parameters based on the context of your prompt — making API calls smarter, faster, and more flexible than ever.\n\n**How to:**\n\n- Open your AI Agent node in the canvas.\n- Click the **‘+’ icon** to add a new tool connection.\n- In the **Tools panel**, select HTTP **Request Tool.**\n- Configure it just like you would a regular **HTTP Request node** — including advanced options\n\n👉 Learn more about configuring the [HTTP Request tool](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolhttprequest/).\n\n### Scoped API keys\n\nUsers on the Enterprise plan can now create API keys with specific scopes to control exactly what each key can access.\n\nScoped API keys\n\nPreviously, API keys had full read/write access across all endpoints. While sometimes necessary, this level of access can be excessive and too powerful for most use cases. Scoped API keys allow you to limit access to only the resources and actions a service or user actually needs.\n\n**What’s new**\n\nWhen creating a new API key, you can now:\n\n- Select whether the key has read, write, or both types of access.\n- Specify which resources the key can interact with.\n\nSupported scopes include:\n\n- Variables — list, create, delete\n- Security audit — generate reports\n- Projects — list, create, update, delete\n- Executions — list, read, delete\n- Credentials — list, create, update, delete, move\n- Workflows — list, create, update, delete, move, add/remove tags\n\nScoped API keys give you more control and security. You can limit access to only what’s needed, making it safer to work with third parties and easier to manage internal API usage.\n\n### Drag and Drop in Folders\n\nFolders just got friendlier. With this release, you can now **drag and drop workflows and folders** — making it even easier to keep things tidy.\n\nNeed to reorganize? Just select a workflow or folder and drag it into another folder or breadcrumb location. It’s a small change that makes a big difference when managing a growing collection of workflows.\n\n[](/_video/release-notes/Drag-and-drop-folders.mp4)\n\n📁 Folders are available to all [registered](../../hosting/community-edition-features/#registered-community-edition) users—jump in and get your workspace in order!\n\n### Contributors\n\n[Zordrak](https://github.com/Zordrak)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.89.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.89.1...n8n@1.89.2) for this version.\\\n**Release date:** 2025-04-16\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.89.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.89.0...n8n@1.89.1) for this version.\\\n**Release date:** 2025-04-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.89.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.88.0...n8n@1.89.0) for this version.\\\n**Release date:** 2025-04-14\n\nThis release contains API updates, core updates, editor updates, a new node, node updates, and bug fixes.\n\n### Insights\n\nWe're rolling out [Insights](../../insights/), a new dashboard to monitor how your workflows are performing over time. It's designed to give admins (and owners) better visibility of their most important workflow metrics and help troubleshoot potential issues and improvements.\n\nIn this first release, we’re introducing a summary banner, the insights dashboard, and time saved per execution.\n\n#### 1. Summary banner\n\nA new banner on the overview page that gives instance admins and owners a birds eye view of key metrics over the last 7 days.\n\nInsights summary banner\n\nAvailable metrics:\n\n- Total production executions\n- Total failed executions\n- Failure rate\n- Average runtime of all workflows\n- Estimated time saved\n\nThis overview is designed to help you stay on top of workflow activity at a glance. It is available for all plans and editions.\n\n#### 2. Insights dashboard\n\nOn Pro and Enterprise plans, a new dashboard offers a deeper view into workflow performance and activity.\n\nInsights dashboard\n\nThe dashboard includes:\n\n- Total production executions over time, including a comparison of successful and failed executions\n- Per-workflow breakdowns of key metrics\n- Comparisons with previous periods to help spot changes in usage or behavior\n- Runtime average and failure rate over time\n\n#### 3. Time saved per execution\n\nWithin workflow settings, you can now assign a “time saved per execution” value to any workflow. This makes it possible to track the impact of your workflows and make it easier to share this visually with other teams and stakeholders.\n\nThis is just the beginning for Insights: the next phase will introduce more advanced filtering and comparisons, custom date ranges, and additional monitoring capabilities.\n\n### Node updates\n\n- We added a credential check for the Salesforce node\n- We added SearXNG as a tool for AI agents\n\nYou can now search within subfolders, making it easier to find workflows across all folder levels. Just type in the search bar and go.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.88.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.87.0...n8n@1.88.0) for this version.\\\n**Release date:** 2025-04-10\n\nThis release contains new features, new nodes, performance improvements, and bug fixes.\n\n### Model Context Protocol (MCP) nodes\n\nMCP aims to standardise how LLMs like Claude, ChatGPT, or Cursor can interact with tools or integrate data for their agents. Many providers - both established or new - are adopting MCP as a standard way to build agentic systems. It is an easy way to either expose your own app as a server, making capabilities available to a model as tools, or as a client that can call on tools outside of your own system.\n\nWhile it’s still early in the development process, we want to give you access to our new MCP nodes. This will help us understand your requirements better and will also let us converge on a great general solution quicker.\n\nWe are adding two new nodes:\n\n- a MCP [Server Trigger](../../integrations/builtin/core-nodes/n8n-nodes-langchain.mcptrigger/) for any workflow\n- a MCP [Client Tool](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolmcp/) for the AI Agent\n\nThe MCP Server Trigger turns n8n into an MCP server, providing n8n tools to models running outside of n8n. You can run multiple MCP servers from your n8n instance. The MCP Client Tool connects LLMs - and other intelligent agents - to any MCP-enabled service through a single interface.\n\nMax from our DevRel team created an official walkthrough for you to get started:\n\n[Studio Update #04](https://youtu.be/45WPU7P-1QQ?feature=shared)\n\n### MCP Server Trigger\n\nThe MCP Server Trigger turns n8n into an MCP server, providing n8n tools to models running outside of n8n. The node acts as an entry point into n8n for MCP clients. It operates by exposing a URL that MCP clients can interact with to access n8n tools. This means your n8n workflows and integrations are now available to models run elsewhere. Pretty neat.\n\nMCP Server Trigger\n\n[Explore the MCP Server Trigger docs](../../integrations/builtin/core-nodes/n8n-nodes-langchain.mcptrigger/)\n\n### MCP Client Tool\n\nThe MCP Client Tool node is a MCP client, allowing you to use the tools exposed by an external MCP server. You can connect the MCP Client Tool node to your models to call external tools with n8n agents. In this regard it is similar to using a n8n tool with your AI agent. One advantage is that the MCP Client Tool can access multiple tools on the MCP server at once, keeping your canvas cleaner and easier to understand.\n\nMCP Client Tools\n\n[Explore the MCP Client Tool docs](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolmcp/)\n\n### Node updates\n\n- Added a node for Azure Cosmos DB\n- Added a node for Milvus Vector Store\n- Updated the Email Trigger (IMAP) node\n\n### Contributors\n\n[adina-hub](https://github.com/adina-hub)\\\n[umanamente](https://github.com/umanamente)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.87.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.87.1...n8n@1.87.2) for this version.\\\n**Release date:** 2025-04-09\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.86.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.86.0...n8n@1.86.1) for this version.\\\n**Release date:** 2025-04-09\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.87.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.87.0...n8n@1.87.1) for this version.\\\n**Release date:** 2025-04-08\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.87.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.86.0...n8n@1.87.0) for this version.\\\n**Release date:** 2025-04-07\n\nThis release contains new nodes, node updates, API updates, core updates, editor updates, and bug fixes.\n\n### Contributors\n\n[cesars-gh](https://github.com/cesars-gh)\\\n[Stamsy](https://github.com/Stamsy)\\\n[Pash10g](https://github.com/Pash10g)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.86.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.0...n8n@1.86.0) for this version.\\\n**Release date:** 2025-03-31\n\nThis release contains API updates, core updates, editor improvements, node updates, and bug fixes.\n\n### Contributors\n\n[Aijeyomah](https://github.com/Aijeyomah)\\\n[ownerer](https://github.com/ownerer)\\\n[ulevitsky](https://github.com/ulevitsky)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.3...n8n@1.85.4) for this version.\\\n**Release date:** 2025-03-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.84.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.84.2...n8n@1.84.3) for this version.\\\n**Release date:** 2025-03-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.84.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.84.1...n8n@1.84.2) for this version.\\\n**Release date:** 2025-03-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.2...n8n@1.85.3) for this version.\\\n**Release date:** 2025-03-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.1...n8n@1.85.2) for this version.\\\n**Release date:** 2025-03-25\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.0...n8n@1.85.1) for this version.\\\n**Release date:** 2025-03-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.84.0...n8n@1.85.0) for this version.\\\n**Release date:** 2025-03-24\n\nThis release contains a new node, a new credential, core updates, editor updates, node updates, and bug fixes.\n\n### Folders\n\nWhat can we say about folders? Well, they’re super handy for categorizing just about everything and they’re finally available for your n8n workflows. Tidy up your workspace with unlimited folders and nested folders. Search for workflows within folders. It’s one of the ways we’re making it easier to organize your n8n instances more effectively.\n\n**How to use it:**\n\nCreate and manage folders within your personal space or within projects. You can also create workflows from within a folder. You may need to restart your instance in order to activate folders.\n\nIt's a folder alright\n\nFolders are available for all [registered](../../hosting/community-edition-features/#registered-community-edition) users so get started with decluttering your workspace now and look for more features (like drag and drop) to organize your instances soon.\n\n### Enhancements to Form Trigger Node\n\nRecent updates to the Form Trigger node have made it a more powerful tool for building business solutions. These enhancements provide more flexibility and customization, enabling teams to create visually engaging and highly functional workflows with forms.\n\n- **HTML customization:** Add custom HTML to forms, including embedded images and videos, for richer user experiences.\n- **Custom CSS support**: Apply custom styles to user-facing components to align forms with your brand’s look and feel. Adjust fonts, colors, and spacing for a seamless visual identity.\n- **Form previews:** Your form’s description and title will pull into previews of your form when sharing on social media or messaging apps, providing a more polished look.\n- **Hidden fields:** Use query parameters to add hidden fields, allowing you to pass data—such as a referral source—without exposing it to the user.\n- **New responses options:** Respond to user submissions in multiple ways including text, HTML, or a downloadable file (binary format). This enables forms to display rich webpages or deliver digital assets such as dynamically generated invoices or personalized certificates.\n\nForm with custom CSS applied\n\nThese improvements elevate the Form Trigger node beyond a simple workflow trigger, transforming it into a powerful tool for addressing use cases from data collection and order processing to custom content creation.\n\n### Contributors\n\n[Fank](https://github.com/Fank)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.84.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.84.0...n8n@1.84.1) for this version.\\\n**Release date:** 2025-03-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.84.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.83.0...n8n@1.84.0) for this version.\\\n**Release date:** 2025-03-17\n\nThis release contains a new node, node updates, editor updates, and bug fixes.\n\n### Contributors\n\n[Pash10g](https://github.com/Pash10g)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.83.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.83.1...n8n@1.83.2) for this version.\\\n**Release date:** 2025-03-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.3...n8n@1.82.4) for this version.\\\n**Release date:** 2025-03-14\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.2...n8n@1.82.3) for this version.\\\n**Release date:** 2025-03-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.83.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.83.0...n8n@1.83.1) for this version.\\\n**Release date:** 2025-03-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.83.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.0...n8n@1.83.0) for this version.\\\n**Release date:** 2025-03-12\n\nThis release contains bug fixes and an editor update.\n\n### Schema Preview\n\nSchema Preview lets you view and work with a node’s expected output without executing it or adding credentials, keeping you in flow while building.\n\n- **See expected node outputs instantly.** View schemas for over 100+ nodes to help you design workflows efficiently without extra steps.\n- **Define workflow logic first, take care of credentials later.** Build your end-to-end workflow without getting sidetracked by credential setup.\n- **Avoid unwanted executions when building.** Prevent unnecessary API calls, unwanted data changes, or potential third-party service costs by viewing outputs without executing nodes.\n\n**How to use it:**\n\n- Add a node with Schema Preview support to your workflow.\n- Open the next node in the sequence - Schema Preview data appears in the Node Editor where you would typically find it in the Schema View.\n- Use Schema Preview fields just like other schema data - drag and drop them into parameters and settings as needed.\n\n[](/_video/release-notes/Schema_preview.mp4)\n\nDon’t forget to add the required credentials before putting your workflow into production.\n\n### Contributors\n\n[pemontto](https://github.com/pemontto)\\\n[Haru922](https://github.com/Haru922)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.1...n8n@1.82.2) for this version.\\\n**Release date:** 2025-03-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.0...n8n@1.82.1) for this version.\\\n**Release date:** 2025-03-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.0...n8n@1.82.0) for this version.\\\n**Release date:** 2025-03-03\n\nThis release contains core updates, editor updates, new nodes, node updates, new credentials, credential updates, and bug fixes.\n\n### Tidy up\n\nTidy up instantly aligns nodes, centers stickies, untangles connections, and brings structure to your workflows. Whether you're preparing to share a workflow or just want to improve readability, this feature saves you time and makes your logic easier to follow. Clean, well-organized workflows aren't just nicer to look at—they’re also quicker to understand.\n\n**How to:**\n\nOpen the workflow you want to tidy, then choose one of these options:\n\n- Click the **Tidy up** button in the bottom-left corner of the canvas (it looks like a broom 🧹)\n- Press **Shift + Alt + T** on your keyboard\n- Right-click anywhere on the canvas and select **Tidy up workflow**\n\nWant to tidy up just part of your workflow? Select the specific nodes you want to clean up first - Tidy up will only adjust those, along with any stickies behind them.\n\n[](/_video/release-notes/tidy_up.mp4)\n\n### Multiple API keys\n\nn8n now supports multiple API keys, allowing users to generate and manage separate keys for different workflows or integrations. This improves security by enabling easier key rotation and isolation of credentials. Future updates will introduce more granular controls.\n\nMultiple API keys\n\n### Contributors\n\n[Rostammahabadi](https://github.com/Rostammahabadi)\\\n[Lanhild](https://github.com/Lanhild)\\\n[matthiez](https://github.com/matthiez)\\\n[feelgood-interface](https://github.com/feelgood-interface)\\\n[adina-hub](https://github.com/adina-hub)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.3...n8n@1.81.4) for this version.\\\n**Release date:** 2025-03-03\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.2...n8n@1.81.3) for this version.\\\n**Release date:** 2025-03-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.1...n8n@1.81.2) for this version.\\\n**Release date:** 2025-02-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.4...n8n@1.80.5) for this version.\\\n**Release date:** 2025-02-28\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.3...n8n@1.80.4) for this version.\\\n**Release date:** 2025-02-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.0...n8n@1.81.1) for this version.\\\n**Release date:** 2025-02-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.0...n8n@1.81.0) for this version.\\\n**Release date:** 2025-02-24\n\nThis release contains bug fixes, a core update, editor improvements, and a node update.\n\n### Improved partial executions\n\nThe new execution engine for partial executions ensures that testing parts of a workflow in the builder closely mirrors production behaviour. This makes iterating with updated run-data faster and more reliable, particularly for complex workflows.\n\nBefore, user would test parts of a workflow in the builder that didn't consistently reflect production behaviour, leading to unexpected results during development.\n\nThis update aligns workflow execution in the builder with production behavior.\n\nHere is an example for loops:\n\nBefore\n\n[](/_video/release-notes/Partial-execution-loop-before.mp4)\n\nAfter\n\n[](/_video/release-notes/Partial-execution-loop-after.mp4)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.2...n8n@1.80.3) for this version.\\\n**Release date:** 2025-02-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.3...n8n@1.79.4) for this version.\\\n**Release date:** 2025-02-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.1...n8n@1.80.2) for this version.\\\n**Release date:** 2025-02-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.2...n8n@1.79.3) for this version.\\\n**Release date:** 2025-02-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.0...n8n@1.80.1) for this version.\\\n**Release date:** 2025-02-20\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.1...n8n@1.79.2) for this version.\\\n**Release date:** 2025-02-20\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.0...n8n@1.80.0) for this version.\\\n**Release date:** 2025-02-17\n\nThis release contains bug fixes and an editor improvement.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.75.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.75.2...n8n@1.75.3) for this version.\\\n**Release date:** 2025-02-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.3...n8n@1.74.4) for this version.\\\n**Release date:** 2025-02-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.0...n8n@1.79.1) for this version.\\\n**Release date:** 2025-02-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.78.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.78.0...n8n@1.78.1) for this version.\\\n**Release date:** 2025-02-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.3...n8n@1.77.4) for this version.\\\n**Release date:** 2025-02-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.3...n8n@1.76.4) for this version.\\\n**Release date:** 2025-02-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.0...n8n@1.78.0) for this version.\\\n**Release date:** 2025-02-12\n\nThis release contains new features, node updates, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.2...n8n@1.77.3) for this version.\\\n**Release date:** 2025-02-06\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.78.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.0...n8n@1.78.0) for this version.\\\n**Release date:** 2025-02-05\n\nThis release contains new features, node updates, and bug fixes.\n\n### Contributors\n\n[mocanew](https://github.com/mocanew)\\\n[Timtendo12](https://github.com/Timtendo12)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.1...n8n@1.77.2) for this version.\\\n**Release date:** 2025-02-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.2...n8n@1.76.3) for this version.\\\n**Release date:** 2025-02-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.0...n8n@1.77.1) for this version.\\\n**Release date:** 2025-02-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.1...n8n@1.76.2) for this version.\\\n**Release date:** 2025-02-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.0...n8n@1.77.0) for this version.\\\n**Release date:** 2025-01-29\n\nThis release contains new features, editor updates, new nodes, new credentials, node updates, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.0...n8n@1.76.1) for this version.\\\n**Release date:** 2025-01-23\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.75.0...n8n@1.76.0) for this version.\\\n**Release date:** 2025-01-22\n\nThis release contains new features, editor updates, new credentials, node improvements, and bug fixes.\n\n### Contributors\n\n[Stamsy](https://github.com/Stamsy)\\\n[GKdeVries](https://github.com/GKdeVries)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.75.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.75.1...n8n@1.75.2) for this version.\\\n**Release date:** 2025-01-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.2...n8n@1.74.3) for this version.\\\n**Release date:** 2025-01-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.75.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.75.0...n8n@1.75.1) for this version.\\\n**Release date:** 2025-01-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.1...n8n@1.74.2) for this version.\\\n**Release date:** 2025-01-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.75.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.0...n8n@1.75.0) for this version.\\\n**Release date:** 2025-01-15\n\nThis release contains bug fixes and editor updates.\n\n### Improved consistency across environments\n\nWe added new UX and automatic changes improvements resulting in a better consistency between your staging and production instances.\n\nPreviously, users faced issues like:\n\n- Lack of visibility into required credential updates when pulling changes\n- Incomplete synchronization, where changes — such as deletions — weren’t always applied across environments\n- Confusing commit process, making it unclear what was being pushed or pulled\n\nWe addressed these by:\n\n- Clearly indicating required credential updates when pulling changes\n- Ensuring deletions and other modifications sync correctly across environments\n- Improving commit selection to provide better visibility into what’s being pushed\n\nCommit modal\n\nPull notification\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.0...n8n@1.74.1) for this version.\\\n**Release date:** 2025-01-09\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.73.0...n8n@1.74.0) for this version.\\\n**Release date:** 2025-01-08\n\nThis release contains new features, a new node, node updates, performance improvements and bug fixes.\n\n### Overhauled Code node editing experience\n\nWe added a ton of new helpers to the Code node, making edits of your code much faster and more comfortable. You get:\n\n- TypeScript autocomplete\n- TypeScript linting\n- TypeScript hover tips\n- Search and replace\n- New keyboard shortcuts based on the VSCode keymap\n- Auto-formatting using prettier (Alt+Shift+F)\n- Remember folded regions and history after refresh\n- Multi cursor\n- Type function in the Code node using JSDoc types\n- Drag and drop for all Code node modes\n- Indentation markers\n\nWe build this on a web worker architecture so you won't have to suffer from performance degradation while typing.\n\nTo get the full picture, check out our Studio update with Max and Elias, where they discuss and demo the new editing experience. 👇\n\n[Studio Update #04](https://youtu.be/De1E58MPaMQ?t=645)\n\n### New node: Microsoft Entra ID\n\nMicrosoft Entra ID (formerly known as Microsoft Azure Active Directory or Azure AD) is used for cloud-based identity and access management. [The new node](../../integrations/builtin/app-nodes/n8n-nodes-base.microsoftentra/) supports a wide range of Microsoft Entra ID features, which includes creating, getting, updating, and deleting users and groups, as well as adding users to and removing them from groups.\n\n### Node updates\n\n- [AI Agent](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): Vector stores can now be directly used as tools for the agent\n- [Code](../../code/builtin/overview/): Tons of new speed and convenience features, see above for details\n- [Google Vertex Chat](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglevertex/): Added option to specify the GCP region for the Google API credentials\n- [HighLevel](../../integrations/builtin/app-nodes/n8n-nodes-base.highlevel/): Added support for calendar items\n\nWe also added a custom [projects](../../user-management/rbac/projects/) icon selector on top of the available emojis. Pretty!\n\n### Contributors\n\n[igatanasov](https://github.com/igatanasov)\\\n[Stamsy](https://github.com/Stamsy)\\\n[feelgood-interface](https://github.com/feelgood-interface)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.73.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.73.0...n8n@1.73.1) for this version.\\\n**Release date:** 2024-12-19\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.73.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.72.0...n8n@1.73.0) for this version.\\\n**Release date:** 2024-12-19\n\nThis release contains node updates, performance improvements, and bug fixes.\n\n### Node updates\n\n- [AI Agent](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): Updated descriptions for Chat Trigger options\n- [Facebook Graph API](../../integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi/): Updated for API v21.0\n- [Gmail](../../integrations/builtin/app-nodes/n8n-nodes-base.gmail/): Added two new options for the `Send and wait` operation, free text and custom form\n- [Linear Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.lineartrigger/): Added support for admin scope\n- [MailerLite](../../integrations/builtin/app-nodes/n8n-nodes-base.mailerlite/): Now supports the new API\n- [Slack](../../integrations/builtin/app-nodes/n8n-nodes-base.slack/): Added two new options for the `Send and wait` operation, free text and custom form\n\nWe also added credential support for [SolarWinds IPAM](../../integrations/builtin/credentials/solarwindsipam/) and [SolarWinds Observability](../../integrations/builtin/credentials/solarwindsobservability/).\n\nLast, but not least, we [improved the schema view performance in the node details view by 90%](https://github.com/n8n-io/n8n/pull/12180) and added drag and drop re-ordering to parameters. This comes in very handy in the [If](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [Edit Fields](../../integrations/builtin/core-nodes/n8n-nodes-base.set/) nodes.\n\n### Contributors\n\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[mickaelandrieu](https://github.com/mickaelandrieu)\\\n[Stamsy](https://github.com/Stamsy)\\\n[pbdco](https://github.com/pbdco)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.72.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.72.0...n8n@1.72.1) for this version.\\\n**Release date:** 2024-12-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.71.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.71.2...n8n@1.71.3) for this version.\\\n**Release date:** 2024-12-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.72.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.71.0...n8n@1.72.0) for this version.\\\n**Release date:** 2024-12-11\n\nThis release contains node updates, usability improvements, and bug fixes.\n\n### Node updates\n\n- [AI Transform](../../integrations/builtin/core-nodes/n8n-nodes-base.aitransform/): The `maximum context length` error now retries with reduced payload size\n- [Redis](../../integrations/builtin/app-nodes/n8n-nodes-base.redis/): Added support for `continue on fail`\n\n### Improved commit modal\n\nWe added filters and text search to the commit modal when working with [Environments](../../source-control-environments/). This will make committing easier as we provide more information and better visibility. Environments are available on the Enterprise plan.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.71.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.71.1...n8n@1.71.2) for this version.\\\n**Release date:** 2024-12-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.3...n8n@1.70.4) for this version.\\\n**Release date:** 2024-12-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.71.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.71.0...n8n@1.71.1) for this version.\\\n**Release date:** 2024-12-06\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.2...n8n@1.70.3) for this version.\\\n**Release date:** 2024-12-05\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.71.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.2...n8n@1.71.0) for this version.\\\n**Release date:** 2024-12-04\n\nThis release contains node updates, performance improvements, and bug fixes.\n\n### Task runners for the Code node in public beta\n\nWe're introducing a significant performance upgrade to the Code node with our new Task runner system. This enhancement moves JavaScript code execution to a separate process, improving your workflow execution speed while adding better isolation.\n\nTask runners overview\n\nOur benchmarks show up to 6x improvement in workflow executions using Code nodes - from approximately 6 to 35 executions per second. All these improvements happen under the hood, keeping your Code node experience exactly the same.\n\nThe Task runner comes in two modes:\n\n- Internal mode (default): Perfect for getting started, automatically managing task runners as child processes\n- External mode: For advanced hosting scenarios requiring maximum isolation and security\n\nCurrently, this feature is opt-in and can be enabled using [environment variables](../../hosting/configuration/environment-variables/task-runners/). Once stable, it will become the default execution method for Code nodes.\n\nTo start using Task runners today, [check out the docs](../../hosting/configuration/task-runners/).\n\n### Node updates\n\n- [AI Transform node](../../integrations/builtin/core-nodes/n8n-nodes-base.aitransform/): We improved the prompt for code generation to transform data\n- [Code node](../../integrations/builtin/core-nodes/n8n-nodes-base.code/): We added a warning if `pairedItem` is absent or could not be auto mapped\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.1...n8n@1.70.2) for this version.\\\n**Release date:** 2024-12-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.0...n8n@1.70.1) for this version.\\\n**Release date:** 2024-11-29\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.69.0...n8n@1.70.0) for this version.\\\n**Release date:** 2024-11-27\n\nThis release contains node updates, performance improvements and bug fixes.\n\n### New canvas in beta\n\nThe new canvas is now the default setting for all users. It should bring significant performance improvements and adds a handy minimap. As it is still a beta version you can still revert to the previous version with the three dot menu.\n\nWe're looking forward to your feedback. Should you encounter a bug, you will find a handy button to create an issue at the bottom of the new canvas as well.\n\n### Node updates\n\n- We added credential support for [Zabbix](../../integrations/builtin/credentials/zabbix/) to the HTTP request node\n- We added new OAuth2 credentials for [Microsoft SharePoint](../../integrations/builtin/credentials/microsoft/)\n- The [Slack node](../../integrations/builtin/app-nodes/n8n-nodes-base.slack/#operations) now uses markdown for the approval message when using the `Send and Wait for Approval` operation\n\n### Contributors\n\n[feelgood-interface](https://github.com/feelgood-interface)\\\n[adina-hub](https://github.com/adina-hub)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.68.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.68.0...n8n@1.68.1) for this version.\\\n**Release date:** 2024-11-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.69.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.69.1...n8n@1.69.2) for this version.\\\n**Release date:** 2024-11-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.69.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.69.0...n8n@1.69.1) for this version.\\\n**Release date:** 2024-11-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.69.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.68.0...n8n@1.69.0) for this version.\\\n**Release date:** 2024-11-20\n\nThis release contains a new feature, node improvements and bug fixes.\n\n### Sub-workflow debugging\n\nWe made it much easier to debug sub-workflows by improving their accessibility from the parent workflow.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.68.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.67.1...n8n@1.68.0) for this version.\\\n**Release date:** 2024-11-13\n\nThis release contains node updates, performance improvements and many bug fixes.\n\n#### New AI agent canvas chat\n\nWe revamped the chat experience for AI agents on the canvas. A neatly organized view instead of a modal hiding the nodes. You can now see the canvas, chat and logs at the same time when testing your workflow.\n\n[](/_video/release-notes/AI-chat-on-canvas.mp4)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.67.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.67.0...n8n@1.67.1) for this version.\\\n**Release date:** 2024-11-07\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.67.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.66.0...n8n@1.67.0) for this version.\\\n**Release date:** 2024-11-06\n\nThis release contains node updates and bug fixes.\n\n### Node updates\n\n- [AI Transform](../../integrations/builtin/core-nodes/n8n-nodes-base.aitransform/): Improved usability\n- [Anthropic Chat Model Node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/): Added Haiku 3.5 support\n- [Convert to File](../../integrations/builtin/core-nodes/n8n-nodes-base.converttofile/): Added delimiter option for writing to CSV\n- [Gmail Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.gmailtrigger/): Added option to filter for draft messages\n- [Intercom](../../integrations/builtin/app-nodes/n8n-nodes-base.intercom/): Credential can now be used in the HTTP Request node\n- [Rapid7 InsightVM](../../integrations/builtin/credentials/rapid7insightvm/): Added credential support\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.66.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.65.2...n8n@1.66.0) for this version.\\\n**Release date:** 2024-10-31\n\nThis release contains performance improvements, a node update and bug fixes.\n\n### Node update\n\n- [Anthropic Chat Model](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/): Added support for claude-3-5-sonnet-20241022\n\nWe made updates to how projects and workflow ownership are displayed making them easier to understand and navigate.\n\nWe further improved the performance logic of partial executions, leading to a smoother and more enjoyable building experience.\n\n### New n8n canvas alpha\n\nWe have enabled the alpha version of our new canvas. The canvas is the ‘drawing board’ of the n8n editor, and we’re working on a full rewrite. Your feedback and testing will help us improve it. [Read all about it on our community forum](https://community.n8n.io/t/help-us-test-the-new-n8n-canvas-alpha/60070).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.65.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.65.1...n8n@1.65.2) for this version.\\\n**Release date:** 2024-10-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.64.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.64.2...n8n@1.64.3) for this version.\\\n**Release date:** 2024-10-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.65.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.65.0...n8n@1.65.1) for this version.\\\n**Release date:** 2024-10-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.65.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.64.1...n8n@1.65.0) for this version.\\\n**Release date:** 2024-10-24\n\n[Breaking change](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md)\n\nWhat changed? Queue polling via the environment variable `QUEUE_RECOVERY_INTERVAL` has been removed.\n\nWhen is action necessary? If you have set `QUEUE_RECOVERY_INTERVAL`, you can remove it as it no longer has any effect.\n\nThis release contains a new features, new nodes, node enhancements, and bug fixes.\n\n### New node: n8n Form\n\nUse the [n8n Form node](../../integrations/builtin/core-nodes/n8n-nodes-base.form/) to create user-facing forms with multiple pages. You can add other nodes with custom logic between to process user input. Start the workflow with a [n8n Form Trigger](../../integrations/builtin/core-nodes/n8n-nodes-base.formtrigger/).\n\nA multi-page form with branching\n\nAdditionally you can:\n\n- Set default selections with query parameters\n- Define the form with a JSON array of objects\n- Show a completion screen and redirect to another URL\n\n### Node updates\n\nNew nodes:\n\n- [Google Business Profile](../../integrations/builtin/app-nodes/n8n-nodes-base.googlebusinessprofile/) and [Google Business Profile Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.googlebusinessprofiletrigger/): Use these to integrate Google Business Profile reviews and posts with your workflows\n\nEnhanced nodes:\n\n- [AI Agent](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): Removed the requirement to add at least one tool\n- [GitHub](../../integrations/builtin/app-nodes/n8n-nodes-base.github/): Added workflows as a resource operation\n- [Structured Output Parser](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/): Added more user-friendly error messages\n\nFor additional security, we improved how we handle multi-factor authentication, hardened config file permissions and introduced JWT for the public API.\n\nFor better performance, we improved how partial executions are handled in loops.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n- [Idan Fishman](https://github.com/idanfishman)\n\n## n8n@1.64.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.64.1...n8n@1.64.2) for this version.\\\n**Release date:** 2024-10-24\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.64.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.64.0...n8n@1.64.1) for this version.\\\n**Release date:** 2024-10-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.64.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.4...n8n@1.64.0) for this version.\\\n**Release date:** 2024-10-16\n\nThis release contains a new node, node enhancements, performance improvements and bug fixes.\n\n### Enhanced node: Remove Duplicates\n\nThe [Remove Duplicates node](../../integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates/) got a major makeover with the addition of two new operations:\n\n- Remove Items Processed in Previous Executions: Compare items in the current input to items from previous executions and remove duplicates\n- Clear Deduplication History: Wipe the memory of items from previous executions.\n\nThis makes it easier to only process new items from any data source. For example, you can now more easily poll a Google sheet for new entries by `id` or remove duplicate orders from the same customer by comparing their `order date`. The great thing is, you can now do this within **and across** workflow runs.\n\n### New node: Gong\n\nThe new node for [Gong](../../integrations/builtin/app-nodes/n8n-nodes-base.gong/) allows you to get users and calls to process them further in n8n. Very useful for sales related workflows.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n- [Sören Uhrbach](https://github.com/soerenuhrbach)\n\n## n8n@1.63.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.3...n8n@1.63.4) for this version.\\\n**Release date:** 2024-10-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.6\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.5...n8n@1.62.6) for this version.\\\n**Release date:** 2024-10-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.63.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.2...n8n@1.63.3) for this version.\\\n**Release date:** 2024-10-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.63.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.1...n8n@1.63.2) for this version.\\\n**Release date:** 2024-10-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.4...n8n@1.62.5) for this version.\\\n**Release date:** 2024-10-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.63.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.0...n8n@1.63.1) for this version.\\\n**Release date:** 2024-10-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.3...n8n@1.62.4) for this version.\\\n**Release date:** 2024-10-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.63.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.3...n8n@1.63.0) for this version.\\\n**Release date:** 2024-10-09\n\n[Breaking change](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md)\n\nWhat changed?\n\n- The worker server used to bind to IPv6 by default. It now binds to IPv4 by default.\n- The worker server's `/healthz` used to report healthy status based on database and Redis checks. It now reports healthy status regardless of database and Redis status, and the database and Redis checks are part of `/healthz/readiness`.\n\nWhen is action necessary?\n\n- If you experience a port conflict error when starting a worker server using its default port, set a different port for the worker server with `QUEUE_HEALTH_CHECK_PORT`.\n- If you are relying on database and Redis checks for worker health status, switch to checking `/healthz/readiness` instead of `/healthz`.\n\nThis release contains new features, node enhancements and bug fixes.\n\n### Node updates\n\n- [OpenAI](../../integrations/builtin/app-nodes/n8n-nodes-langchain.openai/): Added the option to choose between the default memory connector to provide memory to the assistant or to specify a thread ID\n- [Gmail](../../integrations/builtin/app-nodes/n8n-nodes-base.gmail/) and [Slack](../../integrations/builtin/app-nodes/n8n-nodes-base.slack/): Added custom approval operations to have a human in the loop of a workflow\n\nWe have also optimized the [worker health checks](../../hosting/logging-monitoring/monitoring/) (see breaking change above).\n\nEach credential now has a seperate url you can link to. This makes sharing much easier.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Pemontto](https://github.com/pemontto)\n\n## n8n@1.62.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.2...n8n@1.62.3) for this version.\\\n**Release date:** 2024-10-08\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.1...n8n@1.62.2) for this version.\\\n**Release date:** 2024-10-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.61.0...n8n@1.62.1) for this version.\\\n**Release date:** 2024-10-02\n\nThis release contains new features, node enhancements and bug fixes.\n\nSkipped 1.62.0\n\nWe skipped 1.62.0 and went straight to 1.62.1 with an additional fix.\n\n#### Additional nodes as tools\n\nWe have made additional nodes usable with the [Tools AI Agent node](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/tools-agent/).\n\n[](/_video/release-notes/nodes-as-tools.mp4)\n\nAdditionally, we have added a `$fromAI()` placeholder function to use with tools, allowing you to dynamically pass information from the models to the connected tools. This function works similarly to placeholders used elsewhere in n8n.\n\nBoth of these new features enable you to build even more powerful AI agents by drawing directly from the apps your business uses. This makes integrating LLMs into your business processes even easier than before.\n\n### Node updates\n\n- [Google BigQuery](../../integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery/): Added option to return numeric values as integers and not strings\n- [HTTP Request](../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/): Added credential support for Sysdig\n- [Invoice Ninja](../../integrations/builtin/app-nodes/n8n-nodes-base.invoiceninja/): Additional query params for getAll requests\n- [Question and Answer Chain](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa/): Added the option to use a custom prompt\n\nDrag and drop insertion on cursor position from schema view is now also enabled for code, SQL and Html fields in nodes.\n\nCustomers with an enterprise license can now rate, tag and highlight execution data in the executions view. To use highlighting, add an [Execution Data Node](../../integrations/builtin/core-nodes/n8n-nodes-base.executiondata/) (or Code node) to the workflow to set [custom executions data](../../workflows/executions/custom-executions-data/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Benjamin Roedell](https://github.com/benrobot)\\\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[manuelbcd](https://github.com/manuelbcd)\\\n[Miguel Prytoluk](https://github.com/mprytoluk)\n\n## n8n@1.61.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.60.1...n8n@1.61.0) for this version.\\\n**Release date:** 2024-09-25\n\nThis release contains new features, node enhancements and bug fixes.\n\n### Node updates\n\n- [Brandfetch](../../integrations/builtin/app-nodes/n8n-nodes-base.brandfetch/): Updated to use the new API\n- [Slack](../../integrations/builtin/app-nodes/n8n-nodes-base.slack/): Made adding or removing the workflow link to a message easier\n\nBig datasets now render faster thanks to virtual scrolling and execution annotations are harder to delete.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.59.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.3...n8n@1.59.4) for this version.\\\n**Release date:** 2024-09-20\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.60.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.60.0...n8n@1.60.1) for this version.\\\n**Release date:** 2024-09-20\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.60.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.3...n8n@1.60.0) for this version.\\\n**Release date:** 2024-09-18\n\nThis release contains new features, node enhancements and bug fixes.\n\n#### Queue metrics for workers\n\nYou can now [expose and consume metrics from your workers](../../hosting/configuration/configuration-examples/prometheus/). The worker instances have the same metrics available as the main instance(s) and can be configured with [environment variables](../../hosting/configuration/environment-variables/endpoints/).\n\nYou can now customize the maximum file size when uploading files within forms to webhooks. The [environment variable to set](../../hosting/configuration/environment-variables/endpoints/) for this is `N8N_FORMDATA_FILE_SIZE_MAX`. The default setting is 200MiB.\n\n### Node updates\n\nEnhanced nodes:\n\n- [Invoice Ninja](../../integrations/builtin/app-nodes/n8n-nodes-base.invoiceninja/): Added actions for bank transactions\n- [OpenAI](../../integrations/builtin/app-nodes/n8n-nodes-langchain.openai/): Added O1 models to the model select\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\n\n## n8n@1.59.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.2...n8n@1.59.3) for this version.\\\n**Release date:** 2024-09-18\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.59.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.1...n8n@1.59.2) for this version.\\\n**Release date:** 2024-09-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.59.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.0...n8n@1.59.1) for this version.\\\n**Release date:** 2024-09-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.58.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.58.1...n8n@1.58.2) for this version.\\\n**Release date:** 2024-09-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.59.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.58.1...n8n@1.59.0) for this version.\\\n**Release date:** 2024-09-11\n\nChat Trigger\n\nIf you are using the Chat Trigger in \"Embedded Chat\" mode, with authentication turned on, you could see errors connecting to n8n if the authentication on the sending/embedded side is mis-configured.\n\nThis release contains bug fixes and feature enhancements.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[oscarpedrero](https://github.com/oscarpedrero)\n\n## n8n@1.58.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.58.0...n8n@1.58.1) for this version.\\\n**Release date:** 2024-09-06\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.58.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.57.0...n8n@1.58.0) for this version.\\\n**Release date:** 2024-09-05\n\nThis release contains new features, bug fixes and feature enhancements.\n\n#### New node: PGVector Vector Store\n\nThis release adds the PGVector Vector Store node. Use this node to interact with the PGVector tables in your PostgreSQL database. You can insert, get, and retrieve documents from a vector table to provide them to a retriever connected to a chain.\n\n#### See active collaborators on workflows\n\nWe added collaborator avatars back to the workflow canvas. You will see other users who are active on the workflow, preventing you from overriding each other's work.\n\nCollaboration avatars\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.57.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.56.2...n8n@1.57.0) for this version.\\\n**Release date:** 2024-08-28\n\nThis release contains new features and bug fixes.\n\n#### Improved execution queue handling\n\nWe are [exposing new execution queue metrics](../../hosting/configuration/configuration-examples/prometheus/) to give users more visibility of the queue length. This helps to inform decisions on horizontal scaling, based on queue status. We have also made querying executions faster.\n\n#### New credentials for the HTTP Request node\n\nWe added credential support for Datadog, Dynatrace, Elastic Security, Filescan, Iris, and Malcore to the HTTP Request node making it easier to use existing credentials.\n\nWe also made it easier to select workflows as tools when working with AI agents by implementing a new `workflow selector` parameter type.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Bram Kn](https://github.com/bramkn)\n\n## n8n@1.56.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.56.1...n8n@1.56.2) for this version.\\\n**Release date:** 2024-08-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.56.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.56.0...n8n@1.56.1) for this version.\\\n**Release date:** 2024-08-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.56.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.55.3...n8n@1.56.0) for this version.\\\n**Release date:** 2024-08-21\n\nThis release contains node updates, security and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[Oz Weiss](https://github.com/thewizarodofoz)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.55.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.55.2...n8n@1.55.3) for this version.\\\n**Release date:** 2024-08-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.55.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.55.1...n8n@1.55.2) for this version.\\\n**Release date:** 2024-08-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.55.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.55.0...n8n@1.55.1) for this version.\\\n**Release date:** 2024-08-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.3...n8n@1.54.4) for this version.\\\n**Release date:** 2024-08-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.2...n8n@1.54.3) for this version.\\\n**Release date:** 2024-08-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.1...n8n@1.54.2) for this version.\\\n**Release date:** 2024-08-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.55.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.1...n8n@1.55.0) for this version.\\\n**Release date:** 2024-08-14\n\n[Breaking change](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md)\n\nThe N8N_BLOCK_FILE_ACCESS_TO_N8N_FILES environment variable now also blocks access to n8n's static cache directory at ~/.cache/n8n/public.\n\nIf you are writing to or reading from a file at n8n's static cache directory via a node, e.g. Read/Write Files from Disk, please update your node to use a different path.\n\nThis release contains a new feature, a new node, a node update and bug fixes.\n\n#### Override the npm registry\n\nThis release adds the option to override the npm registry for installing community packages. This is a paid feature.\n\nWe now also prevent npm downloading community packages from a compromised npm registry by explicitly using --registry in all npm install commands.\n\n#### New node: AI Transform\n\nThis release adds the [AI Transform node](../../integrations/builtin/core-nodes/n8n-nodes-base.aitransform/). Use the AI Transform node to generate code snippets based on your prompt. The AI is context-aware, understanding the workflow’s nodes and their data types. The node is only available on [Cloud plans](../../manage-cloud/overview/).\n\n#### New node: Okta\n\nThis release adds the [Okta node](../../integrations/builtin/app-nodes/n8n-nodes-base.okta/). Use the Okta node to automate work in Okta and integrate Okta with other applications. n8n has built-in support for a wide range of Okta features, which includes creating, updating, and deleting users.\n\n### Node updates\n\nEnhanced node:\n\n- [MySQL](../../integrations/builtin/app-nodes/n8n-nodes-base.mysql/)\n\nThis release also adds the new schema view for the expression editor modal.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.0...n8n@1.54.1) for this version.\\\n**Release date:** 2024-08-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.53.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.53.1...n8n@1.53.2) for this version.\\\n**Release date:** 2024-08-08\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.53.1...n8n@1.54.0) for this version.\\\n**Release date:** 2024-08-07\n\nThis release contains new features, node enhancements, bug fixes and updates to our API.\n\n### API update\n\nOur [public REST API](../../api/) now supports additional operations:\n\n- Create, delete, and edit roles for users\n- Create, read, update and delete projects\n\nFind the details in the [API reference](../../api/api-reference/).\n\n### Contributors\n\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[Javier Ferrer González](https://github.com/JavierCane)\\\n[Mickaël Andrieu](https://github.com/mickaelandrieu)\\\n[Oz Weiss](https://github.com/thewizarodofoz)\\\n[Pemontto](https://github.com/pemontto)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.45.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.45.1...n8n@1.45.2) for this version.\\\n**Release date:** 2024-08-06\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.53.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.53.0...n8n@1.53.1) for this version.\\\n**Release date:** 2024-08-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.53.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.52.2...n8n@1.53.0) for this version.\\\n**Release date:** 2024-07-31\n\nThis release contains new features, new nodes, node enhancements, bug fixes and updates to our API.\n\n#### Added Google Cloud Platform Secrets Manager support\n\nThis release adds [Google Cloud Platform Secrets Manager](../../external-secrets/) to the list of external secret stores. We already support AWS secrets, Azure Key Vault, Infisical and HashiCorp Vault. External secret stores are available under an enterprise license.\n\n#### New node: Information Extractor\n\nThis release adds the [Information Extractor node](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.information-extractor/). The node is specifically tailored for information extraction tasks. It uses Structured Output Parser under the hood, but provides a simpler way to extract information from text in a structured JSON form.\n\n#### New node: Sentiment Analysis\n\nThis release adds the [Sentiment Analysis node](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.sentimentanalysis/). The node leverages LLMs to analyze and categorize the sentiment of input text. Users can easily integrate this node into their workflows to perform sentiment analysis on text data. The node is flexible enough to handle various use cases, from basic positive/negative classification to more nuanced sentiment categories.\n\n### Node updates\n\nEnhanced nodes:\n\n- [Calendly Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.calendlytrigger/)\n- [HTTP Request](../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/)\n- [n8n Form Trigger](../../integrations/builtin/core-nodes/n8n-nodes-base.formtrigger/)\n- [Shopify](../../integrations/builtin/app-nodes/n8n-nodes-base.shopify/)\n\n### API update\n\nOur [public REST API](../../api/) now supports additional operations:\n\n- Create, read, and delete for variables\n- Filtering workflows by project\n- Transferring workflows\n\nFind the details in the [API reference](../../api/api-reference/).\n\n### Contributors\n\n[feelgood-interface](https://github.com/feelgood-interface)\\\n[Oz Weiss](https://github.com/thewizarodofoz)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.52.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.52.1...n8n@1.52.2) for this version.\\\n**Release date:** 2024-07-31\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.52.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.52.0...n8n@1.52.1) for this version.\\\n**Release date:** 2024-07-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.51.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.51.1...n8n@1.51.2) for this version.\\\n**Release date:** 2024-07-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.52.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.51.1...n8n@1.52.0) for this version.\\\n**Release date:** 2024-07-25\n\n[Breaking change](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md)\n\nPrometheus metrics enabled via N8N_METRICS_INCLUDE_DEFAULT_METRICS and N8N_METRICS_INCLUDE_API_ENDPOINTS were fixed to include the default n8n\\_ prefix.\n\nIf you are using Prometheus metrics from these categories and are using a non-empty prefix, please update those metrics to match their new prefixed names.\n\nThis release contains new features, node enhancements and bug fixes.\n\n#### Added Azure Key Vault support\n\nThis release adds [Azure Key Vault](../../external-secrets/) to the list of external secret stores. We already support AWS secrets, Infisical and HashiCorp Vault and are working on Google Secrets Manager. External secret stores are available under an enterprise license.\n\n### Node updates\n\nEnhanced nodes:\n\n- [Pinecone Vector Store](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/)\n- [Supabase Vector Store](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/)\n- [Send Email](../../integrations/builtin/core-nodes/n8n-nodes-base.sendemail/)\n\nDeprecated nodes:\n\n- OpenAI Model: You can use the OpenAI Chat Model instead\n- Google Palm Chat Model: You can use Google Vertex or Gemini instead\n- Google Palm Model: You can use Google Vertex or Gemini instead\n\n## n8n@1.51.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.51.0...n8n@1.51.1) for this version.\\\n**Release date:** 2024-07-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.50.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.50.1...n8n@1.50.2) for this version.\\\n**Release date:** 2024-07-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.51.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.50.1...n8n@1.51.0) for this version.\\\n**Release date:** 2024-07-18\n\nThis release contains new nodes, node enhancements and bug fixes.\n\n#### New node: Text Classifier\n\nThis release adds the [Text Classifier node](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier/).\n\n#### New node: Postgres Chat Memory\n\nThis release adds the [Postgres Chat Memory node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorypostgreschat/).\n\n#### New node: Google Vertex Chat Model\n\nThis release adds the [Google Vertex Chat Model node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglevertex/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Node updates\n\n- Enhanced nodes: Asana\n\n## n8n@1.50.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.50.0...n8n@1.50.1) for this version.\\\n**Release date:** 2024-07-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.50.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.49.0...n8n@1.50.0) for this version.\\\n**Release date:** 2024-07-10\n\nThis release contains node enhancements and bug fixes.\n\n### Node updates\n\n- Enhanced nodes: Chat Trigger, Google Cloud Firestore, Qdrant Vector Store, Splunk, Telegram\n- Deprecated node: Orbit (product shut down)\n\n### Beta Feature Removal\n\nThe Ask AI beta feature for the HTTP Request node has been removed from this version\n\n### Contributors\n\n[Stanley Yoshinori Takamatsu](https://github.com/stanleytakamatsu)\\\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[jeanpaul](https://github.com/jeanpaul)\\\n[adrian-martinez-onestic](https://github.com/adrian-martinez-onestic)\\\n[Malki Davis](https://github.com/mxdavis)\n\n## n8n@1.49.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.3...n8n@1.49.0) for this version.\\\n**Release date:** 2024-07-03\n\nThis release contains a new node, node enhancements, and bug fixes.\n\n### Node updates\n\n- New node added: [Vector Store Tool](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/) for the AI Agent\n- Enhanced nodes: Zep Cloud Memory, Copper, Embeddings Cohere, GitHub, Merge, Zammad\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Jochem](https://github.com/jvdweerthof)\\\n[KhDu](https://github.com/KhDu)\\\n[Nico Weichbrodt](https://github.com/envy)\\\n[Pavlo Paliychuk](https://github.com/paul-paliychuk)\n\n## n8n@1.48.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.2...n8n@1.48.3) for this version.\\\n**Release date:** 2024-07-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.47.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.2...n8n@1.47.3) for this version.\\\n**Release date:** 2024-07-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.48.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.1...n8n@1.48.2) for this version.\\\n**Release date:** 2024-07-01\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.47.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.1...n8n@1.47.2) for this version.\\\n**Release date:** 2024-07-01\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.48.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.0...n8n@1.48.1) for this version.\\\n**Release date:** 2024-06-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.48.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.1...n8n@1.48.0) for this version.\\\n**Release date:** 2024-06-27\n\nThis release contains bug fixes and feature enhancements.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[KubeAl](https://github.com/KubeAl)\n\n## n8n@1.47.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.0...n8n@1.47.1) for this version.\\\n**Release date:** 2024-06-26\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.47.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.46.0...n8n@1.47.0) for this version.\\\n**Release date:** 2024-06-20\n\nBreaking change\n\nCalling `$(...).last()` (or `(...).first()` or `$(...).all()`) without arguments now returns the last item (or first or all items) of the output that connects two nodes. Previously, it returned the item/items of the first output of that node. Refer to the [breaking changes log](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md#1470) for details.\n\nThis release contains bug fixes, feature enhancements, a new node, node enhancements and performance improvements.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n#### New node: HTTP request tool\n\nThis release adds the HTTP request tool. You can use it with an AI agent as a tool to collect information from a website or API. Refer to the [HTTP request tool](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolhttprequest/) for details.\n\n### Contributors\n\n[Daniel](https://github.com/daniel-alba17)\\\n[ekadin-mtc](https://github.com/ekadin-mtc)\\\n[Eric Francis](https://github.com/EricFrancis12)\\\n[Josh Sorenson](https://github.com/joshsorenson)\\\nMohammad Alsmadi [Nikolai T. Jensen](https://github.com/ch0wm3in)\\\n[n8n-ninja](https://github.com/n8n-ninja)\\\n[pebosi](https://github.com/pebosi)\\\n[Taylor Hoffmann](https://github.com/TaylorHo)\n\n## n8n@1.45.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.45.0...n8n@1.45.1) for this version.\\\n**Release date:** 2024-06-12\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.46.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.45.0...n8n@1.46.0) for this version.\\\n**Release date:** 2024-06-12\n\nThis release contains feature enhancements, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Jean Khawand](https://github.com/jeankhawand)\\\n[pemontto](https://github.com/pemontto)\\\n[Valentin Coppin](https://github.com/valimero)\n\n## n8n@1.44.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.44.1...n8n@1.44.2) for this version.\\\n**Release date:** 2024-06-12\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.42.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.42.1...n8n@1.42.2) for this version.\\\n**Release date:** 2024-06-10\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.45.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.44.1...n8n@1.45.0) for this version.\\\n**Release date:** 2024-06-06\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.44.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.44.0...n8n@1.44.1) for this version.\\\n**Release date:** 2024-06-03\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.44.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.43.1...n8n@1.44.0) for this version.\\\n**Release date:** 2024-05-30\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.43.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.43.0...n8n@1.43.1) for this version.\\\n**Release date:** 2024-05-28\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.43.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.42.1...n8n@1.43.0) for this version.\\\n**Release date:** 2024-05-22\n\nThis release contains new features, node enhancements, and bug fixes.\n\nBackup recommended\n\nAlthough this release doesn't include a breaking change, it is a significant update including database migrations. n8n recommends backing up your data before updating to this version.\n\nCredential sharing required for manual executions\n\nInstance owners and admins: you will see changes if you try to manually execute a workflow where the credentials aren't shared with you. Manual workflow executions now use the same permissions checks as production executions, meaning you can't do a manual execution of a workflow if you don't have access to the credentials. Previously, owners and admins could do manual executions without credentials being shared with them. To resolve this, the credential creator needs to [share the credential](../../credentials/credential-sharing/) with you.\n\n#### New feature: Projects\n\nWith projects and roles, you can give your team access to collections of workflows and credentials, rather than having to share each workflow and credential individually. Simultaneously, you tighten security by limiting access to people on the relevant team.\n\nRefer to the [RBAC](../../user-management/rbac/) documentation for information on creating projects and using roles.\n\nThe number of projects and role types vary depending on your plan. Refer to [Pricing](https://n8n.io/pricing/) for details.\n\n[](/_video/release-notes/rbac-glimpse.mp4)\n\n#### New node: Slack Trigger\n\nThis release adds a trigger node for Slack. Refer to the [Slack Trigger documentation](../../integrations/builtin/trigger-nodes/n8n-nodes-base.slacktrigger/) for details.\n\n### Other highlights\n\n- Improved [memory support for OpenAI assistants](../../integrations/builtin/app-nodes/n8n-nodes-langchain.openai/).\n\n### Rolling back to a previous version\n\nIf you update to this version, then decide you need to role back:\n\nSelf-hosted n8n:\n\n1. Delete any RBAC projects you created.\n1. Revert the database migrations using `n8n db:revert`.\n\nCloud: contact [help@n8n.io](mailto:help@n8n.io).\n\n### Contributors\n\n[Ayato Hayashi](https://github.com/hayashi-ay)\\\n[Daniil Zobov](https://github.com/ddzobov)\\\n[Guilherme Barile](https://github.com/GuilhermeBarile)\\\n[Romain MARTINEAU](https://github.com/RJiraya)\n\n## n8n@1.42.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.42.0...n8n@1.42.1) for this version.\\\n**Release date:** 2024-05-20\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.41.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.41.0...n8n@1.41.1) for this version.\\\n**Release date:** 2024-05-16\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.42.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.41.0...n8n@1.42.0) for this version.\\\n**Release date:** 2024-05-15\n\nThis release contains new features, node enhancements, and bug fixes.\n\nNote that this release removes the AI error debugger. We're working on a new and improved version.\n\n#### New feature: Tools Agent\n\nThis release adds a new option to the Agent node: the [Tools Agent](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/tools-agent/).\n\nThis agent has an enhanced ability to work with tools, and can ensure a standard output format. This is now the recommended default agent.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Mike Quinlan](https://github.com/mjquinlan2000)\\\n[guangwu](https://github.com/testwill)\n\n## n8n@1.41.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.40.0...n8n@1.41.0) for this version.\\\n**Release date:** 2024-05-08\n\nThis release contains new features, node enhancements, and bug fixes.\n\nNote that this release temporarily disables the AI error helper.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Florin Lungu](https://github.com/floryn90)\n\n## n8n@1.40.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.39.1...n8n@1.40.0) for this version.\\\n**Release date:** 2024-05-02\n\nBreaking change\n\nPlease note that this version contains a breaking change for instances using a Postgres database. The default value for the DB_POSTGRESDB_USER environment variable was switched from `root` to `postgres`. Refer to the [breaking changes log](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md#1400) for details.\n\nThis release contains new features, new nodes, node enhancements, and bug fixes.\n\n#### New feature: Ask AI in the HTTP node\n\nYou can now ask AI to help create API requests in the HTTP Request node:\n\n1. In the HTTP Request node, select **Ask AI**.\n1. Enter the **Service** and **Request** you want to use. For example, to use the NASA API to get their picture of the day, enter `NASA` in **Service** and `get picture of the day` in **Request**.\n1. Check the parameters: the AI tries to fill them out, but you may still need to adjust or correct the configuration.\n\nSelf-hosted users need to [enable AI features and provide their own API keys](../../hosting/configuration/environment-variables/)\n\n#### New node: Groq Chat Model\n\nThis release adds the [Groq Chat Model node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgroq/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Alberto Pasqualetto](https://github.com/albertopasqualetto)\\\n[Bram Kn](https://github.com/bramkn)\\\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[Nicolas-nwb](https://github.com/Nicolas-nwb)\\\n[pemontto](https://github.com/pemontto)\\\n[pengqiseven](https://github.com/pengqiseven)\\\n[webk](https://github.com/webkp)\\\n[Yoshino-s](https://github.com/Yoshino-s)\n\n## n8n@1.39.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.39.0...n8n@1.39.1) for this version.\\\n**Release date:** 2024-04-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.38.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.38.1...n8n@1.38.2) for this version.\\\n**Release date:** 2024-04-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.37.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.3...n8n@1.37.4) for this version.\\\n**Release date:** 2024-04-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.39.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.38.1...n8n@1.39.0) for this version.\\\n**Release date:** 2024-04-24\n\nThis release contains new nodes, node enhancements, and bug fixes.\n\n#### New node: WhatsApp Trigger\n\nThis release adds the [WhatsApp Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.whatsapptrigger/).\n\n#### Node enhancement: Multiple methods, one Webhook node\n\nThe Webhook Trigger node can now handle calls to multiple HTTP methods. Refer to the [Webhook node documentation](../../integrations/builtin/core-nodes/n8n-nodes-base.webhook/common-issues/#listen-for-multiple-http-methods) for information on enabling this.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Bram Kn](https://github.com/bramkn)\n\n## n8n@1.38.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.38.0...n8n@1.38.1) for this version.\\\n**Release date:** 2024-04-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.37.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.2...n8n@1.37.3) for this version.\\\n**Release date:** 2024-04-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.38.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.2...n8n@1.38.0) for this version.\\\n**Release date:** 2024-04-17\n\nThis release contains new nodes, bug fixes, and node enhancements.\n\n#### New node: Google Gemini Chat Model\n\nThis release adds the [Google Gemini Chat Model sub-node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglegemini/).\n\n#### New node: Embeddings Google Gemini\n\nThis release adds the [Google Gemini Embeddings sub-node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglegemini/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Chengyou Liu](https://github.com/cyliu0)\\\n[Francesco Mannino](https://github.com/manninofrancesco)\n\n## n8n@1.37.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.1...n8n@1.37.2) for this version.\\\n**Release date:** 2024-04-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.36.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.3...n8n@1.36.4) for this version.\\\n**Release date:** 2024-04-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.36.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.2...n8n@1.36.3) for this version.\\\n**Release date:** 2024-04-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.37.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.0...n8n@1.37.1) for this version.\\\n**Release date:** 2024-04-11\n\nBreaking change\n\nPlease note that this version contains a breaking change for self-hosted n8n. It removes the `--file` flag for the `execute` CLI command. If you have scripts relying on the `--file` flag, update them to first import the workflow and then execute it using the `--id` flag. Refer to [CLI commands](../../hosting/cli-commands/) for more information on CLI options.\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.36.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.1...n8n@1.36.2) for this version.\\\n**Release date:** 2024-04-11\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.37.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.1...n8n@1.37.0) for this version.\\\n**Release date:** 2024-04-10\n\nBreaking change\n\nPlease note that this version contains a breaking change for self-hosted n8n. It removes the `--file` flag for the `execute` CLI command. If you have scripts relying on the `--file` flag, update them to first import the workflow and then execute it using the `--id` flag. Refer to [CLI commands](../../hosting/cli-commands/) for more information on CLI options.\n\nThis release contains a new node, improvements to error handling and messaging, node enhancements, and bug fixes.\n\n#### New node: JWT\n\nThis release adds the [JWT core node](../../integrations/builtin/core-nodes/n8n-nodes-base.jwt/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Miguel Prytoluk](https://github.com/mprytoluk)\n\n## n8n@1.36.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.0...n8n@1.36.1) for this version.\\\n**Release date:** 2024-04-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.36.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.35.0...n8n@1.36.0) for this version.\\\n**Release date:** 2024-04-03\n\nThis release contains new nodes, enhancements and bug fixes.\n\n#### New node: Salesforce Trigger node\n\nThis release adds the [Salesforce Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.salesforcetrigger/).\n\n#### New node: Twilio Trigger node\n\nThis release adds the [Twilio Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.twiliotrigger/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.35.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.34.2...n8n@1.35.0) for this version.\\\n**Release date:** 2024-03-28\n\nThis release contains enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.34.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.34.1...n8n@1.34.2) for this version.\\\n**Release date:** 2024-03-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.34.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.34.0...n8n@1.34.1) for this version.\\\n**Release date:** 2024-03-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.34.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.33.1...n8n@1.34.0) for this version.\\\n**Release date:** 2024-03-20\n\nThis release contains new features, new nodes, and bug fixes.\n\n#### New node: Microsoft OneDrive Trigger node\n\nThis release adds the [Microsoft OneDrive Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftonedrivetrigger/). You can now trigger workflows on file and folder creation and update events.\n\n#### New data transformation functions\n\nThis release introduces new data transformation functions:\n\n**String**\n\n```\ntoDateTime() //replaces toDate(). toDate() is retained for backwards compatability.\nparseJson()\nextractUrlPath()\ntoBoolean()\nbase64Encode()\nbase64Decode()\n```\n\n**Number**\n\n```\ntoDateTime()\ntoBoolean()\n```\n\n**Object**\n\n```\ntoJsonString()\n```\n\n**Array**\n\n```\ntoJsonString()\n```\n\n**Date & DateTime**\n\n```\ntoDateTime()\ntoInt()\n```\n\n**Boolean**\n\n```\ntoInt()\n```\n\n### Contributors\n\n[Bram Kn](https://github.com/bramkn)\\\n[pemontto](https://github.com/pemontto)\n\n## n8n@1.33.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.33.0...n8n@1.33.1) for this version.\\\n**Release date:** 2024-03-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.32.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.32.1...n8n@1.32.2) for this version.\\\n**Release date:** 2024-03-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.33.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.32.1...n8n@1.33.0) for this version.\\\n**Release date:** 2024-03-13\n\nThis release contains new features, node enhancements, and bug fixes.\n\n#### Support for Claude 3\n\nThis release adds support for Claude 3 to the [Anthropic Chat Model](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/) node.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[gumida](https://github.com/gumida)\\\n[Ayato Hayashi](https://github.com/hayashi-ay)\\\n[Jordan](https://github.com/jordanburke)\\\n[MC Naveen](https://github.com/mcnaveen)\n\n## n8n@1.32.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.32.0...n8n@1.32.1) for this version.\\\n**Release date:** 2024-03-07\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.31.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.31.1...n8n@1.31.2) for this version.\\\n**Release date:** 2024-03-07\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.32.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.31.1...n8n@1.32.0) for this version.\\\n**Release date:** 2024-03-06\n\nThis release contains new features, node enhancements, performance improvements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.31.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.31.0...n8n@1.31.1) for this version.\\\n**Release date:** 2024-03-06\n\nBreaking changes\n\nPlease note that this version contains a breaking change. HTTP connections to the editor will fail on domains other than localhost. You can read more about it [here](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md#1320).\n\nThis is a bug fix release and it contains a breaking change.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.31.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.30.0...n8n@1.31.0) for this version.\\\n**Release date:** 2024-02-28\n\nThis release contains new features, new nodes, node enhancements and bug fixes.\n\n#### New nodes: Microsoft Outlook trigger and Ollama embeddings\n\nThis release adds two new nodes.\n\n- [Microsoft Outlook Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftoutlooktrigger/)\n- [Ollama Embeddings](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsollama/)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.30.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.30.0...n8n@1.30.1) for this version.\\\n**Release date:** 2024-02-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.30.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.29.1...n8n@1.30.0) for this version.\\\n**Release date:** 2024-02-21\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.29.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.29.0...n8n@1.29.1) for this version.\\\n**Release date:** 2024-02-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.29.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.28.0...n8n@1.29.0) for this version.\\\n**Release date:** 2024-02-15\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### New features\n\n#### OpenAI node overhaul\n\nThis release includes a new version of the [OpenAI node](../../integrations/builtin/app-nodes/n8n-nodes-langchain.openai/), adding more operations, including support for working with assistants.\n\nOther highlights:\n\n- Support for AI events in [log streaming](../../log-streaming/).\n- Added support for workflow tags in the [public API](../../api/).\n\n### Contributors\n\n[Bruno Inec](https://github.com/sweenu)\\\n[Jesús Burgers](https://github.com/jburgers-chakray)\n\n## n8n@1.27.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.27.2...n8n@1.27.3) for this version.\\\n**Release date:** 2024-02-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.28.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.27.2...n8n@1.28.0) for this version.\\\n**Release date:** 2024-02-07\n\nThis release contains new features, new nodes, node enhancements and bug fixes.\n\n#### New nodes: Azure OpenAI chat model and embeddings\n\nThis release adds two new nodes to work with [Azure OpenAI](https://azure.microsoft.com/en-gb/products/ai-services/openai-service/) in your advanced AI workflows:\n\n- [Embeddings Azure OpenAI](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsazureopenai/)\n- [Azure OpenAI Chat Model](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatazureopenai/)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Andrea Ascari](https://github.com/ascariandrea)\n\n## n8n@1.27.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.27.1...n8n@1.27.2) for this version.\\\n**Release date:** 2024-02-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.27.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.26.0...n8n@1.27.1) for this version.\\\n**Release date:** 2024-01-31\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.27.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.26.0...n8n@1.27.0) for this version.\\\n**Release date:** 2024-01-31\n\nBreaking change\n\nThis release removes `own` mode for self-hosted n8n. You must now use `EXECUTIONS_MODE` and set to either `regular` or `queue`. Refer to [Queue mode](../../hosting/scaling/queue-mode/) for information on configuring queue mode.\n\nSkip this release\n\nPlease upgrade directly to 1.27.1.\n\nThis release contains node enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.26.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.25.1...n8n@1.26.0) for this version.\\\n**Release date:** 2024-01-24\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Daniel Schröder](https://github.com/schroedan)\\\n[Nihaal Sangha](https://github.com/nihaals)\n\n## n8n@1.25.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.25.0...n8n@1.25.1) for this version.\\\n**Release date:** 2024-01-22\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Nihaal Sangha](https://github.com/nihaals)\n\n## n8n@1.25.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.24.1...n8n@1.25.0) for this version.\\\n**Release date:** 2024-01-17\n\nThis release contains a new node, feature improvements, and bug fixes.\n\n#### New node: Chat Memory Manager\n\nThe [Chat Memory Manager](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager/) node replaces the Chat Messages Retriever node. It manages chat message memories within your AI workflows.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.24.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.24.0...n8n@1.24.1) for this version.\\\n**Release date:** 2024-01-16\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.6\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.5...n8n@1.22.6) for this version.\\\n**Release date:** 2024-01-10\n\nThis is a bug fix release. It includes important fixes for the HTTP Request and monday.com nodes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.24.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.23.0...n8n@1.24.0) for this version.\\\n**Release date:** 2024-01-10\n\nThis release contains new nodes for advanced AI, node enhancements, new features, performance enhancements, and bug fixes.\n\n#### Chat trigger\n\nn8n has created a new [Chat Trigger node](../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/). The new node provides a chat interface that you can make publicly available, with customization and authentication options.\n\n#### Mistral Cloud Chat and Embeddings\n\nThis release introduces two new nodes to support [Mistral AI](https://mistral.ai/):\n\n- [Mistral Cloud Chat Model](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud/)\n- [Embeddings Mistral Cloud](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsmistralcloud/)\n\n### Contributors\n\n[Anush](https://github.com/Anush008)\\\n[Eric Koleda](https://github.com/ekoleda-codaio)\\\n[Mason Geloso](https://github.com/MasonGeloso)\\\n[vacitbaydarman](https://github.com/vacitbaydarman)\n\n## n8n@1.22.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.4...n8n@1.22.5) for this version.\\\n**Release date:** 2024-01-09\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.23.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.4...n8n@1.23.0) for this version.\\\n**Release date:** 2024-01-03\n\nThis release contains new nodes, node enhancements, new features, and bug fixes.\n\n#### New nodes and improved experience for working with files\n\nThis release includes a major overhaul of nodes relating to files (binary data).\n\nThere are now three key nodes dedicated to handling binary data files:\n\n- [Read/Write Files from Disk](../../integrations/builtin/core-nodes/n8n-nodes-base.readwritefile/) to read and write files from/to the machine where n8n is running.\n- [Convert to File](../../integrations/builtin/core-nodes/n8n-nodes-base.converttofile/) to take input data and output it as a file.\n- [Extract From File](../../integrations/builtin/core-nodes/n8n-nodes-base.extractfromfile/) to get data from a binary format and convert it to JSON.\n\nn8n has moved support for iCalendar, PDF, and spreadsheet formats into these nodes, and removed the iCalendar, Read PDF, and Spreadsheet File nodes. There are still standalone nodes for [HTML](../../integrations/builtin/core-nodes/n8n-nodes-base.html/) and [XML](../../integrations/builtin/core-nodes/n8n-nodes-base.xml/).\n\n#### New node: Qdrant vector store\n\nThis release adds support for [Qdrant](https://qdrant.tech/) with the Qdrant vector store node.\n\nRead n8n's [Qdrant vector store node documentation](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant/)\n\n### Contributors\n\n[Aaron Gutierrez](https://github.com/aarongut)\\\n[Advaith Gundu](https://github.com/geodic)\\\n[Anush](https://github.com/Anush008)\\\n[Bin](https://github.com/soulhat)\\\n[Nihaal Sangha](https://github.com/nihaals)\n\n## n8n@1.22.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.3...n8n@1.22.4) for this version.\\\n**Release date:** 2024-01-03\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.2...n8n@1.22.3) for this version.\\\n**Release date:** 2023-12-27\n\nUpgrade directly to 1.22.4\n\nDue to issues with this release, upgrade directly to 1.22.4.\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.1...n8n@1.22.2) for this version.\\\n**Release date:** 2023-12-27\n\nUpgrade directly to 1.22.4\n\nDue to issues with this release, upgrade directly to 1.22.4.\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.0...n8n@1.22.1) for this version.\\\n**Release date:** 2023-12-21\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.21.1...n8n@1.22.0) for this version.\\\n**Release date:** 2023-12-21\n\nThis release contains node enhancements, new features, performance improvements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.18.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.3...n8n@1.18.4) for this version.\\\n**Release date:** 2023-12-19\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.21.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.20.0...n8n@1.21.1) for this version.\\\n**Release date:** 2023-12-15\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.18.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.2...n8n@1.18.3) for this version.\\\n**Release date:** 2023-12-15\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.21.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.20.0...n8n@1.21.0) for this version.\\\n**Release date:** 2023-12-13\n\nThis release contains new features and nodes, node enhancements, and bug fixes.\n\n#### New user role: Admin\n\nThis release introduces a third account type: admin. This role is available on pro and enterprise plans. Admins have similar permissions to instance owners.\n\n[Read more about user roles](../../user-management/account-types/)\n\n#### New data transformation nodes\n\nThis release replaces the Item Lists node with a collection of nodes for data transformation tasks:\n\n- [Aggregate](../../integrations/builtin/core-nodes/n8n-nodes-base.aggregate/): take separate items, or portions of them, and group them together into individual items.\n- [Limit](../../integrations/builtin/core-nodes/n8n-nodes-base.aggregate/): remove items beyond a defined maximum number.\n- [Remove Duplicates](../../integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates/): identify and delete items that are identical across all fields or a subset of fields.\n- [Sort](../../integrations/builtin/core-nodes/n8n-nodes-base.sort/): organize lists of in a desired ordering, or generate a random selection.\n- [Split Out](../../integrations/builtin/core-nodes/n8n-nodes-base.splitout/): separate a single data item containing a list into multiple items.\n- [Summarize](../../integrations/builtin/core-nodes/n8n-nodes-base.summarize/): aggregate items together, in a manner similar to Excel pivot tables.\n\n#### Increased sharing permissions for owners and admins\n\nInstance owners and users with the admin role can now see and share all workflows and credentials. They can't view sensitive credential information.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.20.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.5...n8n@1.20.0) for this version.\\\n**Release date:** 2023-12-06\n\nThis release contains bug fixes, node enhancements, and ongoing new feature work.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Andrey Starostin](https://github.com/mayorandrew)\n\n## n8n@1.19.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.4...n8n@1.19.5) for this version.\\\n**Release date:** 2023-12-05\n\nThis is a bug fix release.\n\nBreaking change\n\nThis release removes the TensorFlow Embeddings node.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.18.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.1...n8n@1.18.2) for this version.\\\n**Release date:** 2023-12-05\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.19.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.0...n8n@1.19.4) for this version.\\\n**Release date:** 2023-12-01\n\nMissing ARM v7 support\n\nThis version doesn't support ARM v7. n8n is working on fixing this in future releases.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.19.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.0...n8n@1.19.0) for this version.\\\n**Release date:** 2023-11-29\n\nUpgrade directly to 1.19.4\n\nDue to issues with this release, upgrade directly to 1.19.4.\n\nThis release contains new features, node enhancements, and bug fixes.\n\n#### LangChain general availability\n\nThis release adds LangChain support to the main n8n version. Refer to [LangChain](../../advanced-ai/langchain/overview/) for more information on how to build AI tools in n8n, the new nodes n8n has introduced, and related learning resources.\n\n#### Show avatars of users working on the same workflow\n\nThis release improves the experience of users collaborating on workflows. You can now see who else is editing at the same time as you.\n\n## n8n@1.18.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.0...n8n@1.18.1) for this version.\\\n**Release date:** 2023-11-30\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.18.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.17.1...n8n@1.18.0) for this version.\\\n**Release date:** 2023-11-22\n\nThis release contains new features and bug fixes.\n\n#### Template creator hub\n\nBuilt a template you want to share? This release introduces the n8n Creator hub. Refer to the [creator hub Notion doc](https://www.notion.so/n8n-Creator-hub-7bd2cbe0fce0449198ecb23ff4a2f76f) for more information on this project.\n\n#### Node input and output search filter\n\nCloud Pro and Enterprise users can now search and filter the input and output data in nodes. Refer to [Data filtering](../../data/data-filtering/) for more information.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.17.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.17.0...n8n@1.17.1) for this version.\\\n**Release date:** 2023-11-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.17.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.16.0...n8n@1.17.0) for this version.\\\n**Release date:** 2023-11-15\n\nThis release contains node enhancements and bug fixes.\n\n#### Sticky Note Colors\n\nYou can now select background colors for sticky notes.\n\n#### Discord Node Overhaul\n\nAn overhaul of the Discord node, improving the UI making it easier to configure, improving error handling, and fixing issues.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[antondollmaier](https://github.com/antondollmaier)\\\n[teomane](https://github.com/teomane)\n\n## n8n@1.16.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.15.2...n8n@1.16.0) for this version.\\\n**Release date:** 2023-11-08\n\nThis release contains node enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.15.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.15.1...n8n@1.15.2) for this version.\\\n**Release date:** 2023-11-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.15.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.14.2...n8n@1.15.1) for this version.\\\n**Release date:** 2023-11-02\n\nThis release contains new features, node enhancements, and bug fixes.\n\n#### Workflow history\n\nThis release introduces workflow history: view and load previous versions of your workflows.\n\nWorkflow history is available in Enterprise n8n, and with limited history for Cloud Pro.\n\nLearn more in the [Workflow history](../../workflows/history/) documentation.\n\n#### Dark mode\n\n*Almost* in time for Halloween: this release introduces dark mode.\n\nTo enable dark mode:\n\n1. Select **Settings** > **Personal**.\n1. Under **Personalisation**, change **Theme** to **Dark theme**.\n\n#### Optional error output for nodes\n\nAll nodes apart from sub-nodes and trigger nodes have a new optional output: **Error**. Use this to add steps to handle node errors.\n\n#### Pagination support added to HTTP Request node\n\nThe HTTP Request node now supports an pagination. Read the [node docs](../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/) for information and examples.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Yoshino-s](https://github.com/Yoshino-s)\n\n## n8n@1.14.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.14.1...n8n@1.14.2) for this version.\\\n**Release date:** 2023-10-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.14.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.14.0...n8n@1.14.1) for this version.\\\n**Release date:** 2023-10-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.14.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.13.0...n8n@1.14.0) for this version.\\\n**Release date:** 2023-10-25\n\nThis release contains node enhancements and bug fixes.\n\n#### Switch node supports more outputs\n\nThe [Switch node](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) now supports an unlimited number of outputs.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.13.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.12.2...n8n@1.13.0) for this version.\\\n**Release date:** 2023-10-25\n\nThis release contains new features, feature enhancements, and bug fixes.\n\nUpgrade directly to 1.14.0\n\nThis release failed to publish to npm. Upgrade directly to 1.14.0.\n\n#### RSS Feed Trigger node\n\nThis releases introduces a new node, the [RSS Feed Trigger](../../integrations/builtin/core-nodes/n8n-nodes-base.rssfeedreadtrigger/). Use this node to start a workflow when a new RSS feed item is published.\n\n#### Facebook Lead Ads Trigger node\n\nThis releases add another new node, the [Facebook Lead Ads Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.facebookleadadstrigger/). Use this node to trigger a workflow when you get a new lead.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.12.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.12.1...n8n@1.12.2) for this version.\\\n**Release date:** 2023-10-24\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Burak Akgün](https://github.com/mbakgun)\n\n## n8n@1.12.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.12.0...n8n@1.12.1) for this version.\\\n**Release date:** 2023-10-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Léo Martinez](https://github.com/martinezleoml)\n\n## n8n@1.11.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.11.1...n8n@1.11.2) for this version.\\\n**Release date:** 2023-10-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Inga](https://github.com/inga-lovinde)\\\n[pemontto](https://github.com/pemontto)\n\n## n8n@1.12.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.11.1...n8n@1.12.0) for this version.\\\n**Release date:** 2023-10-18\n\nThis release contains new features, node enhancements, and bug fixes.\n\n#### Form Trigger node\n\nThis releases introduces a new node, the [n8n Form Trigger](../../integrations/builtin/core-nodes/n8n-nodes-base.formtrigger/). Use this node to start a workflow based on a user submitting a form. It provides a configurable form interface.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Damian Karzon](https://github.com/dkarzon)\\\n[Inga](https://github.com/inga-lovinde)\\\n[pemontto](https://github.com/pemontto)\n\n## n8n@1.11.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.11.0...n8n@1.11.1) for this version.\\\n**Release date:** 2023-10-13\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.11.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.10.1...n8n@1.11.0) for this version.\\\n**Release date:** 2023-10-11\n\nThis release contains new features and bug fixes.\n\n#### External storage for binary files\n\nSelf-hosted users can now use an external service to store binary data. Learn more in [External storage](../../hosting/scaling/external-storage/).\n\nIf you're using n8n Cloud and are interested in this feature, please [contact n8n](https://n8n-community.typeform.com/to/y9X2YuGa).\n\n#### Item Lists node supports binary data\n\nThe Item Lists node now supports splitting and concatenating binary data inputs. This means you no longer need to use code to split a collection of files into multiple items.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.10.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.10.0...n8n@1.10.1) for this version.\\\n**Release date:** 2023-10-11\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.9.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.9.2...n8n@1.9.3) for this version.\\\n**Release date:** 2023-10-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.9.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.9.1...n8n@1.9.2) for this version.\\\n**Release date:** 2023-10-09\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.10.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.9.1...n8n@1.10.0) for this version.\\\n**Release date:** 2023-10-05\n\nThis release contains bug fixes and preparatory work for new features.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.9.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.9.0...n8n@1.9.1) for this version.\\\n**Release date:** 2023-10-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## LangChain in n8n (beta)\n\n**Release date:** 2023-10-04\n\nThis release introduces support for building with LangChain in n8n.\n\nWith n8n's LangChain nodes you can build AI-powered functionality within your workflows. The LangChain nodes are configurable, meaning you can choose your preferred agent, LLM, memory, and other components. Alongside the LangChain nodes, you can connect any n8n node as normal: this means you can integrate your LangChain logic with other data sources and services.\n\nRead more:\n\n- This is a beta release, and not yet available in the main product. Follow the instructions in [Access LangChain in n8n](../../advanced-ai/langchain/overview/) to try it out. Self-hosted and Cloud options are available.\n- Learn how LangChain concepts map to n8n nodes in [LangChain concepts in n8n](../../advanced-ai/langchain/langchain-n8n/).\n- Browse n8n's new [Cluster nodes](../../integrations/builtin/cluster-nodes/). This is a new set of node types that allows for multiple nodes to work together to configure each other.\n\n## n8n@1.9.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.8.2...n8n@1.9.0) for this version.\\\n**Release date:** 2023-09-28\n\nThis release contains new features, performance improvements, and bug fixes.\n\n#### Tournament\n\nThis releases replaces RiotTmpl, the templating language used in expressions, with n8n's own templating language, [Tournament](https://github.com/n8n-io/tournament). You can now use arrow functions in expressions.\n\n#### `N8N_BINARY_DATA_TTL` and `EXECUTIONS_DATA_PRUNE_TIMEOUT` removed\n\nThe environment variables `N8N_BINARY_DATA_TTL` and `EXECUTIONS_DATA_PRUNE_TIMEOUT` no longer have any effect and can be removed. Instead of relying on a TTL system for binary data, n8n cleans up binary data together with executions during pruning.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.8.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.8.1...n8n@1.8.2) for this version.\\\n**Release date:** 2023-09-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.8.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.8.0...n8n@1.8.1) for this version.\\\n**Release date:** 2023-09-21\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.8.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.7.1...n8n@1.8.0) for this version.\\\n**Release date:** 2023-09-20\n\nThis release contains node enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.7.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.7.0...n8n@1.7.1) for this version.\\\n**Release date:** 2023-09-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.7.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.6.1...n8n@1.7.0) for this version.\\\n**Release date:** 2023-09-13\n\nThis release contains node enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Quang-Linh LE](https://github.com/linktohack)\\\n[MC Naveen](https://github.com/mcnaveen)\n\n## n8n@1.6.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.6.0...n8n@1.6.1) for this version.\\\n**Release date:** 2023-09-06\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.6.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.5.1...n8n@1.6.0) for this version.\\\n**Release date:** 2023-09-06\n\nThis release contains bug fixes, new features, and node enhancements.\n\nUpgrade directly to 1.6.1\n\nSkip this version and upgrade directly to 1.6.1, which contains essential bug fixes.\n\n#### TheHive 5\n\nThis release introduces support for TheHive API version 5. This uses a new node and credentials:\n\n- [TheHive 5 node](../../integrations/builtin/app-nodes/n8n-nodes-base.thehive5/)\n- [TheHive 5 Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.thehive5trigger/)\n- [TheHive 5 credentials](../../integrations/builtin/credentials/thehive5/)\n\n#### `N8N_PERSISTED_BINARY_DATA_TTL` removed\n\nThe environment variables `N8N_PERSISTED_BINARY_DATA_TTL` no longer has any effect and can be removed. This legacy flag was originally introduced to support ephemeral executions (see [details](https://github.com/n8n-io/n8n/pull/7046)), which are no longer supported.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.5.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.5.0...n8n@1.5.1) for this version.\\\n**Release date:** 2023-08-31\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.5.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.4.1...n8n@1.5.0) for this version.\\\n**Release date:** 2023-08-31\n\nThis release contains new features, node enhancements, and bug fixes.\n\nUpgrade directly to 1.5.1\n\nSkip this version and upgrade directly to 1.5.1, which contains essential bug fixes.\n\n### Highlights\n\n#### External secrets storage for credentials\n\nEnterprise-tier accounts can now use external secrets vaults to manage credentials in n8n. This allows you to store credential information securely outside your n8n instance. n8n supports Infisical and HashiCorp Vault.\n\nRefer to [External secrets](../../external-secrets/) for guidance on enabling and using this feature.\n\n#### Two-factor authentication\n\nn8n now supports two-factor authentication (2FA) for self-hosted instances. n8n is working on bringing support to Cloud. Refer to [Two-factor authentication](../../user-management/two-factor-auth/) for guidance on enabling and using it.\n\n#### Debug executions\n\nUsers on a paid n8n plan can now load data from previous executions into their current workflow. This is useful when debugging a failed execution.\n\nRefer to [Debug executions](../../workflows/executions/debug/) for guidance on using this feature.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.4.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.4.0...n8n@1.4.1) for this version.\\\n**Release date:** 2023-08-29\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.4.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.3.1...n8n@1.4.0) for this version.\\\n**Release date:** 2023-08-23\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[pemontto](https://github.com/pemontto)\n\n## n8n@1.3.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.3.0...n8n@1.3.1) for this version.\\\n**Release date:** 2023-08-18\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.3.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.2.2...n8n@1.3.0) for this version.\\\n**Release date:** 2023-08-16\n\nThis release contains new features and bug fixes.\n\n### Highlights\n\n#### Trial feature: AI support in the Code node\n\nThis release introduces limited support for using AI to generate code in the Code node. Initially this feature is only available on Cloud, and will gradually be rolled out, starting with about 20% of users.\n\nLearn how to use the feature, including guidance on writing prompts, in [Generate code with ChatGPT](../../code/ai-code/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Ian Gallagher](https://github.com/craSH)\\\n[Xavier Calland](https://github.com/xavier-calland)\n\n## n8n@1.2.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.2.1...n8n@1.2.2) for this version.\\\n**Release date:** 2023-08-14\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.2.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.2.0...n8n@1.2.1) for this version.\\\n**Release date:** 2023-08-09\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.2.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.1.1...n8n@1.2.0) for this version.\\\n**Release date:** 2023-08-09\n\nThis release contains new features, node enhancements, bug fixes, and performance improvements.\n\nUpgrade directly to 1.2.1\n\nWhen upgrading, skip this release and go directly to 1.2.1.\n\n### Highlights\n\n#### Credential support for SecOps services\n\nThis release introduces support for setting up credentials in n8n for the following services:\n\n- [AlienVault](../../integrations/builtin/credentials/alienvault/)\n- [Auth0 Management](../../integrations/builtin/credentials/auth0management/)\n- [Carbon Black API](../../integrations/builtin/credentials/carbonblack/)\n- [Cisco Meraki API](../../integrations/builtin/credentials/ciscomeraki/)\n- [Cisco Secure Endpoint](../../integrations/builtin/credentials/ciscosecureendpoint/)\n- [Cisco Umbrella API](../../integrations/builtin/credentials/ciscoumbrella/)\n- [CrowdStrike](../../integrations/builtin/credentials/crowdstrike/)\n- [F5 Big-IP](../../integrations/builtin/credentials/f5bigip/)\n- [Fortinet FortiGate](../../integrations/builtin/credentials/fortigate/)\n- [Hybrid Analysis](../../integrations/builtin/credentials/hybridanalysis/)\n- [Imperva WAF](../../integrations/builtin/credentials/impervawaf/)\n- [Kibana](../../integrations/builtin/credentials/kibana/)\n- [Microsoft Entra ID](../../integrations/builtin/credentials/microsoftentra/)\n- [Mist](../../integrations/builtin/credentials/mist/)\n- [Okta](../../integrations/builtin/credentials/okta/)\n- [OpenCTI](../../integrations/builtin/credentials/opencti/)\n- [QRadar](../../integrations/builtin/credentials/qradar/)\n- [Qualys](../../integrations/builtin/credentials/qualys/)\n- [Recorded Future](../../integrations/builtin/credentials/recordedfuture/)\n- [Sekoia](../../integrations/builtin/credentials/sekoia/)\n- [Shuffler](../../integrations/builtin/credentials/shuffler/)\n- [Trellix ePO](../../integrations/builtin/credentials/trellixepo/)\n- [VirusTotal](../../integrations/builtin/credentials/virustotal/)\n- [Zscaler ZIA](../../integrations/builtin/credentials/zscalerzia/)\n\nThis makes it easier to do [Custom operations](../../integrations/custom-operations/) with these services, using the [HTTP Request](../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/) node.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.1.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.1.0...n8n@1.1.1) for this version.\\\n**Release date:** 2023-07-27\n\nThis is a bug fix release.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.1.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.5...n8n@1.1.0) for this version.\\\n**Release date:** 2023-07-26\n\nThis release contains new features, bug fixes, and node enhancements.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\n### Highlights\n\n#### Source control and environments\n\nThis release introduces source control and environments for enterprise users.\n\nn8n uses Git-based source control to support environments. Linking your n8n instances to a Git repository lets you create multiple n8n environments, backed by Git branches.\n\nRefer to [Source control and environments](../../source-control-environments/) to learn more about the features and set up your environments.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Adrián Martínez](https://github.com/adrian-martinez-vdshop)\\\n[Alberto Pasqualetto](https://github.com/albertopasqualetto)\\\n[Marten Steketee](https://github.com/Marten-S)\\\n[perseus-algol](https://github.com/perseus-algol)\\\n[Sandra Ashipala](https://github.com/sandramsc)\\\n[ZergRael](https://github.com/ZergRael)\n\n## n8n@1.0.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.4...n8n@1.0.5) for this version.\\\n**Release date:** 2023-07-24\n\nThis is a bug fix release.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.0.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.3...n8n@1.0.4) for this version.\\\n**Release date:** 2023-07-19\n\nThis is a bug fix release.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Romain Dunand](https://github.com/airmoi)\\\n[noctarius aka Christoph Engelbert](https://github.com/noctarius)\n\n## n8n@1.0.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.2...n8n@1.0.3) for this version.\\\n**Release date:** 2023-07-13\n\nThis release contains API enhancements and adds support for sending messages to forum threads in the Telegram node.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Kirill](https://github.com/chrtkv)\n\n## n8n@1.0.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.1...n8n@1.0.2) for this version.\\\n**Release date:** 2023-07-05\n\nThis is a bug fix release.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\n### Contributors\n\n[Romain Dunand](https://github.com/airmoi)\n\n## n8n@1.0.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.0...n8n@1.0.1) for this version.\\\n**Release date:** 2023-07-05\n\nBreaking changes\n\nPlease note that this version contains breaking changes. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nThis is n8n's version one release.\n\nFor full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\n### Highlights\n\n#### Python support\n\nAlthough JavaScript remains the default language, you can now also select Python as an option in the [Code node](../../code/code-node/) and even make use of [many Python modules](https://pyodide.org/en/stable/usage/packages-in-pyodide.html#packages-in-pyodide). Note that Python is unavailable in Code nodes added to a workflow before v1.0.\n\n### Contributors\n\n[Marten Steketee](https://github.com/Marten-S)\n",
|
|
88048
|
-
"excerpt": "#
|
|
88053
|
+
"markdown": "# Source control and environments\n\nFeature availability\n\n- Available on Business and Enterprise plans.\n- You must be an n8n instance owner or instance admin to enable and configure source control.\n- Instance owners and instance admins can push changes to and pull changes from the connected repository.\n- Project admins can push changes to the connected repository. They can't pull changes from the repository.\n\nn8n uses Git-based source control to support environments. Linking your n8n instances to a Git repository lets you create multiple n8n environments, backed by Git branches.\n\nIn this section:\n\n- [Understand](understand/):\n - [Environments in n8n](understand/environments/): The purpose of environments, and how they work in n8n.\n - [Git and n8n](understand/git/): How n8n uses Git.\n - [Branch patterns](understand/patterns/): The possible relationships between n8n instances and Git branches.\n- [Set up source control for environments](setup/): How to connect your n8n instance to Git.\n- [Using](using/):\n - [Push and pull](using/push-pull/): Send work to Git, and fetch work from Git to your instance.\n - [Copy work between environments](using/copy-work/): How to copy work between different n8n instances.\n- [Tutorial: Create environments with source control](create-environments/): An end-to-end tutorial, setting up environments using n8n's recommended configurations.\n\nRelated sections:\n\n- [Variables](../code/variables/): reusable values.\n- [External secrets](../external-secrets/): manage [credentials](../glossary/#credential-n8n) with an external secrets vault.\n/github.com/n8n-io/n8n/compare/n8n@1.123.27...n8n@1.123.28) for this version.\\\n**Release date:** 2026-04-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.27\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.26...n8n@1.123.27) for this version.\\\n**Release date:** 2026-03-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.26\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.25...n8n@1.123.26) for this version.\\\n**Release date:** 2026-03-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.25\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.24...n8n@1.123.25) for this version.\\\n**Release date:** 2026-03-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.24\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.23...n8n@1.123.24) for this version.\\\n**Release date:** 2026-03-13\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.23\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.22...n8n@1.123.23) for this version.\\\n**Release date:** 2026-03-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.22\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.21...n8n@1.123.22) for this version.\\\n**Release date:** 2026-02-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.20\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.19...n8n@1.123.20) for this version.\\\n**Release date:** 2026-02-06\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.19\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.18...n8n@1.123.19) for this version.\\\n**Release date:** 2026-02-06\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.18\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.17...n8n@1.123.18) for this version.\\\n**Release date:** 2026-01-29\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.16\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.15...n8n@1.123.16) for this version.\\\n**Release date:** 2026-01-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.15\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.14...n8n@1.123.15) for this version.\\\n**Release date:** 2026-01-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.13\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.12...n8n@1.123.13) for this version.\\\n**Release date:** 2026-01-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.12\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.11...n8n@1.123.12) for this version.\\\n**Release date:** 2026-01-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.11\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.10...n8n@1.123.11) for this version.\\\n**Release date:** 2026-01-08\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.10\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.9...n8n@1.123.10) for this version.\\\n**Release date:** 2025-12-31\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.9\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.8...n8n@1.123.9) for this version.\\\n**Release date:** 2025-12-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.8\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.7...n8n@1.123.8) for this version.\\\n**Release date:** 2025-12-22\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.7\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.6...n8n@1.123.7) for this version.\\\n**Release date:** 2025-12-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.6\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.5...n8n@1.123.6) for this version.\\\n**Release date:** 2025-12-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.4...n8n@1.123.5) for this version.\\\n**Release date:** 2025-12-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.2...n8n@1.123.3) for this version.\\\n**Release date:** 2025-12-05\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.1...n8n@1.123.2) for this version.\\\n**Release date:** 2025-12-04\n\nNext version\n\nThis is the `next` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.0...n8n@1.123.1) for this version.\\\n**Release date:** 2025-12-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.0...n8n@1.123.1) for this version.\\\n**Release date:** 2025-12-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.123.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.0...n8n@1.123.0) for this version.\\\n**Release date:** 2025-12-01\n\nThis release contains bug fixes.\n\n### Contributors\n\n[farzad528](https://github.com/farzad528)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.4...n8n@1.122.5) for this version.\\\n**Release date:** 2025-12-04\n\nLatest version\n\nThis is the `latest` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.3...n8n@1.122.4) for this version.\\\n**Release date:** 2025-11-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.2...n8n@1.122.3) for this version.\\\n**Release date:** 2025-11-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.0...n8n@1.122.2) for this version.\\\n**Release date:** 2025-11-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.122.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.121.0...n8n@1.122.0) for this version.\\\n**Release date:** 2025-11-24\n\nThis release contains bug fixes and features.\n\n### MCP Client node\n\nThe **MCP Client node** allows you to connect to and use tools exposed by remote MCP servers directly within your workflow.\n\nPreviously, this functionality was only available through AI Agents using the **MCP Client Tool**. With this standalone node, you can now call MCP servers *from any step* in your workflow without relying on an Agent - providing greater flexibility and control over how and where you integrate external tools.\n\n### Custom project roles\n\n**What's new**\\\nYou can now define **custom project roles** that precisely control what a user can do **inside a project**.\n\n- Three **system roles** remain built‑in and non-editable (Admin, Editor, Viewer)\n- You can **create your own roles** (e.g. “Workflow Builder”, “Credential Manager”, “Read‑only Analyst”) with granular permissions per resource:\n- Project\n- Folders\n- Workflows\n- Credentials\n- Data tables / Variables\n- Pushing changes via source control\\\n Example: a “Workflow Builder” role that can:\n- View everything in the project\n- Create and edit workflows and folders\n- Use existing credentials but not create or edit credentials\n\nProject roles is now available in the settings of your n8n Enterprise instance.\n\n**How it works**\n\n1. Go to the new Project roles section (instance admins only).\n1. Start from a preset (Admin, Editor, Viewer) or from scratch.\n1. Configure CRUD‑style permissions.\n1. Save the role. It now becomes available in the project member picker alongside system roles.\n1. Assign these roles to project members.\n\nCustom project roles let you assign permissions that match your organization's needs, improving governance and security in a clear, transparent, and manageable way.\n\nCustom project roles is only available on **n8n enterprise**.\n\n### User provisioning via SSO\n\nIf you’re using SAML or OIDC, your Identity Provider (Okta, Azure AD, Google Workspace, etc.) can now automatically assign each user’s instance role and project roles when they log in.\n\nWhen enabled, administrators can map a group or individual on their SSO identity provider to an instance role and one or more project roles.\n\nThis allows you to manage access centrally from your IdP with automated onboarding and off-boarding, eliminating manual access updates inside the n8n UI\n\nLearn more in our dedicated documentation pages.\n\nFor [OIDC](../../user-management/oidc/setup/#instance-and-project-access-provisioning) For [SAML](../../user-management/saml/setup/#instance-and-project-access-provisioning)\n\nNotes: User provisioning is not real-time and updates apply on the user’s next login.\n\nUser provisioning is only available on n8n Enterprise.\n\n- The AI Workflow Builder now uses improved internal best-practice instructions, which helps it generate higher quality workflows for users.\n- Core updates allow creating data tables from CSV files, configurable workflow statistics, and improved user role provisioning for enterprise, including SSO settings integration.\n- Enterprise customers using Single Sign On via SAML or OIDC can now provision the instance role and project role of each user in their organisation from their Identity Provider.\n - See the [new SAML documentation](../../user-management/saml/setup/#instance-and-project-access-provisioning)\n - See the [new OIDC documentation](../../user-management/oidc/setup/#instance-and-project-access-provisioning)\n- The editor features a dismissable callout for scaling mode, CSV download for data tables, custom project roles (Beta), and enhanced data table visibility.\n- Additional improvements include Stripe billing meter events, and updates to binary data handling and workflow search.\n\n### Contributors\n\n[mi1os](https://github.com/mi1os)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.121.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.121.2...n8n@1.121.3) for this version.\\\n**Release date:** 2025-11-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.121.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.121.1...n8n@1.121.2) for this version.\n\n- Fixed an issue with MCP access scope in the core system.\n- Updated editor to improve notice background colors for better visibility.\n\nThis release also contains bug fixes. **Release date:** 2025-11-20\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.121.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.121.0...n8n@1.121.1) for this version.\n\n- Prepared patch release 1.121.1 by updating version numbers across all packages.\n- Added a changelog entry for version 1.121.1 to document the release.\n\n**Release date:** 2025-11-19\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.121.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.120.0...n8n@1.121.0) for this version.\n\n**Release date:** 2025-11-18\n\n### Critical security update\n\nThis release contains a critical security update. For more information, see [Security Advisory: Security Vulnerability in n8n Versions 1.65-1.120.4](https://blog.n8n.io/security-advisory-20260108/).\n\n### Instance-level MCP connections (beta)\n\nYou can now enable MCP connections at the instance level, giving MCP-compatible AI platforms access to all selected workflows through a single oAuth-secured connection.\n\nOnce connected, these platforms can discover and interact with your workflows directly from their own interfaces, so you can observe, query, and trigger n8n workflows without switching contexts. As you add new MCP-enabled workflows to your instance, they automatically become available through the same connection without additional setup.\n\n🛠️ How to: To enable workflows through an instance-level MCP connection, both your instance and each workflow must be opted in.\n\n- To turn this feature on in your n8n instance, go the settings page for the instance and switch the Enable MCP Access toggle to on.\n- To allow access to individual workflows, go to the settings in each workflow and switch the Available in MCP toggle to on.\n\n🧠 Keep in mind:\n\n- To keep access organized and auditable, consider using a workspace or team account when connecting on behalf of an organization.\n- All platforms connected to your instance MCP will have access to each of the workflows you have enabled. At this time, you cannot limit access of individual workflows to particular platforms.\n\nThis feature simplifies integration and improves visibility across AI platforms that support MCP, helping you use your n8n workflows directly in the tools where you already work and experiment. [Learn more in documentation.](../../advanced-ai/accessing-n8n-mcp-server/)\n\nEnable MCP for an instance in instance settings.\n\nEnable MCP for each workflow in workflow settings.\n\n### Contributors\n\n[vicalca](https://github.com/vicalca)\\\n[datpp-ct](https://github.com/datpp-ct)\\\n[cesars-gh](https://github.com/cesars-gh)\\\n[farzad528](https://github.com/farzad528)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.120.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.120.3...n8n@1.120.4) for this version.\n\n**Release date:** 2025-11-19\n\n- Prepared for release 1.120.4 by updating version numbers across all core, backend, AI/LLM, frontend, and tooling packages.\n- Added a changelog entry for version 1.120.4 to document the release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.120.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.120.1...n8n@1.120.2) for this version.\\\n**Release date:** 2025-11-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.120.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.120.0...n8n@1.120.1) for this version.\\\n**Release date:** 2025-11-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.120.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.119.0...n8n@1.120.0) for this version.\\\n**Release date:** 2025-11-10\n\nThis release contains **security updates** and bug fixes. We recommend all users upgrade promptly to version 1.120 or higher.\n\n### Contributors\n\n[rothenbergt](https://github.com/rothenbergt)\n\n## n8n@1.119.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.119.1...n8n@1.119.2) for this version.\\\n**Release date:** 2025-11-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.119.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.119.0...n8n@1.119.1) for this version.\\\n**Release date:** 2025-11-10\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.118.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.118.1...n8n@1.118.2) for this version.\\\n**Release date:** 2025-11-05\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.119.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.118.0...n8n@1.119.0) for this version.\\\n**Release date:** 2025-11-03\n\nThis release includes multiple bug fixes for AI Agent, task runners, editor, and integrations, as well as new features like improved workflow settings, AWS Assume Role credentials, and enhanced security and audit capabilities.\n\n### Guardrails Node\n\nThe Guardrails node provides a set of rules and policies that control an AI agent's behavior by filtering its inputs and outputs. This helps safeguard from malicious input and from generating unsafe or undesirable responses. There are two operations:\n\n- Check Text for Violations: Validate text against a set of policies (e.g. NSFW, prompt injection).\n- Sanitize Text: Detects and replaces specific data such as PII, URLs, or secrets with placeholders.\n\nThe default presets and prompts are adapted from the open-source [guardrails package](https://github.com/openai/openai-guardrails-js) made available by OpenAI.\n\nFor more info, see [Guardrails documentation](../../integrations/builtin/core-nodes/n8n-nodes-langchain.guardrails/)\n\n### OAuth for MCP Client Tool node\n\nThe MCP Client Tool now supports OAuth authentication, enabling secure connections to APIs that implement delegated access flows. [Learn more](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolmcp/) about the MCP Client Tool node.\n\nAuthentication options in MCP Client Tool node\n\n### Contributors\n\n[cesars-gh](https://github.com/cesars-gh)\\\n[ongdisheng](https://github.com/ongdisheng)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.118.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.118.0...n8n@1.118.1) for this version.\\\n**Release date:** 2025-10-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.117.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.117.2...n8n@1.117.3) for this version.\\\n**Release date:** 2025-10-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.118.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.117.0...n8n@1.118.0) for this version.\\\n**Release date:** 2025-10-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Project-level variables\n\nYou can now create variables at either the global or project level.\n\n- Project-level variables are only visible and usable by members of that project.\n- Global variables can be overridden at the project level for more specific configurations.\n- The maximum character limit has been increased to 1,000 to support longer values.\n\nThis update improves security and flexibility as part of our ongoing effort to isolate data and settings per project.\n\n### Improvements to Environments\n\nWe’ve made several updates to improve reliability, consistency, and control across environments.\n\n- **Projects are now fully synchronized across environments.** When a workflow is pushed within a project, it’s automatically created and synced in all environments where it’s pulled. Moving, renaming, or deleting projects is now reflected everywhere, keeping instances aligned.\n- **Improved protection for read-only environments.** Read-only instances now block all changes, including folder moves and workflow ownership updates, ensuring production environments stay stable and isolated.\n- **Bug fix: tag mapping synchronization.** Fixed an issue where tag mappings only updated when tags changed. They now sync on every commit for consistent tagging across environments.\n\n### Custom date ranges for Insights\n\nYou can now define custom date ranges instead of using fixed ones, giving you more control over the data you analyze.\n\n## n8n@1.117.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.117.1...n8n@1.117.2) for this version.\\\n**Release date:** 2025-10-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.117.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.117.0...n8n@1.117.1) for this version.\\\n**Release date:** 2025-10-24\n\nThis release contains bug fixes.\n\n### AI Workflow Builder is now available to Enterprise Cloud users.\n\nAI Workflow Builder turns prompts into workflows. Describe what you want to build, and n8n will generate a draft workflow by adding, configuring, and connecting nodes for you. From there, you can refine and expand the workflow directly in the editor.\n\n**What’s new:**\n\n- Previously available to Starter and Pro users, AI Workflow Builder is now accessible to Enterprise Cloud users as well, with 1,000 monthly credits.\n- Supported on n8n version 1.115+. **If you don’t see the feature yet, open /settings/usage to trigger a license refresh.**\n- We’ve fixed a bug and now cloud users on v1.117.1 onwards will have access to a more reliable builder.\n- We’re currently working on bringing AI Workflow Builder to self-hosted users as well, including Community, Business, and Enterprise.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.117.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.116.0...n8n@1.117.0) for this version.\\\n**Release date:** 2025-10-21\n\nThis release contains bug fixes.\n\n### Contributors\n\n[jackfrancismurphy](https://github.com/jackfrancismurphy)\\\n[JiriDeJonghe](https://github.com/JiriDeJonghe)\\\n[ramkrishna2910](https://github.com/ramkrishna2910)\\\nOracle and/or its affiliates ([sudarshan12s](https://github.com/sudarshan12s))\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.116.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.116.1...n8n@1.116.2) for this version.\\\n**Release date:** 2025-10-21\n\nThis release contains a bug fix.\n\n## n8n@1.115.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.3...n8n@1.115.4) for this version.\\\n**Release date:** 2025-10-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.116.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.116.0...n8n@1.116.1) for this version.\\\n**Release date:** 2025-10-14\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.116.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.0...n8n@1.116.0) for this version.\\\n**Release date:** 2025-10-13\n\nThis release contains bug fixes.\n\n### Data migration tool\n\nYou can now easily migrate n8n data between different database types. This new tooling currently supports SQLite and Postgres, making the transition to a scaling database choice simpler, allowing you to take your data with you.\n\nThe tooling comes in the form of two new CLI commands, `export:entities` and `import:entities`\n\n**`Export`** The new export command lets you export data from your existing n8n database (SQLite / Postgres), producing a set of encrypted files within a compressed directory for you to move around and use with the import commands.\n\nFor details, see [Export entities](../../hosting/cli-commands/#export-entities)\n\n**`Import`** The new import command allows you to read from a compressed and encrypted set of files generated from the new export command, and import them in to your new database of choice (SQLite / Postgres) to be used with your n8n instance.\n\nFor details, see [Import entities](../../hosting/cli-commands/#import-entities)\n\n### Contributors\n\n[JHTosas](https://github.com/JHTosas)\\\n[clesecq](https://github.com/clesecq)\\\n[Gulianrdgd](https://github.com/Gulianrdgd)\\\n[tishun](https://github.com/tishun)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.116.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.0...n8n@1.116.0) for this version.\\\n**Release date:** 2025-10-13\n\nThis release contains bug fixes.\n\n### Contributors\n\n[JHTosas](https://github.com/JHTosas)\\\n[clesecq](https://github.com/clesecq)\\\n[Gulianrdgd](https://github.com/Gulianrdgd)\\\n[tishun](https://github.com/tishun)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.115.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.2...n8n@1.115.3) for this version.\\\n**Release date:** 2025-10-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.115.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.115.1...n8n@1.115.2) for this version.\\\n**Release date:** 2025-10-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.114.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.3...n8n@1.114.4) for this version.\\\n**Release date:** 2025-10-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.115.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.0...n8n@1.115.0) for this version.\\\n**Release date:** 2025-10-06\n\nThis release contains bug fixes.\n\n### AI Workflow Builder (Beta)\n\n**AI Workflow Builder** turns your natural language prompts into working automations. Describe what you want to build, and n8n will generate a draft workflow by adding and configuring nodes and wiring up the logic for you. From there, you can refine, expand, or adjust the workflow directly in the editor.\n\nThis feature helps you move from idea to implementation faster and without losing technical control. It’s especially helpful when starting from a blank canvas, validating an approach, or exploring new nodes and capabilities. Multi-turn interaction lets you iterate in conversation, turning your ideas into structured, production-ready workflows step by step.\n\nLearn more about how we we’re building this feature in our [forum post](https://community.n8n.io/t/ai-powered-workflow-building-coming-soon/196499).\n\n[](/_video/release-notes/AI_Workflow_Builder.webm)\n\n**Availability:**\n\n- This feature is initially going to be available for Cloud users on the 14-day Trial, Starter and Pro plans.\n- Availability for Enterprise users on Cloud will follow in a future update.\n- We are actively exploring the best way to bring this feature to self-hosted users.\n\n**Rollout timing:**\n\n- To ensure the smoothest experience for all users, this feature will be rolled out to users on version 1.115.0 over the course of a week so you may not have access to the feature immediately when you upgrade to 1.115.0.\n\n**Credit limits by plan:** This feature will have monthly credit limits [by plan](https://n8n.io/pricing/).\n\n- Each prompt/interaction with the AI Workflow Builder consumes one credit.\n- Trial users have access to 20 credits, Starter plans have 50 per month and Pro plans will have 150 credits per month.\n- At this time, there will not be a way to access additional credits within your plan, however we are we are exploring this.\n\nLearn more about AI Workflow Builder in [documentation](https://docs.n8n.io/advanced-ai/ai-workflow-builder/).\n\n### Source Control: Added HTTPS support\n\nYou can now connect to Git repositories via HTTPS in addition to SSH, making Source Control usable in environments where SSH is restricted.\n\nHTTPS is now supported as a connection type in Environments.\n\n### Contributors\n\n[baileympearson](https://github.com/baileympearson)\\\n[h40huynh](https://github.com/h40huynh)\\\n[Ankit-69k](https://github.com/Ankit-69k)\\\n[francisfontoura](https://github.com/francisfontoura)\\\n[iocanel](https://github.com/iocanel)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.114.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.2...n8n@1.114.3) for this version.\\\n**Release date:** 2025-10-06\n\nThis release contains bug fixes.\n\n## n8n@1.114.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.1...n8n@1.114.2) for this version.\\\n**Release date:** 2025-10-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.114.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.114.0...n8n@1.114.1) for this version.\\\n**Release date:** 2025-10-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.114.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.113.0...n8n@1.114.0) for this version.\\\n**Release date:** 2025-09-29\n\nThis release contains core updates, editor improvements, project updates, performance improvements, and bug fixes.\n\n### Contributors\n\n[nealzhu3](https://github.com/nealzhu3)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.113.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.113.2...n8n@1.113.3) for this version.\\\n**Release date:** 2025-09-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.6\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.5...n8n@1.112.6) for this version.\\\n**Release date:** 2025-09-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.113.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.113.1...n8n@1.113.2) for this version.\\\n**Release date:** 2025-09-24\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Python task runner\n\nThis version introduces the **Python task runner** as a beta feature. This feature secures n8n's Python sandbox and enables users to run real Python modules in n8n workflows. The original Pyodide-based implementation will be phased out.\n\nThis is a **breaking change** that replaces Pyodide - see [here](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.code/#python-native-beta) for a list of differences. Any Code node set to the legacy `python` parameter will need to be manually updated to use the new `pythonNative` parameter. Any Code node script set to `python` and relying on Pyodide syntax is likely to need to be manually adjusted to account for breaking changes.\n\n- For self-hosting users, see [here](https://docs.n8n.io/hosting/configuration/task-runners/#setting-up-external-mode) for deployment instructions for task runners going forward and how to install extra dependencies.\n- On n8n Cloud, this will be a gradual transition. If in your n8n Cloud instance the Code node offers an option named \"Python (Native) (Beta)\", then your instance has been transitioned to native Python and you will need to look out for any breaking changes. Imports are disabled for security reasons at this time.\n\nThe native Python runner is currently in beta and is subject to change as we find a balance between security and usability. Your feedback is welcome.\n\n## n8n@1.112.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.4...n8n@1.112.5) for this version.\\\n**Release date:** 2025-09-24\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.113.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.113.0...n8n@1.113.1) for this version.\\\n**Release date:** 2025-09-23\n\nThis release contains bug fixes.\n\n### Data tables\n\nWe’re excited to introduce **data tables**, bringing built-in data storage to n8n. You can now store and query structured data directly inside the platform, without relying on external databases for many common automation scenarios. Track workflow state between runs, store tokens or session data, keep product or customer reference tables, or stage intermediate results for multi-step processes.\n\nPreviously, persisting data meant provisioning and connecting to an external store such as Redis or Google Sheets. That added credential setup, infrastructure overhead, latency, and constant context switching. **Data tables** eliminate that friction and keeps your data easily editable and close to your workflows.\n\nData tables are available today on all plans. They currently support numbers, strings, and datetimes with JSON support coming soon. On Cloud, each instance can store up to 50 MB. On self-hosted setups, the default is also 50 MB, but this limit can be adjusted if your infrastructure allows.\n\n[Overview of data tables](https://www.youtube.com/watch?v=ljkiIkt6lZ4)\n\n🛠️ **How to:**\n\n**Create a data table**\n\n- From the canvas, open the **Create workflow** dropdown and select **Create Data table**.\n- Or, go to the **Overview** panel on the left-side navigation bar and open the **Data tables** tab.\n\n**Use a data table in your workflow**\n\n- Add the **Data table node** to your workflow to get, update, insert, upsert, or delete rows.\n\n**Adjust the storage limit** (self-hosted only)\n\n- Change the default 50 MB limit with the environment variable: `N8N_DATA_TABLES_MAX_SIZE_BYTES`. [See configuration docs](https://docs.n8n.io/hosting/configuration/configuration-methods/).\n\n🧠**Keep in mind**\n\n- Data tables don’t currently support foreign keys or default values.\n- For now, all data tables are accessible to everyone in a project. More granular permissions and sharing options are planned.\n\nLearn more about [**data tables**](../../data/data-tables/) and the [**Data table node**](../../integrations/builtin/core-nodes/n8n-nodes-base.datatable/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.3...n8n@1.112.4) for this version.\\\n**Release date:** 2025-09-23\n\nThis release contains an editor improvement.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.113.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.0...n8n@1.113.0) for this version.\\\n**Release date:** 2025-09-22\n\nThis release contains core updates, editor improvements, a new node, node updates, and bug fixes.\n\n### SSO improvements\n\nWe’ve made updates to strengthen Single Sign-On (SSO) reliability and security, especially for enterprise and multi-instance setups.\n\n- OIDC and SAML sync in multi-main setups \\[version: 1.113.0\\]: In multi-main deployments, updates to SSO settings are now synchronized across all instances, ensuring consistent login behavior everywhere.\n- Enhanced OIDC integration \\[version 1.111.0\\]: n8n now supports OIDC providers that enforce state and nonce parameters. These are validated during login, providing smoother and more secure Single Sign-On.\n\n### Filter insights by project\n\nWe've added project filtering to insights, enabling more granular reporting and visibility into individual project performance.\n\nFilter insights\n\n### Contributors\n\n[ongdisheng](https://github.com/ongdisheng)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.2...n8n@1.112.3) for this version.\\\n**Release date:** 2025-09-19\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.111.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.111.0...n8n@1.111.1) for this version.\\\n**Release date:** 2025-09-19\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.110.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.110.1...n8n@1.110.2) for this version.\\\n**Release date:** 2025-09-19\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.1...n8n@1.112.2) for this version.\\\n**Release date:** 2025-09-18\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.112.0...n8n@1.112.1) for this version.\\\n**Release date:** 2025-09-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.112.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.111.0...n8n@1.112.0) for this version.\\\n**Release date:** 2025-09-15\n\nThis release contains API improvements, core updates, editor improvements, node updates, and bug fixes.\n\n### Additional API Endpoints versions\n\nWe’ve made several updates to the Executions API:\n\n- Execution details: `GET /executions` now includes *status* and *workflow_name* in the response.\n- Retry execution endpoint: Added new public API endpoints to retry failed executions.\n- Additional filters: You can now filter executions by running or canceled status.\n\n### Enhancements to workflow diff\n\nWe added a several updates on workflows diffs as well:\n\n- Better view in Code nodes and Stickies: Workflow diffs now highlight changes per line instead of per block, making edits easier to review and understand.\n- Enable/Disable sync: You can now enable or disable sync in the viewport, letting you compare a workflow change in one view without affecting the other.\n\nWorkflow diff\n\n### Contributors\n\n[GuraaseesSingh](https://github.com/GuraaseesSingh)\\\n[jabbson](https://github.com/jabbson)\\\n[ongdisheng](https://github.com/ongdisheng)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.111.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.110.0...n8n@1.111.0) for this version.\\\n**Release date:** 2025-09-08\n\nThis release contains core updates, API improvements, node updates, and bug fixes.\n\n### Contributors\n\n[abellion](https://github.com/abellion)\\\n[cesars-gh](https://github.com/cesars-gh)\\\n[durran](https://github.com/durran)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.110.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.110.0...n8n@1.110.1) for this version.\\\n**Release date:** 2025-09-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.109.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.109.1...n8n@1.109.2) for this version.\\\n**Release date:** 2025-09-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.110.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.109.0...n8n@1.110.0) for this version.\\\n**Release date:** 2025-09-01\n\nThis release contains core updates, editor improvements, node updates, performance improvements, and bug fixes.\n\n### Contributors\n\n[heyxmirko](https://github.com/heyxmirko)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.109.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.109.0...n8n@1.109.1) for this version.\\\n**Release date:** 2025-08-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.108.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.108.1...n8n@1.108.2) for this version.\\\n**Release date:** 2025-08-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.109.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.108.0...n8n@1.109.0) for this version.\\\n**Release date:** 2025-08-25\n\nThis release contains core updates, editor improvements, node updates, performance improvements, and bug fixes.\n\n### Contributors\n\n[naXa777](https://github.com/naXa777)\\\n[prettycode2022](https://github.com/prettycode2022)\\\n[oppai](https://github.com/oppai)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.3...n8n@1.107.4) for this version.\\\n**Release date:** 2025-08-20\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.108.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.108.0...n8n@1.108.1) for this version.\\\n**Release date:** 2025-08-20\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.2...n8n@1.107.3) for this version.\\\n**Release date:** 2025-08-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.108.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.0...n8n@1.108.0) for this version.\\\n**Release date:** 2025-08-18\n\nThis release contains a new CLI tool, editor improvements, node updates, performance improvements, and bug fixes.\n\n### Workflow Diff\n\nFor teams working across different environments, deployments often involve multiple people making changes at different times. Without a clear view of those changes, it’s easy to miss something important.\n\n[Workflow Diff](../../source-control-environments/using/compare-changes/) gives you an easy and visual way to review workflow changes before you deploy them between environments.\n\nWith it, you can:\n\n- Quickly see what’s been added, changed, or deleted, with clear colour highlights.\n- Easily see important settings changes on a workflow.\n- Check changes inside each node, and spot connector updates, with a side-by-side view of its settings.\n- Get a quick count of all changes to understand the size of a deployment.\n\nWorkflow Diff\n\nWorkflow Diff eases the review and approval of changes before deployment, enabling teams to collaborate on workflows without breaking existing automations or disrupting production. It’s one step further in integrating DevOps best practices in n8n.\n\nNow available for Enterprise customers using Environments.\n\n### Contributors\n\n[ManuLasker](https://github.com/ManuLasker)\\\n[EternalDeiwos](https://github.com/EternalDeiwos)\\\n[jreyesr](https://github.com/jreyesr)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.1...n8n@1.107.2) for this version.\\\n**Release date:** 2025-08-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.107.0...n8n@1.107.1) for this version.\\\n**Release date:** 2025-08-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.106.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.106.2...n8n@1.106.3) for this version.\\\n**Release date:** 2025-08-11\n\nThis release contains a backported update.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.107.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.106.0...n8n@1.107.0) for this version.\\\n**Release date:** 2025-08-11\n\nThis release contains bug fixes.\n\n### Contributors\n\n[Amsal1](https://github.com/Amsal1)\\\n[andrewzolotukhin](https://github.com/andrewzolotukhin)\\\n[DMA902](https://github.com/DMA902)\\\n[fkowal](https://github.com/fkowal)\\\n[Gulianrdgd](https://github.com/Gulianrdgd)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.106.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.106.1...n8n@1.106.2) for this version.\\\n**Release date:** 2025-08-08\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.106.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.106.0...n8n@1.106.1) for this version.\\\n**Release date:** 2025-08-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.3...n8n@1.105.4) for this version.\\\n**Release date:** 2025-08-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.2...n8n@1.105.3) for this version.\\\n**Release date:** 2025-08-05\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.106.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.0...n8n@1.106.0) for this version.\\\n**Release date:** 2025-08-04\n\nThis release contains performance improvements, core updates, editor improvements, node updates, a new node, and bug fixes.\n\n### **No more limit of active workflows and new self-hosted Business Plan**\n\nWe have rolled out a new pricing model to make it easier for builders of all sizes to adopt and scale automation with n8n.\n\n***What’s new***\n\n**No more limit of active workflows.**\n\nAll n8n plans, from Starter to Enterprise, now include unlimited users, workflows, and steps. Our pricing is based on the volume of executions. Meaning you can build and test as many workflows as you want, including complex, data-heavy, or long-running automations, without worrying about quotas.\n\n**New self-hosted Business Plan for growing teams**\n\nDesigned for SMBs and mid-sized companies, the Business Plan includes features such as:\n\n- 6 shared projects\n- SSO, SAML and LDAP\n- Different environments\n- Global variables\n- Version control using Git\n- 30 days of Insights\n\nPlease note that this plan only includes support from our community forum. For dedicated support we recommend upgrading to our Enterprise plan.\n\n**Enterprise pricing now scales with executions**\n\nEnterprise plans no longer use workflow-based pricing, and is now also based on the volume of executions.\n\n***What you need to do***\n\nTo ensure these changes apply to your account, update your n8n instance to the latest version.\n\n[Read the blog](https://blog.n8n.io/build-without-limits-everything-you-need-to-know-about-n8ns-new-pricing/) for full details.\n\n### Contributors\n\n[baruchiro](https://github.com/baruchiro)\\\n[killthekitten](https://github.com/killthekitten)\\\n[baileympearson](https://github.com/baileympearson)\\\n[Yingrjimsch](https://github.com/Yingrjimsch)\\\n[joshualipman123](https://github.com/joshualipman123)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.1...n8n@1.105.2) for this version.\\\n**Release date:** 2025-08-01\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.105.0...n8n@1.105.1) for this version.\\\n**Release date:** 2025-08-01\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.104.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.104.1...n8n@1.104.2) for this version.\\\n**Release date:** 2025-07-31\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.105.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.104.0...n8n@1.105.0) for this version.\\\n**Release date:** 2025-07-28\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### **Respond to Chat node**\n\nWith the [\\*\\*Respond to Chat](../../integrations/builtin/core-nodes/n8n-nodes-langchain.chat/) node\\*\\*, you can now access Human-in-the-Loop functionality natively in n8n Chat.\n\nEnable conversational experiences where you can ask for clarification, request approval before taking further action, and get back intermediate results — all within a single workflow execution.\n\nThis unlocks multi-turn interactions that feel more natural and reduce the number of executions required. It is ideal for building interactive AI use cases like conversational forms, branched workflows based on user replies, and step-by-step approvals.\n\n🛠️ **How to:**\n\n- Add a **Chat Trigger** node and select **Using Respond Nodes** for the **Response mode**\n- Place the **Respond to Chat** node anywhere in your workflow to send a message into the Chat and optionally wait for the user to input a response before continuing execution of the workflow steps.\n\n[](/_video/release-notes/Respond-to-chat.webm)\n\n### Contributors\n\n[dana-gill](https://github.com/dana-gill)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.104.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.104.0...n8n@1.104.1) for this version.\\\n**Release date:** 2025-07-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.103.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.103.1...n8n@1.103.2) for this version.\\\n**Release date:** 2025-07-22\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.104.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.103.0...n8n@1.104.0) for this version.\\\n**Release date:** 2025-07-21\n\n\\=======\n\nThis release contains core updates, editor improvements, a new node, node updates, and bug fixes.\n\n### Contributors\n\n[nunulk](https://github.com/nunulk)\\\n[iaptsiauri](https://github.com/iaptsiauri)\\\n[KGuillaume-chaps](https://github.com/KGuillaume-chaps)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.101.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.101.2...n8n@1.101.3) for this version.\\\n**Release date:** 2025-07-18\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.3...n8n@1.102.4) for this version.\\\n**Release date:** 2025-07-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.103.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.103.0...n8n@1.103.1) for this version.\\\n**Release date:** 2025-07-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.2...n8n@1.102.3) for this version.\\\n**Release date:** 2025-07-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.103.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.0...n8n@1.103.0) for this version.\\\n**Release date:** 2025-07-14\n\nThis release contains core updates, editor improvements, new nodes, node improvements, and bug fixes.\n\n### **Chat streaming**\n\nNo more waiting for full responses to load when using the n8n chat interface. **Streaming** now delivers AI-generated text replies word by word so users can read messages as they’re being generated. It feels faster, smoother, and more like what people expect from chat experiences.\n\nStreaming is available in public chat views (hosted or embedded) and can be used in custom apps via webhook.\n\n🛠️ How-to\n\nConfigure streaming in the Node Details View of these nodes:\n\n- Chat Trigger node: Options>Add Field>Response Mode>Streaming\n- Webhook node: Respond>Streaming\n- AI Agent node: Add option> Enable streaming\n\n[](/_video/release-notes/streaming.webm)\n\n### Improved instance user list with more visibility\n\nThe instance user list has been updated with a new table layout and additional details to help admins manage access more easily.\n\nYou can now:\n\n- See total users and filter by name or email\n- View which projects each user has access to\n- Whether a user has enabled 2FA and sort based on that\n- See the last active date for each user\n\nThis makes it easier to audit user activity, identify inactive accounts, and understand how access is distributed across your instance.\n\n### Webhook HTML responses\n\nStarting with this release, if your workflow sends an HTML response to a webhook, n8n automatically wraps the content in an `<iframe>`. This is a security mechanism to protect the instance users.\n\nThis has the following implications:\n\n- HTML renders in a sandboxed iframe instead of directly in the parent document.\n- JavaScript code that attempts to access the top-level window or local storage will fail.\n- Authentication headers aren't available in the sandboxed iframe (for example, basic auth). You need to use an alternative approach, like embedding a short-lived access token within the HTML.\n- Relative URLs (for example, `<form action=\"/\">`) won't work. Use absolute URLs instead.\n\n### Built-in Metrics for AI Evaluations\n\nUsing evaluations is a best practice for any AI solution, and a must if reliability and predictability are business-critical. With this release, we’ve made it easier to set up evaluations in n8n by introducing a set of built-in metrics. These metrics can review AI responses and assign scores based on factors like correctness, helpfulness, and more.\n\nYou can run regular evaluations and review scores over time as a way to monitor your AI workflow's performance. You can also compare results across different models to help guide model selection, or run evaluations before and after a prompt change to support data-driven, iterative building.\n\nAs with all evaluations in n8n, you’ll need a dataset that includes the inputs you want to test. For some evaluations, the dataset must also include expected outputs (ground truth) to compare against. The evaluation workflow runs each input through the portion you're testing to generate a response. The built-in metric scores each response based on the aspect you're measuring, allowing you to compare results before and after changes or track trends over time in the Evaluations tab.\n\nYou can still define your own custom metrics, but for common use cases, the built-in options make it much faster to implement.\n\n🛠️ **How to:**\n\n1. Set up your evaluation as described [here](../../advanced-ai/evaluations/metric-based-evaluations/#how-it-works), using an **Evaluation** node as the trigger and another with the **Set Metrics** operation.\n1. In the **Set Metrics** node, choose a metric from the dropdown list.\n1. Define any additional parameters required for your selected metric. In most cases, this includes mapping the dataset columns to the appropriate fields.\n\n📏 **Available built-in metrics:**\n\n- **Correctness (AI-based):** Compares AI workflow-generated responses to expected answers. Another LLM acts as a judge, scoring the responses based on guidance you provide in the prompt.\n- **Helpfulness (AI-based):** Evaluates how helpful a response is in relation to a user query, using an LLM and prompt-defined scoring criteria.\n- **String Similarity:** Measures how closely the response matches the expected output by comparing strings. Useful for command generation or when output needs to follow a specific structure.\n- **Categorization:** Checks whether a response matches an expected label, such as assigning items to the correct category.\n- **Tools Used:** Verifies whether the AI agent called the tools you specified in your dataset. To enable this, make sure **Return Intermediate Steps** is turned on in your agent so the evaluation can access the tools it actually called.\n\n🧠 Keep in mind\n\n- Registered Community Edition enables analysis of one evaluation in the **Evaluations** tab which allows easy comparison of evaluation runs over time. Pro and Enterprise plans allow unlimited evaluations in the **Evaluations** tab.\n\nBuilt-in Metrics\n\n[Learn more](../../advanced-ai/evaluations/overview/) about setting up and customizing evaluations.\n\n### AI Agent Tool node\n\nWith the **AI Agent Tool** node we are introducing a simplified pattern for multi-agent orchestration that can be run in a single execution and stay entirely on one canvas. You can now connect multiple **AI Agent Tool** nodes to a primary **AI Agent** node, allowing it to supervise and delegate work across other specialized agents.\n\nThis setup is especially useful for building complex systems that function like real-world teams, where a lead agent assigns parts of a task to specialists. You can even add multiple layers of agents directing other agents, just like you would have in a real multi-tiered organizational structure. It also helps with prompt management by letting you split long, complex instructions into smaller, focused tasks across multiple agents. While similar orchestration was already possible using sub-workflows, AI Agent Tool nodes are a good choice when you want the interaction to happen within a single execution or prefer to manage and debug everything from a single canvas.\n\n🛠️ **How to:**\n\n- Add an **AI Agent** node to your workflow and click **+** to create a Tools connection.\n- Search for and select the **AI Agent Tool** node from the Nodes Panel.\n- Name the node clearly so the primary agent can reference it, then add a short description and prompt.\n- Connect any LLMs, memory, and tools the agent needs to perform its role.\n- Instruct the primary **AI Agent** on when to use the **AI Agent Tool** and to pass along relevant context in its prompt.\n\n🧠 **Keep in mind:**\n\n- The orchestrating agent does not pass full execution context by default. Any necessary context must be included in the prompt.\n\n**AI Agent Tool** nodes makes it easier to build layered, agent-to-agent workflows without relying on sub-workflows, helping you move faster when building and debugging multi-agent systems.\n\nAI Agent Tool node\n\n### Contributors\n\n[ksg97031](https://github.com/ksg97031)\\\n[israelshenkar](https://github.com/israelshenkar)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.1...n8n@1.102.2) for this version.\\\n**Release date:** 2025-07-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.101.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.101.1...n8n@1.101.2) for this version.\\\n**Release date:** 2025-07-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.102.0...n8n@1.102.1) for this version.\\\n**Release date:** 2025-07-09\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.102.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.101.0...n8n@1.102.0) for this version.\\\n**Release date:** 2025-07-07\n\nThis release contains core updates, editor improvements, new nodes, node updates, and bug fixes.\n\n### Enforce 2FA across your instance\n\nEnterprise Instance owners can now enforce two-factor authentication (2FA) for all users in their instance.\n\nOnce enabled, any user who hasn’t set up 2FA will be redirected to complete the setup before they can continue using n8n. This helps organizations meet internal security policies and ensures stronger protection across the workspace.\n\nThis feature is available only on the Enterprise plan.\n\n### Contributors\n\n[marty-sullivan](https://github.com/marty-sullivan)\\\n[cesars-gh](https://github.com/cesars-gh)\\\n[dudanogueira](https://github.com/dudanogueira)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.101.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.101.0...n8n@1.101.1) for this version.\\\n**Release date:** 2025-07-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.101.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.100.0...n8n@1.101.0) for this version.\\\n**Release date:** 2025-06-30\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### Contributors\n\n[luka-mimi](https://github.com/luka-mimi)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.100.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.100.0...n8n@1.100.1) for this version.\\\n**Release date:** 2025-06-25\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.100.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.99.0...n8n@1.100.0) for this version.\\\n**Release date:** 2025-06-23\n\nThis release contains core updates, editor improvements, a new node, node updates, and bug fixes.\n\n### Model Selector node\n\nThe [Model Selector node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.modelselector/) gives you more control when working with multiple LLMs in your workflows.\n\nUse it to determine which connected model should handle a given input, based on conditions like expressions or global variables. This makes it easier to implement model routing strategies, such as switching models based on performance, task type, cost, or availability.\n\n🛠️ **How to:** Connect multiple model nodes to the Model Selector node, then configure routing conditions in the node’s settings.\n\n🧠 **Keep in mind:**\n\n- Rules are evaluated in order. The first matching rule determines which model is used even if others would also match.\n- As a sub-node, expressions behave differently here: they always resolves to the first item rather than resolving for each item in turn.\n\nThe Model Selector node is especially useful in evaluation or production scenarios where routing logic between models needs to adapt based on performance, cost, availability, or dataset-specific needs.\n\nModel Selector node\n\n### Support for OIDC (OpenID Connect) authentication\n\nYou can now use OIDC (OpenID Connect) as an authentication method for Single Sign-On (SSO).\n\nThis gives enterprise teams more flexibility to integrate n8n with their existing identity providers using a widely adopted and easy-to-manage standard. OIDC is now available alongside SAML, giving Enterprises the choice to select what best fits their internal needs.\n\n### Project admins can now commit to Git within environments\n\nProject admins now have the ability to commit workflow and credential changes directly to Git through the environments feature. This update streamlines the workflow deployment process by giving project-level admins direct control over committing their changes. It also ensures that the those who know their workflows best can review and commit updates themselves, without needing to involve instance-level admins.\n\n[Learn more about source control environments](../../source-control-environments/)\n\n### Contributors\n\n[aliou](https://github.com/aliou)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.99.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.99.0...n8n@1.99.1) for this version.\\\n**Release date:** 2025-06-19\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.98.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.98.1...n8n@1.98.2) for this version.\\\n**Release date:** 2025-06-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.99.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.98.0...n8n@1.99.0) for this version.\\\n**Release date:** 2025-06-16\n\nThis release contains performance improvements, core updates, editor changes, node updates, and bug fixes.\n\n### Automatically name nodes\n\nDefault node names now update automatically based on the resource and operation selected, so you’ll always know what a node does at a glance.\n\nThis adds clarity to your canvas and saves time renaming nodes manually.\n\nDon’t worry, automatic naming won’t break references. And, and if you’ve renamed a node yourself, we’ll leave it just the way you wrote it.\n\n[](/_video/release-notes/automatic_node_naming.mp4)\n\n### Support for RAG extended with built-in templates\n\nRetrieval-Augmented Generation (RAG) can improve AI responses by providing language models access to data sources with up-to-date, domain-specific, or proprietary knowledge. RAG workflows typically rely on vector stores to manage and search this data efficiently.\n\nTo get the benefits of using vector stores, such as returning results based on semantic meaning rather than just keyword matches, you need a way to upload your data to the vector store and a way to query it.\n\nIn n8n, uploading and querying vectors stores happens in two workflows. Now, you have an example to get your started and make implementation easier with the **RAG starter template**.\n\n- The **Load Data** workflow shows how to add data with the appropriate embedding model, split it into chunks with the [Default Data Loader](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/), and add metadata as desired.\n- The **Retriever** workflow for querying data, shows how agents and vector stores work together to help you define highly relevant results and save tokens using the **Question and Answer** tool.\n\nEnable semantic search and the retrieval of unstructured data for increased quality and relevance of AI responses.\n\n🛠️ **How to:**\n\n- Search for **RAG starter template** in the search bar of the Nodes panel to insert it into your workflow.\n\nLearn more about implementing RAG in n8n [here](../../advanced-ai/rag-in-n8n/).\n\nRAG starter template\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.98.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.98.0...n8n@1.98.1) for this version.\\\n**Release date:** 2025-06-12\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.98.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.97.0...n8n@1.98.0) for this version.\\\n**Release date:** 2025-06-11\n\nThis release contains performance improvements, core updates, editor changes, node updates, a new node, and bug fixes.\n\n### Contributors\n\n[luka-mimi](https://github.com/luka-mimi)\\\n[Alexandero89](https://github.com/Alexandero89)\\\n[khoazero123](https://github.com/khoazero123)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.97.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.97.0...n8n@1.97.1) for this version.\\\n**Release date:** 2025-06-04\n\nThis release contains backports.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.95.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.95.2...n8n@1.95.3) for this version.\\\n**Release date:** 2025-06-03\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.97.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.96.0...n8n@1.97.0) for this version.\\\n**Release date:** 2025-06-02\n\nThis release contains new features, performance improvements and bug fixes.\n\n### Convert to sub-workflow\n\nLarge, monolithic workflows can slow things down. They’re harder to maintain, tougher to debug, and more difficult to scale. With sub-workflows, you can take a more modular approach, breaking up big workflows into smaller, manageable parts that are easier to reuse, test, understand, and explain.\n\nUntil now, creating sub-workflows required copying and pasting nodes manually, setting up a new workflow from scratch, and reconnecting everything by hand. **Convert to sub-workflow** allows you to simplify this process into a single action, so you can spend more time building and less time restructuring.\n\n[](/_video/release-notes/convert_to_sub-workflow.mp4)\n\n**How it works**\n\n1. Highlight the nodes you want to convert to a sub-workflow. These must:\n - Be fully connected, meaning no missing steps in between them\n - Start from a single starting node\n - End with a single node\n1. Right-click to open the context menu and select **Convert to sub-workflow**\n - Or use the shortcut: `Alt + X`\n1. n8n will:\n - Open a new tab containing the selected nodes\n - Preserve all node parameters as-is\n - Replace the selected nodes in the original workflow with a **Call My Sub-workflow** node\n\n*Note*: You will need to manually adjust the field types in the Start and Return nodes in the new sub-workflow.\n\nThis makes it easier to keep workflows modular, performant, and easier to maintain.\n\nLearn more about [sub-workflows](../../flow-logic/subworkflows/).\n\nThis release contains performance improvements and bug fixes.\n\n### Contributors\n\n[maatthc](https://github.com/maatthc)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.96.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.95.0...n8n@1.96.0) for this version.\\\n**Release date:** 2025-06-02\n\nBuild failure\n\nThis release failed to build. Please use `1.97.0` instead.\n\nThis release contains API updates, core changes, editor improvements, node updates, and bug fixes.\n\n### API support for assigning users to projects\n\nYou can now use the API to add and update users within projects. This includes:\n\n- Assigning existing or pending users to a project with a specific role\n- Updating a user’s role within a project\n- Removing users from one or more projects\n\nThis update now allows you to use the API to add users to both the instance and specific projects, removing the need to manually assign them in the UI.\n\n### Add pending users to project member assignment\n\nYou can now add **pending users,** those who have been invited but haven't completed sign-up, to projects as members.\n\nThis change lets you configure a user's project access upfront, without waiting for them to finish setting up their account. It eliminates the back-and-forth of managing access post-sign-up, ensuring users have the right project roles immediately upon joining.\n\n### Contributors\n\n[matthabermehl](https://github.com/matthabermehl)\\\n[Stamsy](https://github.com/Stamsy)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.95.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.95.1...n8n@1.95.2) for this version.\\\n**Release date:** 2025-05-29\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.95.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.95.0...n8n@1.95.1) for this version.\\\n**Release date:** 2025-05-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.94.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.94.0...n8n@1.94.1) for this version.\\\n**Release date:** 2025-05-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.95.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.94.0...n8n@1.95.0) for this version.\\\n**Release date:** 2025-05-26\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### Evaluations for AI workflows\n\nWe’ve added a feature to help you iterate, test, and compare changes to your AI automations before pushing them to production so you can achieve more predictability and make better decisions.\n\nWhen you're building with AI, a small prompt tweak or model swap might improve results with some inputs, while quietly degrading performance with others. But without a way to evaluate performance across many inputs, you’re left guessing whether your AI is actually getting better when you make a change.\n\nBy implementing **Evaluations for AI workflows** in n8n, you can assess how your AI performs across a range of inputs by adding a dedicated path in your workflow for running test cases and applying custom metrics to track results. This helps you build viable proof-of-concepts quickly, iterate more effectively, catch regressions early, and make more confident decisions when your AI is in production.\n\n#### Evaluation node and tab\n\nThe **Evaluation node** includes several operations that, when used together, enable end-to-end AI evaluation.\n\nEvaluation node\n\nUse this node to:\n\n- Run your AI logic against a wide range of test cases in the same execution\n- Capture the outputs of those test cases\n- Score the results using your own metrics or LLM-as-judge logic\n- Isolate a testing path to only include the nodes and logic you want to evaluate\n\nThe **Evaluations tab** enables you to review test results in the n8n UI, perfect for comparing runs, spotting regressions, and viewing performance over time.\n\n#### 🛠 How evaluations work\n\nThe evaluation path runs alongside your normal execution logic and only activates when you want—making it ideal for testing and iteration.\n\nGet started by selecting an AI workflow you want to evaluate that includes one or more LLM or Agent nodes.\n\n1. Add an **Evaluation** node with the **On new Evaluation event** operation. This node will act as an additional trigger you’ll run only when testing. Configure it to read your dataset from Google Sheets, with each row representing a test input.\n\n > 💡 Better datasets mean better evaluations. Craft your dataset from a variety of test cases, including edge cases and typical inputs, to get meaningful feedback on how your AI performs. Learn more and access sample datasets [here](../../advanced-ai/evaluations/light-evaluations/#1-create-a-dataset).\n\n1. Add a second **Evaluation** node using the **Set Outputs** operation after the part of the workflow you're testing—typically after an LLM or Agent node. This captures the response and writes it back to your dataset in Google Sheets.\n\n1. To evaluate output quality, add a third **Evaluation** node with the **Set Metrics** operation at a point after you’ve generated the outputs. You can develop workflow logic, custom calculations, or add an LLM-as-Judge to score the outputs. Map these metrics to your dataset in the node’s parameters.\n\n > 💡 Well-defined metrics = smarter decisions. Scoring your outputs based on similarity, correctness, or categorization can help you track whether changes are actually improving performance. Learn more and get links to example templates [here](../../advanced-ai/evaluations/metric-based-evaluations/#2-add-metrics-to-workflow).\n\nEvaluation workflow\n\nWhen the Evaluation trigger node is executed, it runs each input in our dataset through your AI logic. This continues until all test cases are processed, a limit is reached, or you manually stop the execution. Once your evaluation path is set up, you can update your prompt, model, or workflow logic—and re-run the Evaluation trigger node to compare results. If you’ve added metrics, they’ll appear in the Evaluations tab.\n\nIn some instances, you may want to isolate your testing path to make iteration faster or to avoid executing downstream logic. In this case, you can add an Evaluation node with the `Check If Evaluating` operation to ensure only the expected nodes run when performing evaluations.\n\n#### Things to keep in mind\n\nEvaluations for AI Workflows are designed to fit into your development flow, with more enhancements on the way. For now, here are a few things to note:\n\n- Test datasets are currently managed through Google Sheets. You’ll need a Google Sheets credential to run evaluations.\n- Each workflow supports one evaluation at a time. If you’d like to test multiple segments, consider splitting them into sub-workflows for more flexibility.\n- Community Edition supports one single evaluation. Pro and Enterprise plans allow unlimited evaluations.\n- AI Evaluations are not enabled for instances in scaling mode at this time.\n\nYou can find details, tips, and common troubleshooting info [here](../../advanced-ai/evaluations/tips-and-common-issues/).\n\n👉 Learn more about the AI evaluation strategies and practical implementation techniques. [Watch now](https://www.youtube.com/live/QkciQpotQBQ?feature=shared).\n\n### Contributors\n\n[Phiph](https://github.com/Phiph)\\\n[cesars-gh](https://github.com/cesars-gh)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.94.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.93.0...n8n@1.94.0) for this version.\\\n**Release date:** 2025-05-19\n\nThis release contains editor improvements, an API update, node updates, new nodes, and bug fixes.\n\n### Verified community nodes on Cloud\n\nWe’ve expanded the n8n ecosystem and unlocked a new level of flexibility for all users including those on n8n Cloud! Now you can access a select set of community nodes and partner integrations without leaving the canvas. This means you install and automate with a wider range of integrations without leaving your workspace. The power of the community is now built-in.\n\nThis update focuses on three major improvements:\n\n- **Cloud availability**: Community nodes are no longer just for self-hosted users. A select set of nodes is now available on n8n Cloud.\n- **Built-in discovery**: You can find and explore these nodes right from the Nodes panel without leaving the editor or searching on npm.\n- **Trust and verification**: Nodes that appear in the editor have been manually vetted for quality and security. These verified nodes are marked with a checkmark.\n\nWe’re starting with a selection of around 25 nodes, including some of the most-used community-built packages and partner-supported integrations. For this phase, we focused on nodes that don’t include external package dependencies - helping streamline the review process and ensure a smooth rollout.\n\nThis is just the start. We plan to expand the library gradually, bringing even more verified nodes into the editor along with the powerful and creative use cases they unlock. In time, our criteria will evolve, opening the door to a wider range of contributions while keeping quality and security in focus.\n\nLearn more about this update and find out which nodes are already installable from the editor in our [blog](https://blog.n8n.io/community-nodes-available-on-n8n-cloud/) post.\n\n💻 **Use a verified node**\n\nMake sure you're on **n8n version 1.94.0** or later and the instance Owner has enabled verified community nodes. On Cloud, this can be done from the Admin Panel. For self-hosted instances, please refer to [documentation](../../hosting/configuration/environment-variables/nodes/). In both cases, verified nodes are enabled by default.\n\n- Open the **Nodes panel** from the editor\n- Search for the Node. Verified nodes are indicated by a shield 🛡️\n- Select the node and click **Install**\n\n[](/_video/release-notes/Community-nodes-node-panel.mp4)\n\nOnce an Owner installs a node, everyone on the instance can start using it—just drag, drop, and connect like any other node in your workflow.\n\n🛠️ **Build a node and get it verified**\n\nWant your node to be verified and discoverable from the editor? Here’s how to get involved:\n\n1. Review the [community node verification guidelines](../../integrations/creating-nodes/build/reference/verification-guidelines/).\n1. If you’re building something new, follow the recommendations for [creating nodes](../../integrations/creating-nodes/overview/).\n1. Check your design against the [UX guidelines](../../integrations/creating-nodes/build/reference/ux-guidelines/).\n1. [Submit your node](../../integrations/creating-nodes/deploy/submit-community-nodes/) to npm.\n1. Request verification by filling out [this form](https://internal.users.n8n.cloud/form/f0ff9304-f34a-420e-99da-6103a2f8ac5b).\n\n**Already built a node? Raise your hand!**\n\nIf you’ve already published a community node and want it considered for verification, make sure it meets the requirements noted above, then let us know by submitting the interest [form](https://internal.users.n8n.cloud/form/f0ff9304-f34a-420e-99da-6103a2f8ac5b). We’re actively curating the next batch and would love to include your work.\n\n### Extended logs view\n\nWhen workflows get complex, debugging can get... clicky. That’s where an extended **Logs View** comes in. Now you can get a clearer path to trace executions, troubleshoot issues, and understand the behavior of a complete workflow — without bouncing between node detail views.\n\nThis update brings a unified, always-accessible panel to the bottom of the canvas, showing you each step of the execution as it happens. Whether you're working with loops, sub-workflows, or AI agents, you’ll see a structured view of everything that ran, in the order it ran—with input, output, and status info right where you need it.\n\nYou can jump into node details when you want to dig deeper, or follow a single item through every step it touched. Real-time highlighting shows you which nodes are currently running or have failed, and you’ll see total execution time for any workflow—plus token usage for AI workflows to help monitor performance. And if you're debugging across multiple screens? Just pop the logs out and drag them wherever you’d like.\n\n⚙️**What it does**\n\n- Adds a **Logs view** to the bottom of the canvas that can be opened or collapsed. (Chat also appears here if your workflow uses it).\n- Displays a **hierarchical list of nodes** in the order they were executed—including expanded views of sub-workflows.\n- Allows you to **click a node in hierarchy** to preview inputs and outputs directly, or jump into the full Node Details view with a link.\n- Provides ability to **toggle** input and output data on and off.\n- Highlights each node **live as it runs**, showing when it starts, completes, or fails.\n- Includes **execution history** view to explore past execution data in a similar way.\n- Shows **roll-up stats** like total execution time and total AI tokens used (for AI-enabled workflows).\n- Includes a **“pop out”** button to open the logs as a floating window—perfect for dragging to another screen while debugging.\n\n🛠️**How to**\n\nTo access the expanded logs view, click on the Logs bar at the bottom of the canvas. The view is also opens up when you open the chat window on the bottom of the page.\n\n### Contributors\n\n[Stamsy](https://github.com/Stamsy)\\\n[feelgood-interface](https://github.com/feelgood-interface)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.93.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.92.0...n8n@1.93.0) for this version.\\\n**Release date:** 2025-05-12\n\nThis release contains core updates, editor improvements, new nodes, node updates, and bug fixes.\n\n### Faster ways to open sub-workflows\n\nWe’ve added several new ways to navigate your multi-workflow automations faster.\n\nFrom any workflow with a sub-workflow node:\n\n🖱️ Right-click on a sub-workflow node and select `Open sub-workflow` from the context menu\n\n⌨️ Keyboard shortcuts\n\n- **Windows:** `CTRL + SHIFT + O` or `CTRL + Double Click`\n- **Mac:** `CMD + SHIFT + O` or `CMD + Double Click`\n\nThese options will bring your sub-workflow up in a new tab.\n\n### Archive workflows\n\nIf you’ve ever accidentally removed a workflow, you’ll appreciate the new archiving feature. Instead of permanently deleting workflows with the Remove action, workflows are now archived by default. This allows you to recover them if needed.\n\n**How to:**\n\n- **Archive a workflow** - Select **Archive** from the Editor UI menu. It has replaced the **Remove** action.\n- **Find archived workflows** - Archived workflows are hidden by default. To find your archived workflows, select the option for **Show archived workflows** in the workflow filter menu.\n- **Permanently delete a workflow** - Once a workflow is archived, you can **Delete** it from the options menu.\n- **Recover a workflow** - Select **Unarchive** from the options menu.\n\n**Keep in mind:**\n\n- Workflows archival requires the same permissions as required previously for removal.\n- You cannot select archived workflows as sub-workflows to execute\n- Active workflows are deactivated when they are archived\n- Archived workflows can not be edited\n\n### Contributors\n\n[LeaDevelop](https://github.com/LeaDevelop)\\\n[ayhandoslu](https://github.com/ayhandoslu)\\\n[valentina98](https://github.com/valentina98)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.92.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.92.1...n8n@1.92.2) for this version.\\\n**Release date:** 2025-05-08\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.91.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.91.2...n8n@1.91.3) for this version.\\\n**Release date:** 2025-05-08\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.92.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.92.0...n8n@1.92.1) for this version.\\\n**Release date:** 2025-05-06\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.92.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.91.0...n8n@1.92.0) for this version.\\\n**Release date:** 2025-05-05\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### Partial Execution for AI Tools\n\nWe’ve made it easier to build and iterate on AI agents in n8n. You can now run and test specific tools without having to execute the entire agent workflow.\n\nPartial execution is especially useful when refining or troubleshooting parts of your agent logic. It allows you to test changes incrementally, without triggering full agent runs, reducing unnecessary AI calls, token usage, and downstream activity. This makes iteration faster, more cost-efficient, and more precise when working with complex or multi-step AI workflows.\n\nPartial execution for AI tools is available now for all tools - making it even easier to build, test, and fine-tune AI agents in n8n.\n\n[](/_video/release-notes/AI-agent-partial-execution.mp4)\n\n**How to:**\n\nTo use this feature you can either:\n\n- Click the **Play** button on the tool you want to execute directly from the canvas view.\n- Open the tool’s **Node Details View** and select **\"Execute Step\"** to run it from there.\n\nIf you have previously run the workflow, the input and output will be prefilled with data from the last execution. A pop-up form will open where you can manually fill in the parameters before executing your test.\n\n### Extended logs view\n\nWhen workflows get complex, debugging can get... clicky. That’s where an extended **Logs View** comes in. Now you can get a clearer path to trace executions, troubleshoot issues, and understand the behavior of a complete workflow — without bouncing between node detail views.\n\nThis update brings a unified, always-accessible panel to the bottom of the canvas, showing you each step of the execution as it happens. Whether you're working with loops, sub-workflows, or AI agents, you’ll see a structured view of everything that ran, in the order it ran—with input, output, and status info right where you need it.\n\nYou can jump into node details when you want to dig deeper, or follow a single item through every step it touched. Real-time highlighting shows you which nodes are currently running or have failed, and you’ll see total execution time for any workflow—plus token usage for AI workflows to help monitor performance. And if you're debugging across multiple screens? Just pop the logs out and drag them wherever you’d like.\n\n⚙️**What it does**\n\n- Adds a **Logs view** to the bottom of the canvas that can be opened or collapsed. (Chat also appears here if your workflow uses it).\n- Displays a **hierarchical list of nodes** in the order they were executed—including expanded views of sub-workflows.\n- Allows you to **click a node in hierarchy** to preview inputs and outputs directly, or jump into the full Node Details view with a link.\n- Provides ability to **toggle** input and output data on and off.\n- Highlights each node **live as it runs**, showing when it starts, completes, or fails.\n- Includes **execution history** view to explore past execution data in a similar way.\n- Shows **roll-up stats** like total execution time and total AI tokens used (for AI-enabled workflows).\n- Includes a **“pop out”** button to open the logs as a floating window—perfect for dragging to another screen while debugging.\n\n🛠️**How to**\n\nTo access the expanded logs view, click on the Logs bar at the bottom of the canvas. The view is also opens up when you open the chat window on the bottom of the page.\n\n### Insights enhancements for Enterprise\n\nTwo weeks after the launch of [Insights](../../insights/), we’re releasing some enhancements designed for enterprise users.\n\n- **Expanded time ranges**. You can now filter insights over a variety of time periods, from the last 24 hours up to 1 year. Pro users are limited to 7 day and 14 day views.\n- **Hourly granularity**. Drill down into the last 24 hours of production executions with hourly granularity, making it easier to analyze workflows and quickly identify issues.\n\nThese updates provide deeper visibility into workflow history, helping you uncover trends over longer periods and detect problems sooner with more precise reporting.\n\nFilter insights\n\n### Contributors\n\n[Stamsy](https://github.com/Stamsy)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.91.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.91.1...n8n@1.91.2) for this version.\\\n**Release date:** 2025-05-05\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.90.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.90.2...n8n@1.90.3) for this version.\\\n**Release date:** 2025-05-05\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.91.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.91.0...n8n@1.91.1) for this version.\\\n**Release date:** 2025-05-01\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.91.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.90.0...n8n@1.91.0) for this version.\\\n**Release date:** 2025-04-28\n\nThis release contains core updates, editor improvements, node updates, and bug fixes.\n\n### Breadcrumb view from the canvas\n\nWe’ve added **breadcrumb navigation directly on the canvas**, so you can quickly navigate to any of a workflow’s parent folders right from the canvas.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.90.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.90.1...n8n@1.90.2) for this version.\\\n**Release date:** 2025-04-25\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.90.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.90.0...n8n@1.90.1) for this version.\\\n**Release date:** 2025-04-22\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.90.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.89.0...n8n@1.90.0) for this version.\\\n**Release date:** 2025-04-22\n\nThis release contains core updates, editor updates, node updates, performance improvements, and bug fixes.\n\n### Extended HTTP Request tool functionality\n\nWe’ve brought the full power of the HTTP Request node to the HTTP Request tool in AI workflows. That means your AI Agents now have access to all the advanced configuration options—like Pagination, Batching, Timeout, Redirects, Proxy support, and even cURL import.\n\n[](/_video/release-notes/http-request-tool.mp4)\n\nThis update also includes support for the `$fromAI` function to dynamically generate the right parameters based on the context of your prompt — making API calls smarter, faster, and more flexible than ever.\n\n**How to:**\n\n- Open your AI Agent node in the canvas.\n- Click the **‘+’ icon** to add a new tool connection.\n- In the **Tools panel**, select HTTP **Request Tool.**\n- Configure it just like you would a regular **HTTP Request node** — including advanced options\n\n👉 Learn more about configuring the [HTTP Request tool](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolhttprequest/).\n\n### Scoped API keys\n\nUsers on the Enterprise plan can now create API keys with specific scopes to control exactly what each key can access.\n\nScoped API keys\n\nPreviously, API keys had full read/write access across all endpoints. While sometimes necessary, this level of access can be excessive and too powerful for most use cases. Scoped API keys allow you to limit access to only the resources and actions a service or user actually needs.\n\n**What’s new**\n\nWhen creating a new API key, you can now:\n\n- Select whether the key has read, write, or both types of access.\n- Specify which resources the key can interact with.\n\nSupported scopes include:\n\n- Variables — list, create, delete\n- Security audit — generate reports\n- Projects — list, create, update, delete\n- Executions — list, read, delete\n- Credentials — list, create, update, delete, move\n- Workflows — list, create, update, delete, move, add/remove tags\n\nScoped API keys give you more control and security. You can limit access to only what’s needed, making it safer to work with third parties and easier to manage internal API usage.\n\n### Drag and Drop in Folders\n\nFolders just got friendlier. With this release, you can now **drag and drop workflows and folders** — making it even easier to keep things tidy.\n\nNeed to reorganize? Just select a workflow or folder and drag it into another folder or breadcrumb location. It’s a small change that makes a big difference when managing a growing collection of workflows.\n\n[](/_video/release-notes/Drag-and-drop-folders.mp4)\n\n📁 Folders are available to all [registered](../../hosting/community-edition-features/#registered-community-edition) users—jump in and get your workspace in order!\n\n### Contributors\n\n[Zordrak](https://github.com/Zordrak)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.89.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.89.1...n8n@1.89.2) for this version.\\\n**Release date:** 2025-04-16\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.89.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.89.0...n8n@1.89.1) for this version.\\\n**Release date:** 2025-04-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.89.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.88.0...n8n@1.89.0) for this version.\\\n**Release date:** 2025-04-14\n\nThis release contains API updates, core updates, editor updates, a new node, node updates, and bug fixes.\n\n### Insights\n\nWe're rolling out [Insights](../../insights/), a new dashboard to monitor how your workflows are performing over time. It's designed to give admins (and owners) better visibility of their most important workflow metrics and help troubleshoot potential issues and improvements.\n\nIn this first release, we’re introducing a summary banner, the insights dashboard, and time saved per execution.\n\n#### 1. Summary banner\n\nA new banner on the overview page that gives instance admins and owners a birds eye view of key metrics over the last 7 days.\n\nInsights summary banner\n\nAvailable metrics:\n\n- Total production executions\n- Total failed executions\n- Failure rate\n- Average runtime of all workflows\n- Estimated time saved\n\nThis overview is designed to help you stay on top of workflow activity at a glance. It is available for all plans and editions.\n\n#### 2. Insights dashboard\n\nOn Pro and Enterprise plans, a new dashboard offers a deeper view into workflow performance and activity.\n\nInsights dashboard\n\nThe dashboard includes:\n\n- Total production executions over time, including a comparison of successful and failed executions\n- Per-workflow breakdowns of key metrics\n- Comparisons with previous periods to help spot changes in usage or behavior\n- Runtime average and failure rate over time\n\n#### 3. Time saved per execution\n\nWithin workflow settings, you can now assign a “time saved per execution” value to any workflow. This makes it possible to track the impact of your workflows and make it easier to share this visually with other teams and stakeholders.\n\nThis is just the beginning for Insights: the next phase will introduce more advanced filtering and comparisons, custom date ranges, and additional monitoring capabilities.\n\n### Node updates\n\n- We added a credential check for the Salesforce node\n- We added SearXNG as a tool for AI agents\n\nYou can now search within subfolders, making it easier to find workflows across all folder levels. Just type in the search bar and go.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.88.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.87.0...n8n@1.88.0) for this version.\\\n**Release date:** 2025-04-10\n\nThis release contains new features, new nodes, performance improvements, and bug fixes.\n\n### Model Context Protocol (MCP) nodes\n\nMCP aims to standardise how LLMs like Claude, ChatGPT, or Cursor can interact with tools or integrate data for their agents. Many providers - both established or new - are adopting MCP as a standard way to build agentic systems. It is an easy way to either expose your own app as a server, making capabilities available to a model as tools, or as a client that can call on tools outside of your own system.\n\nWhile it’s still early in the development process, we want to give you access to our new MCP nodes. This will help us understand your requirements better and will also let us converge on a great general solution quicker.\n\nWe are adding two new nodes:\n\n- a MCP [Server Trigger](../../integrations/builtin/core-nodes/n8n-nodes-langchain.mcptrigger/) for any workflow\n- a MCP [Client Tool](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolmcp/) for the AI Agent\n\nThe MCP Server Trigger turns n8n into an MCP server, providing n8n tools to models running outside of n8n. You can run multiple MCP servers from your n8n instance. The MCP Client Tool connects LLMs - and other intelligent agents - to any MCP-enabled service through a single interface.\n\nMax from our DevRel team created an official walkthrough for you to get started:\n\n[Studio Update #04](https://youtu.be/45WPU7P-1QQ?feature=shared)\n\n### MCP Server Trigger\n\nThe MCP Server Trigger turns n8n into an MCP server, providing n8n tools to models running outside of n8n. The node acts as an entry point into n8n for MCP clients. It operates by exposing a URL that MCP clients can interact with to access n8n tools. This means your n8n workflows and integrations are now available to models run elsewhere. Pretty neat.\n\nMCP Server Trigger\n\n[Explore the MCP Server Trigger docs](../../integrations/builtin/core-nodes/n8n-nodes-langchain.mcptrigger/)\n\n### MCP Client Tool\n\nThe MCP Client Tool node is a MCP client, allowing you to use the tools exposed by an external MCP server. You can connect the MCP Client Tool node to your models to call external tools with n8n agents. In this regard it is similar to using a n8n tool with your AI agent. One advantage is that the MCP Client Tool can access multiple tools on the MCP server at once, keeping your canvas cleaner and easier to understand.\n\nMCP Client Tools\n\n[Explore the MCP Client Tool docs](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolmcp/)\n\n### Node updates\n\n- Added a node for Azure Cosmos DB\n- Added a node for Milvus Vector Store\n- Updated the Email Trigger (IMAP) node\n\n### Contributors\n\n[adina-hub](https://github.com/adina-hub)\\\n[umanamente](https://github.com/umanamente)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.87.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.87.1...n8n@1.87.2) for this version.\\\n**Release date:** 2025-04-09\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.86.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.86.0...n8n@1.86.1) for this version.\\\n**Release date:** 2025-04-09\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.87.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.87.0...n8n@1.87.1) for this version.\\\n**Release date:** 2025-04-08\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.87.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.86.0...n8n@1.87.0) for this version.\\\n**Release date:** 2025-04-07\n\nThis release contains new nodes, node updates, API updates, core updates, editor updates, and bug fixes.\n\n### Contributors\n\n[cesars-gh](https://github.com/cesars-gh)\\\n[Stamsy](https://github.com/Stamsy)\\\n[Pash10g](https://github.com/Pash10g)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.86.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.0...n8n@1.86.0) for this version.\\\n**Release date:** 2025-03-31\n\nThis release contains API updates, core updates, editor improvements, node updates, and bug fixes.\n\n### Contributors\n\n[Aijeyomah](https://github.com/Aijeyomah)\\\n[ownerer](https://github.com/ownerer)\\\n[ulevitsky](https://github.com/ulevitsky)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.3...n8n@1.85.4) for this version.\\\n**Release date:** 2025-03-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.84.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.84.2...n8n@1.84.3) for this version.\\\n**Release date:** 2025-03-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.84.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.84.1...n8n@1.84.2) for this version.\\\n**Release date:** 2025-03-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.2...n8n@1.85.3) for this version.\\\n**Release date:** 2025-03-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.1...n8n@1.85.2) for this version.\\\n**Release date:** 2025-03-25\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.85.0...n8n@1.85.1) for this version.\\\n**Release date:** 2025-03-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.85.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.84.0...n8n@1.85.0) for this version.\\\n**Release date:** 2025-03-24\n\nThis release contains a new node, a new credential, core updates, editor updates, node updates, and bug fixes.\n\n### Folders\n\nWhat can we say about folders? Well, they’re super handy for categorizing just about everything and they’re finally available for your n8n workflows. Tidy up your workspace with unlimited folders and nested folders. Search for workflows within folders. It’s one of the ways we’re making it easier to organize your n8n instances more effectively.\n\n**How to use it:**\n\nCreate and manage folders within your personal space or within projects. You can also create workflows from within a folder. You may need to restart your instance in order to activate folders.\n\nIt's a folder alright\n\nFolders are available for all [registered](../../hosting/community-edition-features/#registered-community-edition) users so get started with decluttering your workspace now and look for more features (like drag and drop) to organize your instances soon.\n\n### Enhancements to Form Trigger Node\n\nRecent updates to the Form Trigger node have made it a more powerful tool for building business solutions. These enhancements provide more flexibility and customization, enabling teams to create visually engaging and highly functional workflows with forms.\n\n- **HTML customization:** Add custom HTML to forms, including embedded images and videos, for richer user experiences.\n- **Custom CSS support**: Apply custom styles to user-facing components to align forms with your brand’s look and feel. Adjust fonts, colors, and spacing for a seamless visual identity.\n- **Form previews:** Your form’s description and title will pull into previews of your form when sharing on social media or messaging apps, providing a more polished look.\n- **Hidden fields:** Use query parameters to add hidden fields, allowing you to pass data—such as a referral source—without exposing it to the user.\n- **New responses options:** Respond to user submissions in multiple ways including text, HTML, or a downloadable file (binary format). This enables forms to display rich webpages or deliver digital assets such as dynamically generated invoices or personalized certificates.\n\nForm with custom CSS applied\n\nThese improvements elevate the Form Trigger node beyond a simple workflow trigger, transforming it into a powerful tool for addressing use cases from data collection and order processing to custom content creation.\n\n### Contributors\n\n[Fank](https://github.com/Fank)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.84.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.84.0...n8n@1.84.1) for this version.\\\n**Release date:** 2025-03-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.84.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.83.0...n8n@1.84.0) for this version.\\\n**Release date:** 2025-03-17\n\nThis release contains a new node, node updates, editor updates, and bug fixes.\n\n### Contributors\n\n[Pash10g](https://github.com/Pash10g)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.83.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.83.1...n8n@1.83.2) for this version.\\\n**Release date:** 2025-03-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.3...n8n@1.82.4) for this version.\\\n**Release date:** 2025-03-14\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.2...n8n@1.82.3) for this version.\\\n**Release date:** 2025-03-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.83.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.83.0...n8n@1.83.1) for this version.\\\n**Release date:** 2025-03-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.83.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.0...n8n@1.83.0) for this version.\\\n**Release date:** 2025-03-12\n\nThis release contains bug fixes and an editor update.\n\n### Schema Preview\n\nSchema Preview lets you view and work with a node’s expected output without executing it or adding credentials, keeping you in flow while building.\n\n- **See expected node outputs instantly.** View schemas for over 100+ nodes to help you design workflows efficiently without extra steps.\n- **Define workflow logic first, take care of credentials later.** Build your end-to-end workflow without getting sidetracked by credential setup.\n- **Avoid unwanted executions when building.** Prevent unnecessary API calls, unwanted data changes, or potential third-party service costs by viewing outputs without executing nodes.\n\n**How to use it:**\n\n- Add a node with Schema Preview support to your workflow.\n- Open the next node in the sequence - Schema Preview data appears in the Node Editor where you would typically find it in the Schema View.\n- Use Schema Preview fields just like other schema data - drag and drop them into parameters and settings as needed.\n\n[](/_video/release-notes/Schema_preview.mp4)\n\nDon’t forget to add the required credentials before putting your workflow into production.\n\n### Contributors\n\n[pemontto](https://github.com/pemontto)\\\n[Haru922](https://github.com/Haru922)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.1...n8n@1.82.2) for this version.\\\n**Release date:** 2025-03-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.82.0...n8n@1.82.1) for this version.\\\n**Release date:** 2025-03-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.82.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.0...n8n@1.82.0) for this version.\\\n**Release date:** 2025-03-03\n\nThis release contains core updates, editor updates, new nodes, node updates, new credentials, credential updates, and bug fixes.\n\n### Tidy up\n\nTidy up instantly aligns nodes, centers stickies, untangles connections, and brings structure to your workflows. Whether you're preparing to share a workflow or just want to improve readability, this feature saves you time and makes your logic easier to follow. Clean, well-organized workflows aren't just nicer to look at—they’re also quicker to understand.\n\n**How to:**\n\nOpen the workflow you want to tidy, then choose one of these options:\n\n- Click the **Tidy up** button in the bottom-left corner of the canvas (it looks like a broom 🧹)\n- Press **Shift + Alt + T** on your keyboard\n- Right-click anywhere on the canvas and select **Tidy up workflow**\n\nWant to tidy up just part of your workflow? Select the specific nodes you want to clean up first - Tidy up will only adjust those, along with any stickies behind them.\n\n[](/_video/release-notes/tidy_up.mp4)\n\n### Multiple API keys\n\nn8n now supports multiple API keys, allowing users to generate and manage separate keys for different workflows or integrations. This improves security by enabling easier key rotation and isolation of credentials. Future updates will introduce more granular controls.\n\nMultiple API keys\n\n### Contributors\n\n[Rostammahabadi](https://github.com/Rostammahabadi)\\\n[Lanhild](https://github.com/Lanhild)\\\n[matthiez](https://github.com/matthiez)\\\n[feelgood-interface](https://github.com/feelgood-interface)\\\n[adina-hub](https://github.com/adina-hub)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.3...n8n@1.81.4) for this version.\\\n**Release date:** 2025-03-03\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.2...n8n@1.81.3) for this version.\\\n**Release date:** 2025-03-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.1...n8n@1.81.2) for this version.\\\n**Release date:** 2025-02-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.4...n8n@1.80.5) for this version.\\\n**Release date:** 2025-02-28\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.3...n8n@1.80.4) for this version.\\\n**Release date:** 2025-02-27\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.81.0...n8n@1.81.1) for this version.\\\n**Release date:** 2025-02-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.81.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.0...n8n@1.81.0) for this version.\\\n**Release date:** 2025-02-24\n\nThis release contains bug fixes, a core update, editor improvements, and a node update.\n\n### Improved partial executions\n\nThe new execution engine for partial executions ensures that testing parts of a workflow in the builder closely mirrors production behaviour. This makes iterating with updated run-data faster and more reliable, particularly for complex workflows.\n\nBefore, user would test parts of a workflow in the builder that didn't consistently reflect production behaviour, leading to unexpected results during development.\n\nThis update aligns workflow execution in the builder with production behavior.\n\nHere is an example for loops:\n\nBefore\n\n[](/_video/release-notes/Partial-execution-loop-before.mp4)\n\nAfter\n\n[](/_video/release-notes/Partial-execution-loop-after.mp4)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.2...n8n@1.80.3) for this version.\\\n**Release date:** 2025-02-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.3...n8n@1.79.4) for this version.\\\n**Release date:** 2025-02-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.1...n8n@1.80.2) for this version.\\\n**Release date:** 2025-02-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.2...n8n@1.79.3) for this version.\\\n**Release date:** 2025-02-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.80.0...n8n@1.80.1) for this version.\\\n**Release date:** 2025-02-20\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.1...n8n@1.79.2) for this version.\\\n**Release date:** 2025-02-20\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.80.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.0...n8n@1.80.0) for this version.\\\n**Release date:** 2025-02-17\n\nThis release contains bug fixes and an editor improvement.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.75.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.75.2...n8n@1.75.3) for this version.\\\n**Release date:** 2025-02-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.3...n8n@1.74.4) for this version.\\\n**Release date:** 2025-02-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.79.0...n8n@1.79.1) for this version.\\\n**Release date:** 2025-02-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.78.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.78.0...n8n@1.78.1) for this version.\\\n**Release date:** 2025-02-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.3...n8n@1.77.4) for this version.\\\n**Release date:** 2025-02-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.3...n8n@1.76.4) for this version.\\\n**Release date:** 2025-02-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.79.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.0...n8n@1.78.0) for this version.\\\n**Release date:** 2025-02-12\n\nThis release contains new features, node updates, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.2...n8n@1.77.3) for this version.\\\n**Release date:** 2025-02-06\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.78.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.0...n8n@1.78.0) for this version.\\\n**Release date:** 2025-02-05\n\nThis release contains new features, node updates, and bug fixes.\n\n### Contributors\n\n[mocanew](https://github.com/mocanew)\\\n[Timtendo12](https://github.com/Timtendo12)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.1...n8n@1.77.2) for this version.\\\n**Release date:** 2025-02-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.2...n8n@1.76.3) for this version.\\\n**Release date:** 2025-02-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.77.0...n8n@1.77.1) for this version.\\\n**Release date:** 2025-02-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.1...n8n@1.76.2) for this version.\\\n**Release date:** 2025-02-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.77.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.0...n8n@1.77.0) for this version.\\\n**Release date:** 2025-01-29\n\nThis release contains new features, editor updates, new nodes, new credentials, node updates, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.76.0...n8n@1.76.1) for this version.\\\n**Release date:** 2025-01-23\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.76.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.75.0...n8n@1.76.0) for this version.\\\n**Release date:** 2025-01-22\n\nThis release contains new features, editor updates, new credentials, node improvements, and bug fixes.\n\n### Contributors\n\n[Stamsy](https://github.com/Stamsy)\\\n[GKdeVries](https://github.com/GKdeVries)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.75.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.75.1...n8n@1.75.2) for this version.\\\n**Release date:** 2025-01-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.2...n8n@1.74.3) for this version.\\\n**Release date:** 2025-01-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.75.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.75.0...n8n@1.75.1) for this version.\\\n**Release date:** 2025-01-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.1...n8n@1.74.2) for this version.\\\n**Release date:** 2025-01-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.75.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.0...n8n@1.75.0) for this version.\\\n**Release date:** 2025-01-15\n\nThis release contains bug fixes and editor updates.\n\n### Improved consistency across environments\n\nWe added new UX and automatic changes improvements resulting in a better consistency between your staging and production instances.\n\nPreviously, users faced issues like:\n\n- Lack of visibility into required credential updates when pulling changes\n- Incomplete synchronization, where changes — such as deletions — weren’t always applied across environments\n- Confusing commit process, making it unclear what was being pushed or pulled\n\nWe addressed these by:\n\n- Clearly indicating required credential updates when pulling changes\n- Ensuring deletions and other modifications sync correctly across environments\n- Improving commit selection to provide better visibility into what’s being pushed\n\nCommit modal\n\nPull notification\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.74.0...n8n@1.74.1) for this version.\\\n**Release date:** 2025-01-09\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.74.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.73.0...n8n@1.74.0) for this version.\\\n**Release date:** 2025-01-08\n\nThis release contains new features, a new node, node updates, performance improvements and bug fixes.\n\n### Overhauled Code node editing experience\n\nWe added a ton of new helpers to the Code node, making edits of your code much faster and more comfortable. You get:\n\n- TypeScript autocomplete\n- TypeScript linting\n- TypeScript hover tips\n- Search and replace\n- New keyboard shortcuts based on the VSCode keymap\n- Auto-formatting using prettier (Alt+Shift+F)\n- Remember folded regions and history after refresh\n- Multi cursor\n- Type function in the Code node using JSDoc types\n- Drag and drop for all Code node modes\n- Indentation markers\n\nWe build this on a web worker architecture so you won't have to suffer from performance degradation while typing.\n\nTo get the full picture, check out our Studio update with Max and Elias, where they discuss and demo the new editing experience. 👇\n\n[Studio Update #04](https://youtu.be/De1E58MPaMQ?t=645)\n\n### New node: Microsoft Entra ID\n\nMicrosoft Entra ID (formerly known as Microsoft Azure Active Directory or Azure AD) is used for cloud-based identity and access management. [The new node](../../integrations/builtin/app-nodes/n8n-nodes-base.microsoftentra/) supports a wide range of Microsoft Entra ID features, which includes creating, getting, updating, and deleting users and groups, as well as adding users to and removing them from groups.\n\n### Node updates\n\n- [AI Agent](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): Vector stores can now be directly used as tools for the agent\n- [Code](../../code/builtin/overview/): Tons of new speed and convenience features, see above for details\n- [Google Vertex Chat](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglevertex/): Added option to specify the GCP region for the Google API credentials\n- [HighLevel](../../integrations/builtin/app-nodes/n8n-nodes-base.highlevel/): Added support for calendar items\n\nWe also added a custom [projects](../../user-management/rbac/projects/) icon selector on top of the available emojis. Pretty!\n\n### Contributors\n\n[igatanasov](https://github.com/igatanasov)\\\n[Stamsy](https://github.com/Stamsy)\\\n[feelgood-interface](https://github.com/feelgood-interface)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.73.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.73.0...n8n@1.73.1) for this version.\\\n**Release date:** 2024-12-19\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.73.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.72.0...n8n@1.73.0) for this version.\\\n**Release date:** 2024-12-19\n\nThis release contains node updates, performance improvements, and bug fixes.\n\n### Node updates\n\n- [AI Agent](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): Updated descriptions for Chat Trigger options\n- [Facebook Graph API](../../integrations/builtin/app-nodes/n8n-nodes-base.facebookgraphapi/): Updated for API v21.0\n- [Gmail](../../integrations/builtin/app-nodes/n8n-nodes-base.gmail/): Added two new options for the `Send and wait` operation, free text and custom form\n- [Linear Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.lineartrigger/): Added support for admin scope\n- [MailerLite](../../integrations/builtin/app-nodes/n8n-nodes-base.mailerlite/): Now supports the new API\n- [Slack](../../integrations/builtin/app-nodes/n8n-nodes-base.slack/): Added two new options for the `Send and wait` operation, free text and custom form\n\nWe also added credential support for [SolarWinds IPAM](../../integrations/builtin/credentials/solarwindsipam/) and [SolarWinds Observability](../../integrations/builtin/credentials/solarwindsobservability/).\n\nLast, but not least, we [improved the schema view performance in the node details view by 90%](https://github.com/n8n-io/n8n/pull/12180) and added drag and drop re-ordering to parameters. This comes in very handy in the [If](../../integrations/builtin/core-nodes/n8n-nodes-base.if/) or [Edit Fields](../../integrations/builtin/core-nodes/n8n-nodes-base.set/) nodes.\n\n### Contributors\n\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[mickaelandrieu](https://github.com/mickaelandrieu)\\\n[Stamsy](https://github.com/Stamsy)\\\n[pbdco](https://github.com/pbdco)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.72.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.72.0...n8n@1.72.1) for this version.\\\n**Release date:** 2024-12-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.71.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.71.2...n8n@1.71.3) for this version.\\\n**Release date:** 2024-12-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.72.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.71.0...n8n@1.72.0) for this version.\\\n**Release date:** 2024-12-11\n\nThis release contains node updates, usability improvements, and bug fixes.\n\n### Node updates\n\n- [AI Transform](../../integrations/builtin/core-nodes/n8n-nodes-base.aitransform/): The `maximum context length` error now retries with reduced payload size\n- [Redis](../../integrations/builtin/app-nodes/n8n-nodes-base.redis/): Added support for `continue on fail`\n\n### Improved commit modal\n\nWe added filters and text search to the commit modal when working with [Environments](../../source-control-environments/). This will make committing easier as we provide more information and better visibility. Environments are available on the Enterprise plan.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.71.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.71.1...n8n@1.71.2) for this version.\\\n**Release date:** 2024-12-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.3...n8n@1.70.4) for this version.\\\n**Release date:** 2024-12-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.71.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.71.0...n8n@1.71.1) for this version.\\\n**Release date:** 2024-12-06\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.2...n8n@1.70.3) for this version.\\\n**Release date:** 2024-12-05\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.71.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.2...n8n@1.71.0) for this version.\\\n**Release date:** 2024-12-04\n\nThis release contains node updates, performance improvements, and bug fixes.\n\n### Task runners for the Code node in public beta\n\nWe're introducing a significant performance upgrade to the Code node with our new Task runner system. This enhancement moves JavaScript code execution to a separate process, improving your workflow execution speed while adding better isolation.\n\nTask runners overview\n\nOur benchmarks show up to 6x improvement in workflow executions using Code nodes - from approximately 6 to 35 executions per second. All these improvements happen under the hood, keeping your Code node experience exactly the same.\n\nThe Task runner comes in two modes:\n\n- Internal mode (default): Perfect for getting started, automatically managing task runners as child processes\n- External mode: For advanced hosting scenarios requiring maximum isolation and security\n\nCurrently, this feature is opt-in and can be enabled using [environment variables](../../hosting/configuration/environment-variables/task-runners/). Once stable, it will become the default execution method for Code nodes.\n\nTo start using Task runners today, [check out the docs](../../hosting/configuration/task-runners/).\n\n### Node updates\n\n- [AI Transform node](../../integrations/builtin/core-nodes/n8n-nodes-base.aitransform/): We improved the prompt for code generation to transform data\n- [Code node](../../integrations/builtin/core-nodes/n8n-nodes-base.code/): We added a warning if `pairedItem` is absent or could not be auto mapped\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.1...n8n@1.70.2) for this version.\\\n**Release date:** 2024-12-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.0...n8n@1.70.1) for this version.\\\n**Release date:** 2024-11-29\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.70.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.69.0...n8n@1.70.0) for this version.\\\n**Release date:** 2024-11-27\n\nThis release contains node updates, performance improvements and bug fixes.\n\n### New canvas in beta\n\nThe new canvas is now the default setting for all users. It should bring significant performance improvements and adds a handy minimap. As it is still a beta version you can still revert to the previous version with the three dot menu.\n\nWe're looking forward to your feedback. Should you encounter a bug, you will find a handy button to create an issue at the bottom of the new canvas as well.\n\n### Node updates\n\n- We added credential support for [Zabbix](../../integrations/builtin/credentials/zabbix/) to the HTTP request node\n- We added new OAuth2 credentials for [Microsoft SharePoint](../../integrations/builtin/credentials/microsoft/)\n- The [Slack node](../../integrations/builtin/app-nodes/n8n-nodes-base.slack/#operations) now uses markdown for the approval message when using the `Send and Wait for Approval` operation\n\n### Contributors\n\n[feelgood-interface](https://github.com/feelgood-interface)\\\n[adina-hub](https://github.com/adina-hub)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.68.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.68.0...n8n@1.68.1) for this version.\\\n**Release date:** 2024-11-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.69.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.69.1...n8n@1.69.2) for this version.\\\n**Release date:** 2024-11-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.69.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.69.0...n8n@1.69.1) for this version.\\\n**Release date:** 2024-11-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.69.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.68.0...n8n@1.69.0) for this version.\\\n**Release date:** 2024-11-20\n\nThis release contains a new feature, node improvements and bug fixes.\n\n### Sub-workflow debugging\n\nWe made it much easier to debug sub-workflows by improving their accessibility from the parent workflow.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.68.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.67.1...n8n@1.68.0) for this version.\\\n**Release date:** 2024-11-13\n\nThis release contains node updates, performance improvements and many bug fixes.\n\n#### New AI agent canvas chat\n\nWe revamped the chat experience for AI agents on the canvas. A neatly organized view instead of a modal hiding the nodes. You can now see the canvas, chat and logs at the same time when testing your workflow.\n\n[](/_video/release-notes/AI-chat-on-canvas.mp4)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.67.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.67.0...n8n@1.67.1) for this version.\\\n**Release date:** 2024-11-07\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.67.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.66.0...n8n@1.67.0) for this version.\\\n**Release date:** 2024-11-06\n\nThis release contains node updates and bug fixes.\n\n### Node updates\n\n- [AI Transform](../../integrations/builtin/core-nodes/n8n-nodes-base.aitransform/): Improved usability\n- [Anthropic Chat Model Node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/): Added Haiku 3.5 support\n- [Convert to File](../../integrations/builtin/core-nodes/n8n-nodes-base.converttofile/): Added delimiter option for writing to CSV\n- [Gmail Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.gmailtrigger/): Added option to filter for draft messages\n- [Intercom](../../integrations/builtin/app-nodes/n8n-nodes-base.intercom/): Credential can now be used in the HTTP Request node\n- [Rapid7 InsightVM](../../integrations/builtin/credentials/rapid7insightvm/): Added credential support\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.66.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.65.2...n8n@1.66.0) for this version.\\\n**Release date:** 2024-10-31\n\nThis release contains performance improvements, a node update and bug fixes.\n\n### Node update\n\n- [Anthropic Chat Model](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/): Added support for claude-3-5-sonnet-20241022\n\nWe made updates to how projects and workflow ownership are displayed making them easier to understand and navigate.\n\nWe further improved the performance logic of partial executions, leading to a smoother and more enjoyable building experience.\n\n### New n8n canvas alpha\n\nWe have enabled the alpha version of our new canvas. The canvas is the ‘drawing board’ of the n8n editor, and we’re working on a full rewrite. Your feedback and testing will help us improve it. [Read all about it on our community forum](https://community.n8n.io/t/help-us-test-the-new-n8n-canvas-alpha/60070).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.65.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.65.1...n8n@1.65.2) for this version.\\\n**Release date:** 2024-10-28\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.64.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.64.2...n8n@1.64.3) for this version.\\\n**Release date:** 2024-10-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.65.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.65.0...n8n@1.65.1) for this version.\\\n**Release date:** 2024-10-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.65.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.64.1...n8n@1.65.0) for this version.\\\n**Release date:** 2024-10-24\n\n[Breaking change](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md)\n\nWhat changed? Queue polling via the environment variable `QUEUE_RECOVERY_INTERVAL` has been removed.\n\nWhen is action necessary? If you have set `QUEUE_RECOVERY_INTERVAL`, you can remove it as it no longer has any effect.\n\nThis release contains a new features, new nodes, node enhancements, and bug fixes.\n\n### New node: n8n Form\n\nUse the [n8n Form node](../../integrations/builtin/core-nodes/n8n-nodes-base.form/) to create user-facing forms with multiple pages. You can add other nodes with custom logic between to process user input. Start the workflow with a [n8n Form Trigger](../../integrations/builtin/core-nodes/n8n-nodes-base.formtrigger/).\n\nA multi-page form with branching\n\nAdditionally you can:\n\n- Set default selections with query parameters\n- Define the form with a JSON array of objects\n- Show a completion screen and redirect to another URL\n\n### Node updates\n\nNew nodes:\n\n- [Google Business Profile](../../integrations/builtin/app-nodes/n8n-nodes-base.googlebusinessprofile/) and [Google Business Profile Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.googlebusinessprofiletrigger/): Use these to integrate Google Business Profile reviews and posts with your workflows\n\nEnhanced nodes:\n\n- [AI Agent](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/): Removed the requirement to add at least one tool\n- [GitHub](../../integrations/builtin/app-nodes/n8n-nodes-base.github/): Added workflows as a resource operation\n- [Structured Output Parser](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/): Added more user-friendly error messages\n\nFor additional security, we improved how we handle multi-factor authentication, hardened config file permissions and introduced JWT for the public API.\n\nFor better performance, we improved how partial executions are handled in loops.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n- [Idan Fishman](https://github.com/idanfishman)\n\n## n8n@1.64.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.64.1...n8n@1.64.2) for this version.\\\n**Release date:** 2024-10-24\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.64.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.64.0...n8n@1.64.1) for this version.\\\n**Release date:** 2024-10-21\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.64.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.4...n8n@1.64.0) for this version.\\\n**Release date:** 2024-10-16\n\nThis release contains a new node, node enhancements, performance improvements and bug fixes.\n\n### Enhanced node: Remove Duplicates\n\nThe [Remove Duplicates node](../../integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates/) got a major makeover with the addition of two new operations:\n\n- Remove Items Processed in Previous Executions: Compare items in the current input to items from previous executions and remove duplicates\n- Clear Deduplication History: Wipe the memory of items from previous executions.\n\nThis makes it easier to only process new items from any data source. For example, you can now more easily poll a Google sheet for new entries by `id` or remove duplicate orders from the same customer by comparing their `order date`. The great thing is, you can now do this within **and across** workflow runs.\n\n### New node: Gong\n\nThe new node for [Gong](../../integrations/builtin/app-nodes/n8n-nodes-base.gong/) allows you to get users and calls to process them further in n8n. Very useful for sales related workflows.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n- [Sören Uhrbach](https://github.com/soerenuhrbach)\n\n## n8n@1.63.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.3...n8n@1.63.4) for this version.\\\n**Release date:** 2024-10-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.6\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.5...n8n@1.62.6) for this version.\\\n**Release date:** 2024-10-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.63.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.2...n8n@1.63.3) for this version.\\\n**Release date:** 2024-10-15\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.63.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.1...n8n@1.63.2) for this version.\\\n**Release date:** 2024-10-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.4...n8n@1.62.5) for this version.\\\n**Release date:** 2024-10-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.63.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.63.0...n8n@1.63.1) for this version.\\\n**Release date:** 2024-10-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.3...n8n@1.62.4) for this version.\\\n**Release date:** 2024-10-11\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.63.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.3...n8n@1.63.0) for this version.\\\n**Release date:** 2024-10-09\n\n[Breaking change](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md)\n\nWhat changed?\n\n- The worker server used to bind to IPv6 by default. It now binds to IPv4 by default.\n- The worker server's `/healthz` used to report healthy status based on database and Redis checks. It now reports healthy status regardless of database and Redis status, and the database and Redis checks are part of `/healthz/readiness`.\n\nWhen is action necessary?\n\n- If you experience a port conflict error when starting a worker server using its default port, set a different port for the worker server with `QUEUE_HEALTH_CHECK_PORT`.\n- If you are relying on database and Redis checks for worker health status, switch to checking `/healthz/readiness` instead of `/healthz`.\n\nThis release contains new features, node enhancements and bug fixes.\n\n### Node updates\n\n- [OpenAI](../../integrations/builtin/app-nodes/n8n-nodes-langchain.openai/): Added the option to choose between the default memory connector to provide memory to the assistant or to specify a thread ID\n- [Gmail](../../integrations/builtin/app-nodes/n8n-nodes-base.gmail/) and [Slack](../../integrations/builtin/app-nodes/n8n-nodes-base.slack/): Added custom approval operations to have a human in the loop of a workflow\n\nWe have also optimized the [worker health checks](../../hosting/logging-monitoring/monitoring/) (see breaking change above).\n\nEach credential now has a seperate url you can link to. This makes sharing much easier.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Pemontto](https://github.com/pemontto)\n\n## n8n@1.62.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.2...n8n@1.62.3) for this version.\\\n**Release date:** 2024-10-08\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.62.1...n8n@1.62.2) for this version.\\\n**Release date:** 2024-10-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.62.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.61.0...n8n@1.62.1) for this version.\\\n**Release date:** 2024-10-02\n\nThis release contains new features, node enhancements and bug fixes.\n\nSkipped 1.62.0\n\nWe skipped 1.62.0 and went straight to 1.62.1 with an additional fix.\n\n#### Additional nodes as tools\n\nWe have made additional nodes usable with the [Tools AI Agent node](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/tools-agent/).\n\n[](/_video/release-notes/nodes-as-tools.mp4)\n\nAdditionally, we have added a `$fromAI()` placeholder function to use with tools, allowing you to dynamically pass information from the models to the connected tools. This function works similarly to placeholders used elsewhere in n8n.\n\nBoth of these new features enable you to build even more powerful AI agents by drawing directly from the apps your business uses. This makes integrating LLMs into your business processes even easier than before.\n\n### Node updates\n\n- [Google BigQuery](../../integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery/): Added option to return numeric values as integers and not strings\n- [HTTP Request](../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/): Added credential support for Sysdig\n- [Invoice Ninja](../../integrations/builtin/app-nodes/n8n-nodes-base.invoiceninja/): Additional query params for getAll requests\n- [Question and Answer Chain](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa/): Added the option to use a custom prompt\n\nDrag and drop insertion on cursor position from schema view is now also enabled for code, SQL and Html fields in nodes.\n\nCustomers with an enterprise license can now rate, tag and highlight execution data in the executions view. To use highlighting, add an [Execution Data Node](../../integrations/builtin/core-nodes/n8n-nodes-base.executiondata/) (or Code node) to the workflow to set [custom executions data](../../workflows/executions/custom-executions-data/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Benjamin Roedell](https://github.com/benrobot)\\\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[manuelbcd](https://github.com/manuelbcd)\\\n[Miguel Prytoluk](https://github.com/mprytoluk)\n\n## n8n@1.61.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.60.1...n8n@1.61.0) for this version.\\\n**Release date:** 2024-09-25\n\nThis release contains new features, node enhancements and bug fixes.\n\n### Node updates\n\n- [Brandfetch](../../integrations/builtin/app-nodes/n8n-nodes-base.brandfetch/): Updated to use the new API\n- [Slack](../../integrations/builtin/app-nodes/n8n-nodes-base.slack/): Made adding or removing the workflow link to a message easier\n\nBig datasets now render faster thanks to virtual scrolling and execution annotations are harder to delete.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.59.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.3...n8n@1.59.4) for this version.\\\n**Release date:** 2024-09-20\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.60.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.60.0...n8n@1.60.1) for this version.\\\n**Release date:** 2024-09-20\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.60.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.3...n8n@1.60.0) for this version.\\\n**Release date:** 2024-09-18\n\nThis release contains new features, node enhancements and bug fixes.\n\n#### Queue metrics for workers\n\nYou can now [expose and consume metrics from your workers](../../hosting/configuration/configuration-examples/prometheus/). The worker instances have the same metrics available as the main instance(s) and can be configured with [environment variables](../../hosting/configuration/environment-variables/endpoints/).\n\nYou can now customize the maximum file size when uploading files within forms to webhooks. The [environment variable to set](../../hosting/configuration/environment-variables/endpoints/) for this is `N8N_FORMDATA_FILE_SIZE_MAX`. The default setting is 200MiB.\n\n### Node updates\n\nEnhanced nodes:\n\n- [Invoice Ninja](../../integrations/builtin/app-nodes/n8n-nodes-base.invoiceninja/): Added actions for bank transactions\n- [OpenAI](../../integrations/builtin/app-nodes/n8n-nodes-langchain.openai/): Added O1 models to the model select\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\n\n## n8n@1.59.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.2...n8n@1.59.3) for this version.\\\n**Release date:** 2024-09-18\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.59.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.1...n8n@1.59.2) for this version.\\\n**Release date:** 2024-09-17\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.59.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.59.0...n8n@1.59.1) for this version.\\\n**Release date:** 2024-09-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.58.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.58.1...n8n@1.58.2) for this version.\\\n**Release date:** 2024-09-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.59.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.58.1...n8n@1.59.0) for this version.\\\n**Release date:** 2024-09-11\n\nChat Trigger\n\nIf you are using the Chat Trigger in \"Embedded Chat\" mode, with authentication turned on, you could see errors connecting to n8n if the authentication on the sending/embedded side is mis-configured.\n\nThis release contains bug fixes and feature enhancements.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[oscarpedrero](https://github.com/oscarpedrero)\n\n## n8n@1.58.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.58.0...n8n@1.58.1) for this version.\\\n**Release date:** 2024-09-06\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.58.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.57.0...n8n@1.58.0) for this version.\\\n**Release date:** 2024-09-05\n\nThis release contains new features, bug fixes and feature enhancements.\n\n#### New node: PGVector Vector Store\n\nThis release adds the PGVector Vector Store node. Use this node to interact with the PGVector tables in your PostgreSQL database. You can insert, get, and retrieve documents from a vector table to provide them to a retriever connected to a chain.\n\n#### See active collaborators on workflows\n\nWe added collaborator avatars back to the workflow canvas. You will see other users who are active on the workflow, preventing you from overriding each other's work.\n\nCollaboration avatars\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.57.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.56.2...n8n@1.57.0) for this version.\\\n**Release date:** 2024-08-28\n\nThis release contains new features and bug fixes.\n\n#### Improved execution queue handling\n\nWe are [exposing new execution queue metrics](../../hosting/configuration/configuration-examples/prometheus/) to give users more visibility of the queue length. This helps to inform decisions on horizontal scaling, based on queue status. We have also made querying executions faster.\n\n#### New credentials for the HTTP Request node\n\nWe added credential support for Datadog, Dynatrace, Elastic Security, Filescan, Iris, and Malcore to the HTTP Request node making it easier to use existing credentials.\n\nWe also made it easier to select workflows as tools when working with AI agents by implementing a new `workflow selector` parameter type.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Bram Kn](https://github.com/bramkn)\n\n## n8n@1.56.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.56.1...n8n@1.56.2) for this version.\\\n**Release date:** 2024-08-26\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.56.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.56.0...n8n@1.56.1) for this version.\\\n**Release date:** 2024-08-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.56.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.55.3...n8n@1.56.0) for this version.\\\n**Release date:** 2024-08-21\n\nThis release contains node updates, security and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[Oz Weiss](https://github.com/thewizarodofoz)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.55.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.55.2...n8n@1.55.3) for this version.\\\n**Release date:** 2024-08-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.55.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.55.1...n8n@1.55.2) for this version.\\\n**Release date:** 2024-08-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.55.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.55.0...n8n@1.55.1) for this version.\\\n**Release date:** 2024-08-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.3...n8n@1.54.4) for this version.\\\n**Release date:** 2024-08-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.2...n8n@1.54.3) for this version.\\\n**Release date:** 2024-08-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.1...n8n@1.54.2) for this version.\\\n**Release date:** 2024-08-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.55.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.1...n8n@1.55.0) for this version.\\\n**Release date:** 2024-08-14\n\n[Breaking change](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md)\n\nThe N8N_BLOCK_FILE_ACCESS_TO_N8N_FILES environment variable now also blocks access to n8n's static cache directory at ~/.cache/n8n/public.\n\nIf you are writing to or reading from a file at n8n's static cache directory via a node, e.g. Read/Write Files from Disk, please update your node to use a different path.\n\nThis release contains a new feature, a new node, a node update and bug fixes.\n\n#### Override the npm registry\n\nThis release adds the option to override the npm registry for installing community packages. This is a paid feature.\n\nWe now also prevent npm downloading community packages from a compromised npm registry by explicitly using --registry in all npm install commands.\n\n#### New node: AI Transform\n\nThis release adds the [AI Transform node](../../integrations/builtin/core-nodes/n8n-nodes-base.aitransform/). Use the AI Transform node to generate code snippets based on your prompt. The AI is context-aware, understanding the workflow’s nodes and their data types. The node is only available on [Cloud plans](../../manage-cloud/overview/).\n\n#### New node: Okta\n\nThis release adds the [Okta node](../../integrations/builtin/app-nodes/n8n-nodes-base.okta/). Use the Okta node to automate work in Okta and integrate Okta with other applications. n8n has built-in support for a wide range of Okta features, which includes creating, updating, and deleting users.\n\n### Node updates\n\nEnhanced node:\n\n- [MySQL](../../integrations/builtin/app-nodes/n8n-nodes-base.mysql/)\n\nThis release also adds the new schema view for the expression editor modal.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.54.0...n8n@1.54.1) for this version.\\\n**Release date:** 2024-08-13\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.53.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.53.1...n8n@1.53.2) for this version.\\\n**Release date:** 2024-08-08\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.54.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.53.1...n8n@1.54.0) for this version.\\\n**Release date:** 2024-08-07\n\nThis release contains new features, node enhancements, bug fixes and updates to our API.\n\n### API update\n\nOur [public REST API](../../api/) now supports additional operations:\n\n- Create, delete, and edit roles for users\n- Create, read, update and delete projects\n\nFind the details in the [API reference](../../api/api-reference/).\n\n### Contributors\n\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[Javier Ferrer González](https://github.com/JavierCane)\\\n[Mickaël Andrieu](https://github.com/mickaelandrieu)\\\n[Oz Weiss](https://github.com/thewizarodofoz)\\\n[Pemontto](https://github.com/pemontto)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.45.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.45.1...n8n@1.45.2) for this version.\\\n**Release date:** 2024-08-06\n\nThis release contains a bug fix.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.53.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.53.0...n8n@1.53.1) for this version.\\\n**Release date:** 2024-08-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.53.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.52.2...n8n@1.53.0) for this version.\\\n**Release date:** 2024-07-31\n\nThis release contains new features, new nodes, node enhancements, bug fixes and updates to our API.\n\n#### Added Google Cloud Platform Secrets Manager support\n\nThis release adds [Google Cloud Platform Secrets Manager](../../external-secrets/) to the list of external secret stores. We already support AWS secrets, Azure Key Vault, Infisical and HashiCorp Vault. External secret stores are available under an enterprise license.\n\n#### New node: Information Extractor\n\nThis release adds the [Information Extractor node](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.information-extractor/). The node is specifically tailored for information extraction tasks. It uses Structured Output Parser under the hood, but provides a simpler way to extract information from text in a structured JSON form.\n\n#### New node: Sentiment Analysis\n\nThis release adds the [Sentiment Analysis node](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.sentimentanalysis/). The node leverages LLMs to analyze and categorize the sentiment of input text. Users can easily integrate this node into their workflows to perform sentiment analysis on text data. The node is flexible enough to handle various use cases, from basic positive/negative classification to more nuanced sentiment categories.\n\n### Node updates\n\nEnhanced nodes:\n\n- [Calendly Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.calendlytrigger/)\n- [HTTP Request](../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/)\n- [n8n Form Trigger](../../integrations/builtin/core-nodes/n8n-nodes-base.formtrigger/)\n- [Shopify](../../integrations/builtin/app-nodes/n8n-nodes-base.shopify/)\n\n### API update\n\nOur [public REST API](../../api/) now supports additional operations:\n\n- Create, read, and delete for variables\n- Filtering workflows by project\n- Transferring workflows\n\nFind the details in the [API reference](../../api/api-reference/).\n\n### Contributors\n\n[feelgood-interface](https://github.com/feelgood-interface)\\\n[Oz Weiss](https://github.com/thewizarodofoz)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.52.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.52.1...n8n@1.52.2) for this version.\\\n**Release date:** 2024-07-31\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.52.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.52.0...n8n@1.52.1) for this version.\\\n**Release date:** 2024-07-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.51.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.51.1...n8n@1.51.2) for this version.\\\n**Release date:** 2024-07-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.52.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.51.1...n8n@1.52.0) for this version.\\\n**Release date:** 2024-07-25\n\n[Breaking change](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md)\n\nPrometheus metrics enabled via N8N_METRICS_INCLUDE_DEFAULT_METRICS and N8N_METRICS_INCLUDE_API_ENDPOINTS were fixed to include the default n8n\\_ prefix.\n\nIf you are using Prometheus metrics from these categories and are using a non-empty prefix, please update those metrics to match their new prefixed names.\n\nThis release contains new features, node enhancements and bug fixes.\n\n#### Added Azure Key Vault support\n\nThis release adds [Azure Key Vault](../../external-secrets/) to the list of external secret stores. We already support AWS secrets, Infisical and HashiCorp Vault and are working on Google Secrets Manager. External secret stores are available under an enterprise license.\n\n### Node updates\n\nEnhanced nodes:\n\n- [Pinecone Vector Store](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/)\n- [Supabase Vector Store](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/)\n- [Send Email](../../integrations/builtin/core-nodes/n8n-nodes-base.sendemail/)\n\nDeprecated nodes:\n\n- OpenAI Model: You can use the OpenAI Chat Model instead\n- Google Palm Chat Model: You can use Google Vertex or Gemini instead\n- Google Palm Model: You can use Google Vertex or Gemini instead\n\n## n8n@1.51.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.51.0...n8n@1.51.1) for this version.\\\n**Release date:** 2024-07-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.50.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.50.1...n8n@1.50.2) for this version.\\\n**Release date:** 2024-07-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.51.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.50.1...n8n@1.51.0) for this version.\\\n**Release date:** 2024-07-18\n\nThis release contains new nodes, node enhancements and bug fixes.\n\n#### New node: Text Classifier\n\nThis release adds the [Text Classifier node](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier/).\n\n#### New node: Postgres Chat Memory\n\nThis release adds the [Postgres Chat Memory node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorypostgreschat/).\n\n#### New node: Google Vertex Chat Model\n\nThis release adds the [Google Vertex Chat Model node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglevertex/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Node updates\n\n- Enhanced nodes: Asana\n\n## n8n@1.50.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.50.0...n8n@1.50.1) for this version.\\\n**Release date:** 2024-07-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.50.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.49.0...n8n@1.50.0) for this version.\\\n**Release date:** 2024-07-10\n\nThis release contains node enhancements and bug fixes.\n\n### Node updates\n\n- Enhanced nodes: Chat Trigger, Google Cloud Firestore, Qdrant Vector Store, Splunk, Telegram\n- Deprecated node: Orbit (product shut down)\n\n### Beta Feature Removal\n\nThe Ask AI beta feature for the HTTP Request node has been removed from this version\n\n### Contributors\n\n[Stanley Yoshinori Takamatsu](https://github.com/stanleytakamatsu)\\\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[jeanpaul](https://github.com/jeanpaul)\\\n[adrian-martinez-onestic](https://github.com/adrian-martinez-onestic)\\\n[Malki Davis](https://github.com/mxdavis)\n\n## n8n@1.49.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.3...n8n@1.49.0) for this version.\\\n**Release date:** 2024-07-03\n\nThis release contains a new node, node enhancements, and bug fixes.\n\n### Node updates\n\n- New node added: [Vector Store Tool](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/) for the AI Agent\n- Enhanced nodes: Zep Cloud Memory, Copper, Embeddings Cohere, GitHub, Merge, Zammad\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Jochem](https://github.com/jvdweerthof)\\\n[KhDu](https://github.com/KhDu)\\\n[Nico Weichbrodt](https://github.com/envy)\\\n[Pavlo Paliychuk](https://github.com/paul-paliychuk)\n\n## n8n@1.48.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.2...n8n@1.48.3) for this version.\\\n**Release date:** 2024-07-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.47.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.2...n8n@1.47.3) for this version.\\\n**Release date:** 2024-07-03\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.48.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.1...n8n@1.48.2) for this version.\\\n**Release date:** 2024-07-01\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.47.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.1...n8n@1.47.2) for this version.\\\n**Release date:** 2024-07-01\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.48.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.48.0...n8n@1.48.1) for this version.\\\n**Release date:** 2024-06-27\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.48.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.1...n8n@1.48.0) for this version.\\\n**Release date:** 2024-06-27\n\nThis release contains bug fixes and feature enhancements.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[KubeAl](https://github.com/KubeAl)\n\n## n8n@1.47.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.47.0...n8n@1.47.1) for this version.\\\n**Release date:** 2024-06-26\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.47.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.46.0...n8n@1.47.0) for this version.\\\n**Release date:** 2024-06-20\n\nBreaking change\n\nCalling `$(...).last()` (or `(...).first()` or `$(...).all()`) without arguments now returns the last item (or first or all items) of the output that connects two nodes. Previously, it returned the item/items of the first output of that node. Refer to the [breaking changes log](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md#1470) for details.\n\nThis release contains bug fixes, feature enhancements, a new node, node enhancements and performance improvements.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n#### New node: HTTP request tool\n\nThis release adds the HTTP request tool. You can use it with an AI agent as a tool to collect information from a website or API. Refer to the [HTTP request tool](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolhttprequest/) for details.\n\n### Contributors\n\n[Daniel](https://github.com/daniel-alba17)\\\n[ekadin-mtc](https://github.com/ekadin-mtc)\\\n[Eric Francis](https://github.com/EricFrancis12)\\\n[Josh Sorenson](https://github.com/joshsorenson)\\\nMohammad Alsmadi [Nikolai T. Jensen](https://github.com/ch0wm3in)\\\n[n8n-ninja](https://github.com/n8n-ninja)\\\n[pebosi](https://github.com/pebosi)\\\n[Taylor Hoffmann](https://github.com/TaylorHo)\n\n## n8n@1.45.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.45.0...n8n@1.45.1) for this version.\\\n**Release date:** 2024-06-12\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.46.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.45.0...n8n@1.46.0) for this version.\\\n**Release date:** 2024-06-12\n\nThis release contains feature enhancements, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Jean Khawand](https://github.com/jeankhawand)\\\n[pemontto](https://github.com/pemontto)\\\n[Valentin Coppin](https://github.com/valimero)\n\n## n8n@1.44.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.44.1...n8n@1.44.2) for this version.\\\n**Release date:** 2024-06-12\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.42.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.42.1...n8n@1.42.2) for this version.\\\n**Release date:** 2024-06-10\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.45.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.44.1...n8n@1.45.0) for this version.\\\n**Release date:** 2024-06-06\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.44.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.44.0...n8n@1.44.1) for this version.\\\n**Release date:** 2024-06-03\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.44.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.43.1...n8n@1.44.0) for this version.\\\n**Release date:** 2024-05-30\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.43.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.43.0...n8n@1.43.1) for this version.\\\n**Release date:** 2024-05-28\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.43.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.42.1...n8n@1.43.0) for this version.\\\n**Release date:** 2024-05-22\n\nThis release contains new features, node enhancements, and bug fixes.\n\nBackup recommended\n\nAlthough this release doesn't include a breaking change, it is a significant update including database migrations. n8n recommends backing up your data before updating to this version.\n\nCredential sharing required for manual executions\n\nInstance owners and admins: you will see changes if you try to manually execute a workflow where the credentials aren't shared with you. Manual workflow executions now use the same permissions checks as production executions, meaning you can't do a manual execution of a workflow if you don't have access to the credentials. Previously, owners and admins could do manual executions without credentials being shared with them. To resolve this, the credential creator needs to [share the credential](../../credentials/credential-sharing/) with you.\n\n#### New feature: Projects\n\nWith projects and roles, you can give your team access to collections of workflows and credentials, rather than having to share each workflow and credential individually. Simultaneously, you tighten security by limiting access to people on the relevant team.\n\nRefer to the [RBAC](../../user-management/rbac/) documentation for information on creating projects and using roles.\n\nThe number of projects and role types vary depending on your plan. Refer to [Pricing](https://n8n.io/pricing/) for details.\n\n[](/_video/release-notes/rbac-glimpse.mp4)\n\n#### New node: Slack Trigger\n\nThis release adds a trigger node for Slack. Refer to the [Slack Trigger documentation](../../integrations/builtin/trigger-nodes/n8n-nodes-base.slacktrigger/) for details.\n\n### Other highlights\n\n- Improved [memory support for OpenAI assistants](../../integrations/builtin/app-nodes/n8n-nodes-langchain.openai/).\n\n### Rolling back to a previous version\n\nIf you update to this version, then decide you need to role back:\n\nSelf-hosted n8n:\n\n1. Delete any RBAC projects you created.\n1. Revert the database migrations using `n8n db:revert`.\n\nCloud: contact [help@n8n.io](mailto:help@n8n.io).\n\n### Contributors\n\n[Ayato Hayashi](https://github.com/hayashi-ay)\\\n[Daniil Zobov](https://github.com/ddzobov)\\\n[Guilherme Barile](https://github.com/GuilhermeBarile)\\\n[Romain MARTINEAU](https://github.com/RJiraya)\n\n## n8n@1.42.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.42.0...n8n@1.42.1) for this version.\\\n**Release date:** 2024-05-20\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.41.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.41.0...n8n@1.41.1) for this version.\\\n**Release date:** 2024-05-16\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.42.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.41.0...n8n@1.42.0) for this version.\\\n**Release date:** 2024-05-15\n\nThis release contains new features, node enhancements, and bug fixes.\n\nNote that this release removes the AI error debugger. We're working on a new and improved version.\n\n#### New feature: Tools Agent\n\nThis release adds a new option to the Agent node: the [Tools Agent](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/tools-agent/).\n\nThis agent has an enhanced ability to work with tools, and can ensure a standard output format. This is now the recommended default agent.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Mike Quinlan](https://github.com/mjquinlan2000)\\\n[guangwu](https://github.com/testwill)\n\n## n8n@1.41.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.40.0...n8n@1.41.0) for this version.\\\n**Release date:** 2024-05-08\n\nThis release contains new features, node enhancements, and bug fixes.\n\nNote that this release temporarily disables the AI error helper.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Florin Lungu](https://github.com/floryn90)\n\n## n8n@1.40.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.39.1...n8n@1.40.0) for this version.\\\n**Release date:** 2024-05-02\n\nBreaking change\n\nPlease note that this version contains a breaking change for instances using a Postgres database. The default value for the DB_POSTGRESDB_USER environment variable was switched from `root` to `postgres`. Refer to the [breaking changes log](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md#1400) for details.\n\nThis release contains new features, new nodes, node enhancements, and bug fixes.\n\n#### New feature: Ask AI in the HTTP node\n\nYou can now ask AI to help create API requests in the HTTP Request node:\n\n1. In the HTTP Request node, select **Ask AI**.\n1. Enter the **Service** and **Request** you want to use. For example, to use the NASA API to get their picture of the day, enter `NASA` in **Service** and `get picture of the day` in **Request**.\n1. Check the parameters: the AI tries to fill them out, but you may still need to adjust or correct the configuration.\n\nSelf-hosted users need to [enable AI features and provide their own API keys](../../hosting/configuration/environment-variables/)\n\n#### New node: Groq Chat Model\n\nThis release adds the [Groq Chat Model node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgroq/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Alberto Pasqualetto](https://github.com/albertopasqualetto)\\\n[Bram Kn](https://github.com/bramkn)\\\n[CodeShakingSheep](https://github.com/CodeShakingSheep)\\\n[Nicolas-nwb](https://github.com/Nicolas-nwb)\\\n[pemontto](https://github.com/pemontto)\\\n[pengqiseven](https://github.com/pengqiseven)\\\n[webk](https://github.com/webkp)\\\n[Yoshino-s](https://github.com/Yoshino-s)\n\n## n8n@1.39.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.39.0...n8n@1.39.1) for this version.\\\n**Release date:** 2024-04-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.38.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.38.1...n8n@1.38.2) for this version.\\\n**Release date:** 2024-04-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.37.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.3...n8n@1.37.4) for this version.\\\n**Release date:** 2024-04-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.39.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.38.1...n8n@1.39.0) for this version.\\\n**Release date:** 2024-04-24\n\nThis release contains new nodes, node enhancements, and bug fixes.\n\n#### New node: WhatsApp Trigger\n\nThis release adds the [WhatsApp Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.whatsapptrigger/).\n\n#### Node enhancement: Multiple methods, one Webhook node\n\nThe Webhook Trigger node can now handle calls to multiple HTTP methods. Refer to the [Webhook node documentation](../../integrations/builtin/core-nodes/n8n-nodes-base.webhook/common-issues/#listen-for-multiple-http-methods) for information on enabling this.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Bram Kn](https://github.com/bramkn)\n\n## n8n@1.38.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.38.0...n8n@1.38.1) for this version.\\\n**Release date:** 2024-04-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.37.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.2...n8n@1.37.3) for this version.\\\n**Release date:** 2024-04-18\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.38.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.2...n8n@1.38.0) for this version.\\\n**Release date:** 2024-04-17\n\nThis release contains new nodes, bug fixes, and node enhancements.\n\n#### New node: Google Gemini Chat Model\n\nThis release adds the [Google Gemini Chat Model sub-node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglegemini/).\n\n#### New node: Embeddings Google Gemini\n\nThis release adds the [Google Gemini Embeddings sub-node](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglegemini/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Chengyou Liu](https://github.com/cyliu0)\\\n[Francesco Mannino](https://github.com/manninofrancesco)\n\n## n8n@1.37.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.1...n8n@1.37.2) for this version.\\\n**Release date:** 2024-04-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.36.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.3...n8n@1.36.4) for this version.\\\n**Release date:** 2024-04-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.36.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.2...n8n@1.36.3) for this version.\\\n**Release date:** 2024-04-12\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.37.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.37.0...n8n@1.37.1) for this version.\\\n**Release date:** 2024-04-11\n\nBreaking change\n\nPlease note that this version contains a breaking change for self-hosted n8n. It removes the `--file` flag for the `execute` CLI command. If you have scripts relying on the `--file` flag, update them to first import the workflow and then execute it using the `--id` flag. Refer to [CLI commands](../../hosting/cli-commands/) for more information on CLI options.\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.36.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.1...n8n@1.36.2) for this version.\\\n**Release date:** 2024-04-11\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.37.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.1...n8n@1.37.0) for this version.\\\n**Release date:** 2024-04-10\n\nBreaking change\n\nPlease note that this version contains a breaking change for self-hosted n8n. It removes the `--file` flag for the `execute` CLI command. If you have scripts relying on the `--file` flag, update them to first import the workflow and then execute it using the `--id` flag. Refer to [CLI commands](../../hosting/cli-commands/) for more information on CLI options.\n\nThis release contains a new node, improvements to error handling and messaging, node enhancements, and bug fixes.\n\n#### New node: JWT\n\nThis release adds the [JWT core node](../../integrations/builtin/core-nodes/n8n-nodes-base.jwt/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Miguel Prytoluk](https://github.com/mprytoluk)\n\n## n8n@1.36.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.0...n8n@1.36.1) for this version.\\\n**Release date:** 2024-04-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.36.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.35.0...n8n@1.36.0) for this version.\\\n**Release date:** 2024-04-03\n\nThis release contains new nodes, enhancements and bug fixes.\n\n#### New node: Salesforce Trigger node\n\nThis release adds the [Salesforce Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.salesforcetrigger/).\n\n#### New node: Twilio Trigger node\n\nThis release adds the [Twilio Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.twiliotrigger/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.35.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.34.2...n8n@1.35.0) for this version.\\\n**Release date:** 2024-03-28\n\nThis release contains enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.34.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.34.1...n8n@1.34.2) for this version.\\\n**Release date:** 2024-03-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.34.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.34.0...n8n@1.34.1) for this version.\\\n**Release date:** 2024-03-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.34.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.33.1...n8n@1.34.0) for this version.\\\n**Release date:** 2024-03-20\n\nThis release contains new features, new nodes, and bug fixes.\n\n#### New node: Microsoft OneDrive Trigger node\n\nThis release adds the [Microsoft OneDrive Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftonedrivetrigger/). You can now trigger workflows on file and folder creation and update events.\n\n#### New data transformation functions\n\nThis release introduces new data transformation functions:\n\n**String**\n\n```\ntoDateTime() //replaces toDate(). toDate() is retained for backwards compatability.\nparseJson()\nextractUrlPath()\ntoBoolean()\nbase64Encode()\nbase64Decode()\n```\n\n**Number**\n\n```\ntoDateTime()\ntoBoolean()\n```\n\n**Object**\n\n```\ntoJsonString()\n```\n\n**Array**\n\n```\ntoJsonString()\n```\n\n**Date & DateTime**\n\n```\ntoDateTime()\ntoInt()\n```\n\n**Boolean**\n\n```\ntoInt()\n```\n\n### Contributors\n\n[Bram Kn](https://github.com/bramkn)\\\n[pemontto](https://github.com/pemontto)\n\n## n8n@1.33.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.33.0...n8n@1.33.1) for this version.\\\n**Release date:** 2024-03-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.32.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.32.1...n8n@1.32.2) for this version.\\\n**Release date:** 2024-03-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.33.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.32.1...n8n@1.33.0) for this version.\\\n**Release date:** 2024-03-13\n\nThis release contains new features, node enhancements, and bug fixes.\n\n#### Support for Claude 3\n\nThis release adds support for Claude 3 to the [Anthropic Chat Model](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/) node.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[gumida](https://github.com/gumida)\\\n[Ayato Hayashi](https://github.com/hayashi-ay)\\\n[Jordan](https://github.com/jordanburke)\\\n[MC Naveen](https://github.com/mcnaveen)\n\n## n8n@1.32.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.32.0...n8n@1.32.1) for this version.\\\n**Release date:** 2024-03-07\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.31.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.31.1...n8n@1.31.2) for this version.\\\n**Release date:** 2024-03-07\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.32.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.31.1...n8n@1.32.0) for this version.\\\n**Release date:** 2024-03-06\n\nThis release contains new features, node enhancements, performance improvements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.31.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.31.0...n8n@1.31.1) for this version.\\\n**Release date:** 2024-03-06\n\nBreaking changes\n\nPlease note that this version contains a breaking change. HTTP connections to the editor will fail on domains other than localhost. You can read more about it [here](https://github.com/n8n-io/n8n/blob/master/packages/cli/BREAKING-CHANGES.md#1320).\n\nThis is a bug fix release and it contains a breaking change.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.31.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.30.0...n8n@1.31.0) for this version.\\\n**Release date:** 2024-02-28\n\nThis release contains new features, new nodes, node enhancements and bug fixes.\n\n#### New nodes: Microsoft Outlook trigger and Ollama embeddings\n\nThis release adds two new nodes.\n\n- [Microsoft Outlook Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftoutlooktrigger/)\n- [Ollama Embeddings](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsollama/)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.30.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.30.0...n8n@1.30.1) for this version.\\\n**Release date:** 2024-02-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.30.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.29.1...n8n@1.30.0) for this version.\\\n**Release date:** 2024-02-21\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.29.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.29.0...n8n@1.29.1) for this version.\\\n**Release date:** 2024-02-16\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.29.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.28.0...n8n@1.29.0) for this version.\\\n**Release date:** 2024-02-15\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### New features\n\n#### OpenAI node overhaul\n\nThis release includes a new version of the [OpenAI node](../../integrations/builtin/app-nodes/n8n-nodes-langchain.openai/), adding more operations, including support for working with assistants.\n\nOther highlights:\n\n- Support for AI events in [log streaming](../../log-streaming/).\n- Added support for workflow tags in the [public API](../../api/).\n\n### Contributors\n\n[Bruno Inec](https://github.com/sweenu)\\\n[Jesús Burgers](https://github.com/jburgers-chakray)\n\n## n8n@1.27.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.27.2...n8n@1.27.3) for this version.\\\n**Release date:** 2024-02-15\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.28.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.27.2...n8n@1.28.0) for this version.\\\n**Release date:** 2024-02-07\n\nThis release contains new features, new nodes, node enhancements and bug fixes.\n\n#### New nodes: Azure OpenAI chat model and embeddings\n\nThis release adds two new nodes to work with [Azure OpenAI](https://azure.microsoft.com/en-gb/products/ai-services/openai-service/) in your advanced AI workflows:\n\n- [Embeddings Azure OpenAI](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsazureopenai/)\n- [Azure OpenAI Chat Model](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatazureopenai/)\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Andrea Ascari](https://github.com/ascariandrea)\n\n## n8n@1.27.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.27.1...n8n@1.27.2) for this version.\\\n**Release date:** 2024-02-02\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.27.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.26.0...n8n@1.27.1) for this version.\\\n**Release date:** 2024-01-31\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.27.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.26.0...n8n@1.27.0) for this version.\\\n**Release date:** 2024-01-31\n\nBreaking change\n\nThis release removes `own` mode for self-hosted n8n. You must now use `EXECUTIONS_MODE` and set to either `regular` or `queue`. Refer to [Queue mode](../../hosting/scaling/queue-mode/) for information on configuring queue mode.\n\nSkip this release\n\nPlease upgrade directly to 1.27.1.\n\nThis release contains node enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.26.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.25.1...n8n@1.26.0) for this version.\\\n**Release date:** 2024-01-24\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Daniel Schröder](https://github.com/schroedan)\\\n[Nihaal Sangha](https://github.com/nihaals)\n\n## n8n@1.25.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.25.0...n8n@1.25.1) for this version.\\\n**Release date:** 2024-01-22\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Nihaal Sangha](https://github.com/nihaals)\n\n## n8n@1.25.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.24.1...n8n@1.25.0) for this version.\\\n**Release date:** 2024-01-17\n\nThis release contains a new node, feature improvements, and bug fixes.\n\n#### New node: Chat Memory Manager\n\nThe [Chat Memory Manager](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager/) node replaces the Chat Messages Retriever node. It manages chat message memories within your AI workflows.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.24.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.24.0...n8n@1.24.1) for this version.\\\n**Release date:** 2024-01-16\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.6\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.5...n8n@1.22.6) for this version.\\\n**Release date:** 2024-01-10\n\nThis is a bug fix release. It includes important fixes for the HTTP Request and monday.com nodes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.24.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.23.0...n8n@1.24.0) for this version.\\\n**Release date:** 2024-01-10\n\nThis release contains new nodes for advanced AI, node enhancements, new features, performance enhancements, and bug fixes.\n\n#### Chat trigger\n\nn8n has created a new [Chat Trigger node](../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/). The new node provides a chat interface that you can make publicly available, with customization and authentication options.\n\n#### Mistral Cloud Chat and Embeddings\n\nThis release introduces two new nodes to support [Mistral AI](https://mistral.ai/):\n\n- [Mistral Cloud Chat Model](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud/)\n- [Embeddings Mistral Cloud](../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsmistralcloud/)\n\n### Contributors\n\n[Anush](https://github.com/Anush008)\\\n[Eric Koleda](https://github.com/ekoleda-codaio)\\\n[Mason Geloso](https://github.com/MasonGeloso)\\\n[vacitbaydarman](https://github.com/vacitbaydarman)\n\n## n8n@1.22.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.4...n8n@1.22.5) for this version.\\\n**Release date:** 2024-01-09\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.23.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.4...n8n@1.23.0) for this version.\\\n**Release date:** 2024-01-03\n\nThis release contains new nodes, node enhancements, new features, and bug fixes.\n\n#### New nodes and improved experience for working with files\n\nThis release includes a major overhaul of nodes relating to files (binary data).\n\nThere are now three key nodes dedicated to handling binary data files:\n\n- [Read/Write Files from Disk](../../integrations/builtin/core-nodes/n8n-nodes-base.readwritefile/) to read and write files from/to the machine where n8n is running.\n- [Convert to File](../../integrations/builtin/core-nodes/n8n-nodes-base.converttofile/) to take input data and output it as a file.\n- [Extract From File](../../integrations/builtin/core-nodes/n8n-nodes-base.extractfromfile/) to get data from a binary format and convert it to JSON.\n\nn8n has moved support for iCalendar, PDF, and spreadsheet formats into these nodes, and removed the iCalendar, Read PDF, and Spreadsheet File nodes. There are still standalone nodes for [HTML](../../integrations/builtin/core-nodes/n8n-nodes-base.html/) and [XML](../../integrations/builtin/core-nodes/n8n-nodes-base.xml/).\n\n#### New node: Qdrant vector store\n\nThis release adds support for [Qdrant](https://qdrant.tech/) with the Qdrant vector store node.\n\nRead n8n's [Qdrant vector store node documentation](../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant/)\n\n### Contributors\n\n[Aaron Gutierrez](https://github.com/aarongut)\\\n[Advaith Gundu](https://github.com/geodic)\\\n[Anush](https://github.com/Anush008)\\\n[Bin](https://github.com/soulhat)\\\n[Nihaal Sangha](https://github.com/nihaals)\n\n## n8n@1.22.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.3...n8n@1.22.4) for this version.\\\n**Release date:** 2024-01-03\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.2...n8n@1.22.3) for this version.\\\n**Release date:** 2023-12-27\n\nUpgrade directly to 1.22.4\n\nDue to issues with this release, upgrade directly to 1.22.4.\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.1...n8n@1.22.2) for this version.\\\n**Release date:** 2023-12-27\n\nUpgrade directly to 1.22.4\n\nDue to issues with this release, upgrade directly to 1.22.4.\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.22.0...n8n@1.22.1) for this version.\\\n**Release date:** 2023-12-21\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.22.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.21.1...n8n@1.22.0) for this version.\\\n**Release date:** 2023-12-21\n\nThis release contains node enhancements, new features, performance improvements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.18.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.3...n8n@1.18.4) for this version.\\\n**Release date:** 2023-12-19\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.21.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.20.0...n8n@1.21.1) for this version.\\\n**Release date:** 2023-12-15\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.18.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.2...n8n@1.18.3) for this version.\\\n**Release date:** 2023-12-15\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.21.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.20.0...n8n@1.21.0) for this version.\\\n**Release date:** 2023-12-13\n\nThis release contains new features and nodes, node enhancements, and bug fixes.\n\n#### New user role: Admin\n\nThis release introduces a third account type: admin. This role is available on pro and enterprise plans. Admins have similar permissions to instance owners.\n\n[Read more about user roles](../../user-management/account-types/)\n\n#### New data transformation nodes\n\nThis release replaces the Item Lists node with a collection of nodes for data transformation tasks:\n\n- [Aggregate](../../integrations/builtin/core-nodes/n8n-nodes-base.aggregate/): take separate items, or portions of them, and group them together into individual items.\n- [Limit](../../integrations/builtin/core-nodes/n8n-nodes-base.aggregate/): remove items beyond a defined maximum number.\n- [Remove Duplicates](../../integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates/): identify and delete items that are identical across all fields or a subset of fields.\n- [Sort](../../integrations/builtin/core-nodes/n8n-nodes-base.sort/): organize lists of in a desired ordering, or generate a random selection.\n- [Split Out](../../integrations/builtin/core-nodes/n8n-nodes-base.splitout/): separate a single data item containing a list into multiple items.\n- [Summarize](../../integrations/builtin/core-nodes/n8n-nodes-base.summarize/): aggregate items together, in a manner similar to Excel pivot tables.\n\n#### Increased sharing permissions for owners and admins\n\nInstance owners and users with the admin role can now see and share all workflows and credentials. They can't view sensitive credential information.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.20.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.5...n8n@1.20.0) for this version.\\\n**Release date:** 2023-12-06\n\nThis release contains bug fixes, node enhancements, and ongoing new feature work.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Andrey Starostin](https://github.com/mayorandrew)\n\n## n8n@1.19.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.4...n8n@1.19.5) for this version.\\\n**Release date:** 2023-12-05\n\nThis is a bug fix release.\n\nBreaking change\n\nThis release removes the TensorFlow Embeddings node.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.18.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.1...n8n@1.18.2) for this version.\\\n**Release date:** 2023-12-05\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.19.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.0...n8n@1.19.4) for this version.\\\n**Release date:** 2023-12-01\n\nMissing ARM v7 support\n\nThis version doesn't support ARM v7. n8n is working on fixing this in future releases.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.19.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.0...n8n@1.19.0) for this version.\\\n**Release date:** 2023-11-29\n\nUpgrade directly to 1.19.4\n\nDue to issues with this release, upgrade directly to 1.19.4.\n\nThis release contains new features, node enhancements, and bug fixes.\n\n#### LangChain general availability\n\nThis release adds LangChain support to the main n8n version. Refer to [LangChain](../../advanced-ai/langchain/overview/) for more information on how to build AI tools in n8n, the new nodes n8n has introduced, and related learning resources.\n\n#### Show avatars of users working on the same workflow\n\nThis release improves the experience of users collaborating on workflows. You can now see who else is editing at the same time as you.\n\n## n8n@1.18.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.0...n8n@1.18.1) for this version.\\\n**Release date:** 2023-11-30\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.18.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.17.1...n8n@1.18.0) for this version.\\\n**Release date:** 2023-11-22\n\nThis release contains new features and bug fixes.\n\n#### Template creator hub\n\nBuilt a template you want to share? This release introduces the n8n Creator hub. Refer to the [creator hub Notion doc](https://www.notion.so/n8n-Creator-hub-7bd2cbe0fce0449198ecb23ff4a2f76f) for more information on this project.\n\n#### Node input and output search filter\n\nCloud Pro and Enterprise users can now search and filter the input and output data in nodes. Refer to [Data filtering](../../data/data-filtering/) for more information.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.17.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.17.0...n8n@1.17.1) for this version.\\\n**Release date:** 2023-11-17\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.17.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.16.0...n8n@1.17.0) for this version.\\\n**Release date:** 2023-11-15\n\nThis release contains node enhancements and bug fixes.\n\n#### Sticky Note Colors\n\nYou can now select background colors for sticky notes.\n\n#### Discord Node Overhaul\n\nAn overhaul of the Discord node, improving the UI making it easier to configure, improving error handling, and fixing issues.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[antondollmaier](https://github.com/antondollmaier)\\\n[teomane](https://github.com/teomane)\n\n## n8n@1.16.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.15.2...n8n@1.16.0) for this version.\\\n**Release date:** 2023-11-08\n\nThis release contains node enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.15.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.15.1...n8n@1.15.2) for this version.\\\n**Release date:** 2023-11-07\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.15.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.14.2...n8n@1.15.1) for this version.\\\n**Release date:** 2023-11-02\n\nThis release contains new features, node enhancements, and bug fixes.\n\n#### Workflow history\n\nThis release introduces workflow history: view and load previous versions of your workflows.\n\nWorkflow history is available in Enterprise n8n, and with limited history for Cloud Pro.\n\nLearn more in the [Workflow history](../../workflows/history/) documentation.\n\n#### Dark mode\n\n*Almost* in time for Halloween: this release introduces dark mode.\n\nTo enable dark mode:\n\n1. Select **Settings** > **Personal**.\n1. Under **Personalisation**, change **Theme** to **Dark theme**.\n\n#### Optional error output for nodes\n\nAll nodes apart from sub-nodes and trigger nodes have a new optional output: **Error**. Use this to add steps to handle node errors.\n\n#### Pagination support added to HTTP Request node\n\nThe HTTP Request node now supports an pagination. Read the [node docs](../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/) for information and examples.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Yoshino-s](https://github.com/Yoshino-s)\n\n## n8n@1.14.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.14.1...n8n@1.14.2) for this version.\\\n**Release date:** 2023-10-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.14.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.14.0...n8n@1.14.1) for this version.\\\n**Release date:** 2023-10-26\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.14.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.13.0...n8n@1.14.0) for this version.\\\n**Release date:** 2023-10-25\n\nThis release contains node enhancements and bug fixes.\n\n#### Switch node supports more outputs\n\nThe [Switch node](../../integrations/builtin/core-nodes/n8n-nodes-base.switch/) now supports an unlimited number of outputs.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.13.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.12.2...n8n@1.13.0) for this version.\\\n**Release date:** 2023-10-25\n\nThis release contains new features, feature enhancements, and bug fixes.\n\nUpgrade directly to 1.14.0\n\nThis release failed to publish to npm. Upgrade directly to 1.14.0.\n\n#### RSS Feed Trigger node\n\nThis releases introduces a new node, the [RSS Feed Trigger](../../integrations/builtin/core-nodes/n8n-nodes-base.rssfeedreadtrigger/). Use this node to start a workflow when a new RSS feed item is published.\n\n#### Facebook Lead Ads Trigger node\n\nThis releases add another new node, the [Facebook Lead Ads Trigger](../../integrations/builtin/trigger-nodes/n8n-nodes-base.facebookleadadstrigger/). Use this node to trigger a workflow when you get a new lead.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.12.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.12.1...n8n@1.12.2) for this version.\\\n**Release date:** 2023-10-24\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Burak Akgün](https://github.com/mbakgun)\n\n## n8n@1.12.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.12.0...n8n@1.12.1) for this version.\\\n**Release date:** 2023-10-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Léo Martinez](https://github.com/martinezleoml)\n\n## n8n@1.11.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.11.1...n8n@1.11.2) for this version.\\\n**Release date:** 2023-10-23\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Inga](https://github.com/inga-lovinde)\\\n[pemontto](https://github.com/pemontto)\n\n## n8n@1.12.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.11.1...n8n@1.12.0) for this version.\\\n**Release date:** 2023-10-18\n\nThis release contains new features, node enhancements, and bug fixes.\n\n#### Form Trigger node\n\nThis releases introduces a new node, the [n8n Form Trigger](../../integrations/builtin/core-nodes/n8n-nodes-base.formtrigger/). Use this node to start a workflow based on a user submitting a form. It provides a configurable form interface.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Damian Karzon](https://github.com/dkarzon)\\\n[Inga](https://github.com/inga-lovinde)\\\n[pemontto](https://github.com/pemontto)\n\n## n8n@1.11.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.11.0...n8n@1.11.1) for this version.\\\n**Release date:** 2023-10-13\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.11.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.10.1...n8n@1.11.0) for this version.\\\n**Release date:** 2023-10-11\n\nThis release contains new features and bug fixes.\n\n#### External storage for binary files\n\nSelf-hosted users can now use an external service to store binary data. Learn more in [External storage](../../hosting/scaling/external-storage/).\n\nIf you're using n8n Cloud and are interested in this feature, please [contact n8n](https://n8n-community.typeform.com/to/y9X2YuGa).\n\n#### Item Lists node supports binary data\n\nThe Item Lists node now supports splitting and concatenating binary data inputs. This means you no longer need to use code to split a collection of files into multiple items.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.10.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.10.0...n8n@1.10.1) for this version.\\\n**Release date:** 2023-10-11\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.9.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.9.2...n8n@1.9.3) for this version.\\\n**Release date:** 2023-10-10\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.9.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.9.1...n8n@1.9.2) for this version.\\\n**Release date:** 2023-10-09\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.10.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.9.1...n8n@1.10.0) for this version.\\\n**Release date:** 2023-10-05\n\nThis release contains bug fixes and preparatory work for new features.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.9.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.9.0...n8n@1.9.1) for this version.\\\n**Release date:** 2023-10-04\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## LangChain in n8n (beta)\n\n**Release date:** 2023-10-04\n\nThis release introduces support for building with LangChain in n8n.\n\nWith n8n's LangChain nodes you can build AI-powered functionality within your workflows. The LangChain nodes are configurable, meaning you can choose your preferred agent, LLM, memory, and other components. Alongside the LangChain nodes, you can connect any n8n node as normal: this means you can integrate your LangChain logic with other data sources and services.\n\nRead more:\n\n- This is a beta release, and not yet available in the main product. Follow the instructions in [Access LangChain in n8n](../../advanced-ai/langchain/overview/) to try it out. Self-hosted and Cloud options are available.\n- Learn how LangChain concepts map to n8n nodes in [LangChain concepts in n8n](../../advanced-ai/langchain/langchain-n8n/).\n- Browse n8n's new [Cluster nodes](../../integrations/builtin/cluster-nodes/). This is a new set of node types that allows for multiple nodes to work together to configure each other.\n\n## n8n@1.9.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.8.2...n8n@1.9.0) for this version.\\\n**Release date:** 2023-09-28\n\nThis release contains new features, performance improvements, and bug fixes.\n\n#### Tournament\n\nThis releases replaces RiotTmpl, the templating language used in expressions, with n8n's own templating language, [Tournament](https://github.com/n8n-io/tournament). You can now use arrow functions in expressions.\n\n#### `N8N_BINARY_DATA_TTL` and `EXECUTIONS_DATA_PRUNE_TIMEOUT` removed\n\nThe environment variables `N8N_BINARY_DATA_TTL` and `EXECUTIONS_DATA_PRUNE_TIMEOUT` no longer have any effect and can be removed. Instead of relying on a TTL system for binary data, n8n cleans up binary data together with executions during pruning.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.8.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.8.1...n8n@1.8.2) for this version.\\\n**Release date:** 2023-09-25\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.8.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.8.0...n8n@1.8.1) for this version.\\\n**Release date:** 2023-09-21\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.8.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.7.1...n8n@1.8.0) for this version.\\\n**Release date:** 2023-09-20\n\nThis release contains node enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.7.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.7.0...n8n@1.7.1) for this version.\\\n**Release date:** 2023-09-14\n\nThis release contains bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.7.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.6.1...n8n@1.7.0) for this version.\\\n**Release date:** 2023-09-13\n\nThis release contains node enhancements and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Quang-Linh LE](https://github.com/linktohack)\\\n[MC Naveen](https://github.com/mcnaveen)\n\n## n8n@1.6.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.6.0...n8n@1.6.1) for this version.\\\n**Release date:** 2023-09-06\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.6.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.5.1...n8n@1.6.0) for this version.\\\n**Release date:** 2023-09-06\n\nThis release contains bug fixes, new features, and node enhancements.\n\nUpgrade directly to 1.6.1\n\nSkip this version and upgrade directly to 1.6.1, which contains essential bug fixes.\n\n#### TheHive 5\n\nThis release introduces support for TheHive API version 5. This uses a new node and credentials:\n\n- [TheHive 5 node](../../integrations/builtin/app-nodes/n8n-nodes-base.thehive5/)\n- [TheHive 5 Trigger node](../../integrations/builtin/trigger-nodes/n8n-nodes-base.thehive5trigger/)\n- [TheHive 5 credentials](../../integrations/builtin/credentials/thehive5/)\n\n#### `N8N_PERSISTED_BINARY_DATA_TTL` removed\n\nThe environment variables `N8N_PERSISTED_BINARY_DATA_TTL` no longer has any effect and can be removed. This legacy flag was originally introduced to support ephemeral executions (see [details](https://github.com/n8n-io/n8n/pull/7046)), which are no longer supported.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.5.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.5.0...n8n@1.5.1) for this version.\\\n**Release date:** 2023-08-31\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.5.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.4.1...n8n@1.5.0) for this version.\\\n**Release date:** 2023-08-31\n\nThis release contains new features, node enhancements, and bug fixes.\n\nUpgrade directly to 1.5.1\n\nSkip this version and upgrade directly to 1.5.1, which contains essential bug fixes.\n\n### Highlights\n\n#### External secrets storage for credentials\n\nEnterprise-tier accounts can now use external secrets vaults to manage credentials in n8n. This allows you to store credential information securely outside your n8n instance. n8n supports Infisical and HashiCorp Vault.\n\nRefer to [External secrets](../../external-secrets/) for guidance on enabling and using this feature.\n\n#### Two-factor authentication\n\nn8n now supports two-factor authentication (2FA) for self-hosted instances. n8n is working on bringing support to Cloud. Refer to [Two-factor authentication](../../user-management/two-factor-auth/) for guidance on enabling and using it.\n\n#### Debug executions\n\nUsers on a paid n8n plan can now load data from previous executions into their current workflow. This is useful when debugging a failed execution.\n\nRefer to [Debug executions](../../workflows/executions/debug/) for guidance on using this feature.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.4.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.4.0...n8n@1.4.1) for this version.\\\n**Release date:** 2023-08-29\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.4.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.3.1...n8n@1.4.0) for this version.\\\n**Release date:** 2023-08-23\n\nThis release contains new features, node enhancements, and bug fixes.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[pemontto](https://github.com/pemontto)\n\n## n8n@1.3.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.3.0...n8n@1.3.1) for this version.\\\n**Release date:** 2023-08-18\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.3.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.2.2...n8n@1.3.0) for this version.\\\n**Release date:** 2023-08-16\n\nThis release contains new features and bug fixes.\n\n### Highlights\n\n#### Trial feature: AI support in the Code node\n\nThis release introduces limited support for using AI to generate code in the Code node. Initially this feature is only available on Cloud, and will gradually be rolled out, starting with about 20% of users.\n\nLearn how to use the feature, including guidance on writing prompts, in [Generate code with ChatGPT](../../code/ai-code/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Ian Gallagher](https://github.com/craSH)\\\n[Xavier Calland](https://github.com/xavier-calland)\n\n## n8n@1.2.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.2.1...n8n@1.2.2) for this version.\\\n**Release date:** 2023-08-14\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.2.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.2.0...n8n@1.2.1) for this version.\\\n**Release date:** 2023-08-09\n\nThis is a bug fix release.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.2.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.1.1...n8n@1.2.0) for this version.\\\n**Release date:** 2023-08-09\n\nThis release contains new features, node enhancements, bug fixes, and performance improvements.\n\nUpgrade directly to 1.2.1\n\nWhen upgrading, skip this release and go directly to 1.2.1.\n\n### Highlights\n\n#### Credential support for SecOps services\n\nThis release introduces support for setting up credentials in n8n for the following services:\n\n- [AlienVault](../../integrations/builtin/credentials/alienvault/)\n- [Auth0 Management](../../integrations/builtin/credentials/auth0management/)\n- [Carbon Black API](../../integrations/builtin/credentials/carbonblack/)\n- [Cisco Meraki API](../../integrations/builtin/credentials/ciscomeraki/)\n- [Cisco Secure Endpoint](../../integrations/builtin/credentials/ciscosecureendpoint/)\n- [Cisco Umbrella API](../../integrations/builtin/credentials/ciscoumbrella/)\n- [CrowdStrike](../../integrations/builtin/credentials/crowdstrike/)\n- [F5 Big-IP](../../integrations/builtin/credentials/f5bigip/)\n- [Fortinet FortiGate](../../integrations/builtin/credentials/fortigate/)\n- [Hybrid Analysis](../../integrations/builtin/credentials/hybridanalysis/)\n- [Imperva WAF](../../integrations/builtin/credentials/impervawaf/)\n- [Kibana](../../integrations/builtin/credentials/kibana/)\n- [Microsoft Entra ID](../../integrations/builtin/credentials/microsoftentra/)\n- [Mist](../../integrations/builtin/credentials/mist/)\n- [Okta](../../integrations/builtin/credentials/okta/)\n- [OpenCTI](../../integrations/builtin/credentials/opencti/)\n- [QRadar](../../integrations/builtin/credentials/qradar/)\n- [Qualys](../../integrations/builtin/credentials/qualys/)\n- [Recorded Future](../../integrations/builtin/credentials/recordedfuture/)\n- [Sekoia](../../integrations/builtin/credentials/sekoia/)\n- [Shuffler](../../integrations/builtin/credentials/shuffler/)\n- [Trellix ePO](../../integrations/builtin/credentials/trellixepo/)\n- [VirusTotal](../../integrations/builtin/credentials/virustotal/)\n- [Zscaler ZIA](../../integrations/builtin/credentials/zscalerzia/)\n\nThis makes it easier to do [Custom operations](../../integrations/custom-operations/) with these services, using the [HTTP Request](../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/) node.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.1.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.1.0...n8n@1.1.1) for this version.\\\n**Release date:** 2023-07-27\n\nThis is a bug fix release.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.1.0\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.5...n8n@1.1.0) for this version.\\\n**Release date:** 2023-07-26\n\nThis release contains new features, bug fixes, and node enhancements.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\n### Highlights\n\n#### Source control and environments\n\nThis release introduces source control and environments for enterprise users.\n\nn8n uses Git-based source control to support environments. Linking your n8n instances to a Git repository lets you create multiple n8n environments, backed by Git branches.\n\nRefer to [Source control and environments](../../source-control-environments/) to learn more about the features and set up your environments.\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Adrián Martínez](https://github.com/adrian-martinez-vdshop)\\\n[Alberto Pasqualetto](https://github.com/albertopasqualetto)\\\n[Marten Steketee](https://github.com/Marten-S)\\\n[perseus-algol](https://github.com/perseus-algol)\\\n[Sandra Ashipala](https://github.com/sandramsc)\\\n[ZergRael](https://github.com/ZergRael)\n\n## n8n@1.0.5\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.4...n8n@1.0.5) for this version.\\\n**Release date:** 2023-07-24\n\nThis is a bug fix release.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n## n8n@1.0.4\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.3...n8n@1.0.4) for this version.\\\n**Release date:** 2023-07-19\n\nThis is a bug fix release.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Romain Dunand](https://github.com/airmoi)\\\n[noctarius aka Christoph Engelbert](https://github.com/noctarius)\n\n## n8n@1.0.3\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.2...n8n@1.0.3) for this version.\\\n**Release date:** 2023-07-13\n\nThis release contains API enhancements and adds support for sending messages to forum threads in the Telegram node.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nFor full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases) on GitHub.\n\n### Contributors\n\n[Kirill](https://github.com/chrtkv)\n\n## n8n@1.0.2\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.1...n8n@1.0.2) for this version.\\\n**Release date:** 2023-07-05\n\nThis is a bug fix release.\n\nBreaking changes\n\nPlease note that this version contains breaking changes if upgrading from a `0.x.x` version. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\n### Contributors\n\n[Romain Dunand](https://github.com/airmoi)\n\n## n8n@1.0.1\n\nView the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.0.0...n8n@1.0.1) for this version.\\\n**Release date:** 2023-07-05\n\nBreaking changes\n\nPlease note that this version contains breaking changes. For full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\nThis is n8n's version one release.\n\nFor full details, refer to the [n8n v1.0 migration guide](../../1-0-migration-checklist/).\n\n### Highlights\n\n#### Python support\n\nAlthough JavaScript remains the default language, you can now also select Python as an option in the [Code node](../../code/code-node/) and even make use of [many Python modules](https://pyodide.org/en/stable/usage/packages-in-pyodide.html#packages-in-pyodide). Note that Python is unavailable in Code nodes added to a workflow before v1.0.\n\n### Contributors\n\n[Marten Steketee](https://github.com/Marten-S)\n",
|
|
88054
|
+
"excerpt": "# Source control and environments Feature availability - Available on Business and Enterprise plans. - You must be an n8n instance owner or instance admin to enable and configure source control. - Instance owners and instance admins can push changes to and pull changes from the connected repository. - Project admins can push changes to the connected repository. They can't pull changes from the repository. n8n uses Git-based source control to support environments. Linking your n8n instances to...",
|
|
88049
88055
|
"sections": [
|
|
88050
88056
|
{
|
|
88051
|
-
"title": "
|
|
88057
|
+
"title": "Source control and environments",
|
|
88052
88058
|
"level": 1,
|
|
88053
|
-
"content": "
|
|
88059
|
+
"content": "Feature availability\n\n- Available on Business and Enterprise plans.\n- You must be an n8n instance owner or instance admin to enable and configure source control.\n- Instance owners and instance admins can push changes to and pull changes from the connected repository.\n- Project admins can push changes to the connected repository. They can't pull changes from the repository.\n\nn8n uses Git-based source control to support environments. Linking your n8n instances to a Git repository lets you create multiple n8n environments, backed by Git branches.\n\nIn this section:\n\n- [Understand](understand/):\n - [Environments in n8n](understand/environments/): The purpose of environments, and how they work in n8n.\n - [Git and n8n](understand/git/): How n8n uses Git.\n - [Branch patterns](understand/patterns/): The possible relationships between n8n instances and Git branches.\n- [Set up source control for environments](setup/): How to connect your n8n instance to Git.\n- [Using](using/):\n - [Push and pu"
|
|
88054
88060
|
}
|
|
88055
88061
|
]
|
|
88056
88062
|
},
|
|
@@ -88356,7 +88362,7 @@
|
|
|
88356
88362
|
"relatedPages": []
|
|
88357
88363
|
},
|
|
88358
88364
|
"searchIndex": {
|
|
88359
|
-
"fullText": "1.x # release notes pre 2.0\n\nnew features and bug fixes for n8n.\n\nyou can also view the [releases](https://github.com/n8n-io/n8n/releases) in the github repository.\n\nstable and beta versions\n\nn8n 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).\n\ncurrent `stable`: 2.15.0 current `beta`: 2.16.0\n\n## how to update n8n\n\nthe steps to update your n8n depend on which n8n platform you use. refer to the documentation for your n8n:\n\n- [cloud](../../manage-cloud/update-cloud-version/)\n- self-hosted options:\n - [npm](../../hosting/installation/npm/)\n - [docker](../../hosting/installation/docker/)\n\n## semantic versioning in n8n\n\nn8n uses [semantic versioning](https://semver.org/). all version numbers are in the format `major.minor.patch`. version numbers increment as follows:\n\n- major version when making incompatible changes which can require user action.\n- minor version when adding functionality in a backward-compatible manner.\n- patch version when making backward-compatible bug fixes.\n\nolder versions\n\nyou can find the release notes for older versions of n8n [here](../0-x/)\n\n## n8n@1.123.29\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.28...n8n@1.123.29) for this version.\\\n**release date:** 2026-04-07\n\nthis release contains a bug fix.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.28\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.27...n8n@1.123.28) for this version.\\\n**release date:** 2026-04-02\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.27\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.26...n8n@1.123.27) for this version.\\\n**release date:** 2026-03-25\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.26\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.25...n8n@1.123.26) for this version.\\\n**release date:** 2026-03-25\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.25\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.24...n8n@1.123.25) for this version.\\\n**release date:** 2026-03-13\n\nthis release contains a bug fix.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.24\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.23...n8n@1.123.24) for this version.\\\n**release date:** 2026-03-13\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.23\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.22...n8n@1.123.23) for this version.\\\n**release date:** 2026-03-04\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.22\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.21...n8n@1.123.22) for this version.\\\n**release date:** 2026-02-25\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.20\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.19...n8n@1.123.20) for this version.\\\n**release date:** 2026-02-06\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.19\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.18...n8n@1.123.19) for this version.\\\n**release date:** 2026-02-06\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.18\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.17...n8n@1.123.18) for this version.\\\n**release date:** 2026-01-29\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.16\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.15...n8n@1.123.16) for this version.\\\n**release date:** 2026-01-16\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.15\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.14...n8n@1.123.15) for this version.\\\n**release date:** 2026-01-15\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.13\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.12...n8n@1.123.13) for this version.\\\n**release date:** 2026-01-13\n\nthis release contains a bug fix.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.12\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.11...n8n@1.123.12) for this version.\\\n**release date:** 2026-01-13\n\nthis release contains a bug fix.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.11\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.10...n8n@1.123.11) for this version.\\\n**release date:** 2026-01-08\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.10\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.9...n8n@1.123.10) for this version.\\\n**release date:** 2025-12-31\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.9\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.8...n8n@1.123.9) for this version.\\\n**release date:** 2025-12-23\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.8\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.7...n8n@1.123.8) for this version.\\\n**release date:** 2025-12-22\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.7\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.6...n8n@1.123.7) for this version.\\\n**release date:** 2025-12-17\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.6\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.5...n8n@1.123.6) for this version.\\\n**release date:** 2025-12-15\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.5\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.4...n8n@1.123.5) for this version.\\\n**release date:** 2025-12-10\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.3\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.2...n8n@1.123.3) for this version.\\\n**release date:** 2025-12-05\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.2\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.1...n8n@1.123.2) for this version.\\\n**release date:** 2025-12-04\n\nnext version\n\nthis is the `next` version. n8n recommends using the `latest` version. the `next` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.1\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.0...n8n@1.123.1) for this version.\\\n**release date:** 2025-12-03\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.1\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.0...n8n@1.123.1) for this version.\\\n**release date:** 2025-12-03\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.0\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.0...n8n@1.123.0) for this version.\\\n**release date:** 2025-12-01\n\nthis release contains bug fixes.\n\n### contributors\n\n[farzad528](https://github.com/farzad528)\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.122.5\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.4...n8n@1.122.5) for this version.\\\n**release date:** 2025-12-04\n\nlatest version\n\nthis is the `latest` version. n8n recommends using the `latest` version. the `next` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.122.4\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.3...n8n@1.122.4) for this version.\\\n**release date:** 2025-11-28\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.122.3\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n",
|
|
88365
|
+
"fullText": "1.x # source control and environments\n\nfeature availability\n\n- available on business and enterprise plans.\n- you must be an n8n instance owner or instance admin to enable and configure source control.\n- instance owners and instance admins can push changes to and pull changes from the connected repository.\n- project admins can push changes to the connected repository. they can't pull changes from the repository.\n\nn8n uses git-based source control to support environments. linking your n8n instances to a git repository lets you create multiple n8n environments, backed by git branches.\n\nin this section:\n\n- [understand](understand/):\n - [environments in n8n](understand/environments/): the purpose of environments, and how they work in n8n.\n - [git and n8n](understand/git/): how n8n uses git.\n - [branch patterns](understand/patterns/): the possible relationships between n8n instances and git branches.\n- [set up source control for environments](setup/): how to connect your n8n instance to git.\n- [using](using/):\n - [push and pull](using/push-pull/): send work to git, and fetch work from git to your instance.\n - [copy work between environments](using/copy-work/): how to copy work between different n8n instances.\n- [tutorial: create environments with source control](create-environments/): an end-to-end tutorial, setting up environments using n8n's recommended configurations.\n\nrelated sections:\n\n- [variables](../code/variables/): reusable values.\n- [external secrets](../external-secrets/): manage [credentials](../glossary/#credential-n8n) with an external secrets vault.\n/github.com/n8n-io/n8n/compare/n8n@1.123.27...n8n@1.123.28) for this version.\\\n**release date:** 2026-04-02\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.27\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.26...n8n@1.123.27) for this version.\\\n**release date:** 2026-03-25\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.26\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.25...n8n@1.123.26) for this version.\\\n**release date:** 2026-03-25\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.25\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.24...n8n@1.123.25) for this version.\\\n**release date:** 2026-03-13\n\nthis release contains a bug fix.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.24\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.23...n8n@1.123.24) for this version.\\\n**release date:** 2026-03-13\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.23\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.22...n8n@1.123.23) for this version.\\\n**release date:** 2026-03-04\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.22\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.21...n8n@1.123.22) for this version.\\\n**release date:** 2026-02-25\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.20\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.19...n8n@1.123.20) for this version.\\\n**release date:** 2026-02-06\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.19\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.18...n8n@1.123.19) for this version.\\\n**release date:** 2026-02-06\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.18\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.17...n8n@1.123.18) for this version.\\\n**release date:** 2026-01-29\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.16\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.15...n8n@1.123.16) for this version.\\\n**release date:** 2026-01-16\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.15\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.14...n8n@1.123.15) for this version.\\\n**release date:** 2026-01-15\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.13\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.12...n8n@1.123.13) for this version.\\\n**release date:** 2026-01-13\n\nthis release contains a bug fix.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.12\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.11...n8n@1.123.12) for this version.\\\n**release date:** 2026-01-13\n\nthis release contains a bug fix.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.11\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.10...n8n@1.123.11) for this version.\\\n**release date:** 2026-01-08\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.10\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.9...n8n@1.123.10) for this version.\\\n**release date:** 2025-12-31\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.9\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.8...n8n@1.123.9) for this version.\\\n**release date:** 2025-12-23\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.8\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.7...n8n@1.123.8) for this version.\\\n**release date:** 2025-12-22\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.7\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.6...n8n@1.123.7) for this version.\\\n**release date:** 2025-12-17\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.6\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.5...n8n@1.123.6) for this version.\\\n**release date:** 2025-12-15\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.5\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.4...n8n@1.123.5) for this version.\\\n**release date:** 2025-12-10\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.3\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.2...n8n@1.123.3) for this version.\\\n**release date:** 2025-12-05\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.2\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.1...n8n@1.123.2) for this version.\\\n**release date:** 2025-12-04\n\nnext version\n\nthis is the `next` version. n8n recommends using the `latest` version. the `next` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.1\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.0...n8n@1.123.1) for this version.\\\n**release date:** 2025-12-03\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.1\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.123.0...n8n@1.123.1) for this version.\\\n**release date:** 2025-12-03\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.123.0\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.0...n8n@1.123.0) for this version.\\\n**release date:** 2025-12-01\n\nthis release contains bug fixes.\n\n### contributors\n\n[farzad528](https://github.com/farzad528)\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.122.5\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.4...n8n@1.122.5) for this version.\\\n**release date:** 2025-12-04\n\nlatest version\n\nthis is the `latest` version. n8n recommends using the `latest` version. the `next` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.122.4\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.122.3...n8n@1.122.4) for this version.\\\n**release date:** 2025-11-28\n\nthis release contains bug fixes.\n\nfor full release details, refer to [releases](https://github.com/n8n-io/n8n/releases) on github.\n\n## n8n@1.122.3\n\nview the [commits](https://github.com/n8n-io/n8n/compare/n8n",
|
|
88360
88366
|
"importantTerms": [
|
|
88361
88367
|
"github",
|
|
88362
88368
|
"release",
|
|
@@ -88393,80 +88399,21 @@
|
|
|
88393
88399
|
"features",
|
|
88394
88400
|
"improvements",
|
|
88395
88401
|
"langchain",
|
|
88396
|
-
"
|
|
88402
|
+
"changes",
|
|
88397
88403
|
"credentials",
|
|
88404
|
+
"that",
|
|
88398
88405
|
"users",
|
|
88399
|
-
"changes",
|
|
88400
|
-
"agent",
|
|
88401
88406
|
"support",
|
|
88407
|
+
"agent",
|
|
88402
88408
|
"added",
|
|
88403
|
-
"when",
|
|
88404
88409
|
"editor",
|
|
88410
|
+
"using",
|
|
88405
88411
|
"chat",
|
|
88412
|
+
"instance",
|
|
88413
|
+
"when",
|
|
88406
88414
|
"access",
|
|
88407
|
-
"using",
|
|
88408
88415
|
"breaking",
|
|
88409
|
-
"
|
|
88410
|
-
"instance"
|
|
88411
|
-
]
|
|
88412
|
-
}
|
|
88413
|
-
},
|
|
88414
|
-
{
|
|
88415
|
-
"id": "page-1206",
|
|
88416
|
-
"title": "Source control and environments",
|
|
88417
|
-
"url": "https://docs.n8n.io/source-control-environments/index.md",
|
|
88418
|
-
"urlPath": "source-control-environments/index.md",
|
|
88419
|
-
"category": "other",
|
|
88420
|
-
"subcategory": null,
|
|
88421
|
-
"nodeName": null,
|
|
88422
|
-
"nodeType": null,
|
|
88423
|
-
"content": {
|
|
88424
|
-
"markdown": "# Source control and environments\n\nFeature availability\n\n- Available on Business and Enterprise plans.\n- You must be an n8n instance owner or instance admin to enable and configure source control.\n- Instance owners and instance admins can push changes to and pull changes from the connected repository.\n- Project admins can push changes to the connected repository. They can't pull changes from the repository.\n\nn8n uses Git-based source control to support environments. Linking your n8n instances to a Git repository lets you create multiple n8n environments, backed by Git branches.\n\nIn this section:\n\n- [Understand](understand/):\n - [Environments in n8n](understand/environments/): The purpose of environments, and how they work in n8n.\n - [Git and n8n](understand/git/): How n8n uses Git.\n - [Branch patterns](understand/patterns/): The possible relationships between n8n instances and Git branches.\n- [Set up source control for environments](setup/): How to connect your n8n instance to Git.\n- [Using](using/):\n - [Push and pull](using/push-pull/): Send work to Git, and fetch work from Git to your instance.\n - [Copy work between environments](using/copy-work/): How to copy work between different n8n instances.\n- [Tutorial: Create environments with source control](create-environments/): An end-to-end tutorial, setting up environments using n8n's recommended configurations.\n\nRelated sections:\n\n- [Variables](../code/variables/): reusable values.\n- [External secrets](../external-secrets/): manage [credentials](../glossary/#credential-n8n) with an external secrets vault.\n",
|
|
88425
|
-
"excerpt": "# Source control and environments Feature availability - Available on Business and Enterprise plans. - You must be an n8n instance owner or instance admin to enable and configure source control. - Instance owners and instance admins can push changes to and pull changes from the connected repository. - Project admins can push changes to the connected repository. They can't pull changes from the repository. n8n uses Git-based source control to support environments. Linking your n8n instances to...",
|
|
88426
|
-
"sections": [
|
|
88427
|
-
{
|
|
88428
|
-
"title": "Source control and environments",
|
|
88429
|
-
"level": 1,
|
|
88430
|
-
"content": "Feature availability\n\n- Available on Business and Enterprise plans.\n- You must be an n8n instance owner or instance admin to enable and configure source control.\n- Instance owners and instance admins can push changes to and pull changes from the connected repository.\n- Project admins can push changes to the connected repository. They can't pull changes from the repository.\n\nn8n uses Git-based source control to support environments. Linking your n8n instances to a Git repository lets you create multiple n8n environments, backed by Git branches.\n\nIn this section:\n\n- [Understand](understand/):\n - [Environments in n8n](understand/environments/): The purpose of environments, and how they work in n8n.\n - [Git and n8n](understand/git/): How n8n uses Git.\n - [Branch patterns](understand/patterns/): The possible relationships between n8n instances and Git branches.\n- [Set up source control for environments](setup/): How to connect your n8n instance to Git.\n- [Using](using/):\n - [Push and pu"
|
|
88431
|
-
}
|
|
88432
|
-
]
|
|
88433
|
-
},
|
|
88434
|
-
"metadata": {
|
|
88435
|
-
"keywords": [
|
|
88436
|
-
"source",
|
|
88437
|
-
"control",
|
|
88438
|
-
"environments"
|
|
88439
|
-
],
|
|
88440
|
-
"useCases": [],
|
|
88441
|
-
"operations": [],
|
|
88442
|
-
"codeExamples": 0,
|
|
88443
|
-
"complexity": "beginner",
|
|
88444
|
-
"readingTime": "2 min",
|
|
88445
|
-
"contentLength": 1587,
|
|
88446
|
-
"relatedPages": []
|
|
88447
|
-
},
|
|
88448
|
-
"searchIndex": {
|
|
88449
|
-
"fullText": "source control and environments # source control and environments\n\nfeature availability\n\n- available on business and enterprise plans.\n- you must be an n8n instance owner or instance admin to enable and configure source control.\n- instance owners and instance admins can push changes to and pull changes from the connected repository.\n- project admins can push changes to the connected repository. they can't pull changes from the repository.\n\nn8n uses git-based source control to support environments. linking your n8n instances to a git repository lets you create multiple n8n environments, backed by git branches.\n\nin this section:\n\n- [understand](understand/):\n - [environments in n8n](understand/environments/): the purpose of environments, and how they work in n8n.\n - [git and n8n](understand/git/): how n8n uses git.\n - [branch patterns](understand/patterns/): the possible relationships between n8n instances and git branches.\n- [set up source control for environments](setup/): how to connect your n8n instance to git.\n- [using](using/):\n - [push and pull](using/push-pull/): send work to git, and fetch work from git to your instance.\n - [copy work between environments](using/copy-work/): how to copy work between different n8n instances.\n- [tutorial: create environments with source control](create-environments/): an end-to-end tutorial, setting up environments using n8n's recommended configurations.\n\nrelated sections:\n\n- [variables](../code/variables/): reusable values.\n- [external secrets](../external-secrets/): manage [credentials](../glossary/#credential-n8n) with an external secrets vault.\n source control and environments",
|
|
88450
|
-
"importantTerms": [
|
|
88451
|
-
"environments",
|
|
88452
|
-
"source",
|
|
88453
|
-
"control",
|
|
88454
|
-
"instance",
|
|
88455
|
-
"work",
|
|
88456
|
-
"understand",
|
|
88457
|
-
"using",
|
|
88458
|
-
"push",
|
|
88459
|
-
"changes",
|
|
88460
|
-
"pull",
|
|
88461
|
-
"repository",
|
|
88462
|
-
"from",
|
|
88463
|
-
"your",
|
|
88464
|
-
"instances",
|
|
88465
|
-
"create",
|
|
88466
|
-
"between",
|
|
88467
|
-
"copy",
|
|
88468
|
-
"external",
|
|
88469
|
-
"secrets"
|
|
88416
|
+
"feature"
|
|
88470
88417
|
]
|
|
88471
88418
|
}
|
|
88472
88419
|
},
|
|
@@ -91407,6 +91354,58 @@
|
|
|
91407
91354
|
},
|
|
91408
91355
|
{
|
|
91409
91356
|
"id": "page-1248",
|
|
91357
|
+
"title": "Tags",
|
|
91358
|
+
"url": "https://docs.n8n.io/workflows/tags/index.md",
|
|
91359
|
+
"urlPath": "workflows/tags/index.md",
|
|
91360
|
+
"category": "workflows",
|
|
91361
|
+
"subcategory": null,
|
|
91362
|
+
"nodeName": null,
|
|
91363
|
+
"nodeType": null,
|
|
91364
|
+
"content": {
|
|
91365
|
+
"markdown": "# Tags\n\nWorkflow tags allow you to label your workflows. You can then filter workflows by tag.\n\nTags are global. This means when you create a tag, it's available to all users on your n8n instance.\n\n## Add a tag to a workflow\n\nTo add a tag to your workflow:\n\n1. In your workflow, select **+ Add tag**.\n1. Select an existing tag, or enter a new tag name.\n1. Once you select a tag and click away from the tag modal, n8n displays the tag next to the workflow name.\n\nYou can add more than one tag.\n\n## Filter by tag\n\nWhen browsing the workflows on your instance, you can filter by tag.\n\n1. On the **Workflows** page, select **Filters**.\n1. Select **Tags**.\n1. Select the tag or tags you want to filter by. n8n lists the workflows with that tag.\n\n## Manage tags\n\nYou can edit existing tags. Instance owners can delete tags.\n\n1. Select **Manage tags**. This is available from **Filters** > **Tags** on the **Workflows** page, or in the **+ Add tag** modal in your workflow.\n1. Hover over the tag you want to change.\n1. Select **Edit** to rename it, or **Delete** to delete it.\n\nGlobal tags\n\nTags are global. If you edit or delete a tag, this affects all users of your n8n instance.\n",
|
|
91366
|
+
"excerpt": "# Tags Workflow tags allow you to label your workflows. You can then filter workflows by tag. Tags are global. This means when you create a tag, it's available to all users on your n8n instance. ## Add a tag to a workflow To add a tag to your workflow: 1. In your workflow, select **+ Add tag**. 1. Select an existing tag, or enter a new tag name. 1. Once you select a tag and click away from the tag modal, n8n displays the tag next to the workflow name. You can add more than one tag. ## Fil...",
|
|
91367
|
+
"sections": [
|
|
91368
|
+
{
|
|
91369
|
+
"title": "Tags",
|
|
91370
|
+
"level": 1,
|
|
91371
|
+
"content": "Workflow tags allow you to label your workflows. You can then filter workflows by tag.\n\nTags are global. This means when you create a tag, it's available to all users on your n8n instance."
|
|
91372
|
+
}
|
|
91373
|
+
]
|
|
91374
|
+
},
|
|
91375
|
+
"metadata": {
|
|
91376
|
+
"keywords": [
|
|
91377
|
+
"tags",
|
|
91378
|
+
"workflow",
|
|
91379
|
+
"filter",
|
|
91380
|
+
"manage"
|
|
91381
|
+
],
|
|
91382
|
+
"useCases": [],
|
|
91383
|
+
"operations": [],
|
|
91384
|
+
"codeExamples": 0,
|
|
91385
|
+
"complexity": "beginner",
|
|
91386
|
+
"readingTime": "2 min",
|
|
91387
|
+
"contentLength": 1175,
|
|
91388
|
+
"relatedPages": []
|
|
91389
|
+
},
|
|
91390
|
+
"searchIndex": {
|
|
91391
|
+
"fullText": "tags # tags\n\nworkflow tags allow you to label your workflows. you can then filter workflows by tag.\n\ntags are global. this means when you create a tag, it's available to all users on your n8n instance.\n\n## add a tag to a workflow\n\nto add a tag to your workflow:\n\n1. in your workflow, select **+ add tag**.\n1. select an existing tag, or enter a new tag name.\n1. once you select a tag and click away from the tag modal, n8n displays the tag next to the workflow name.\n\nyou can add more than one tag.\n\n## filter by tag\n\nwhen browsing the workflows on your instance, you can filter by tag.\n\n1. on the **workflows** page, select **filters**.\n1. select **tags**.\n1. select the tag or tags you want to filter by. n8n lists the workflows with that tag.\n\n## manage tags\n\nyou can edit existing tags. instance owners can delete tags.\n\n1. select **manage tags**. this is available from **filters** > **tags** on the **workflows** page, or in the **+ add tag** modal in your workflow.\n1. hover over the tag you want to change.\n1. select **edit** to rename it, or **delete** to delete it.\n\nglobal tags\n\ntags are global. if you edit or delete a tag, this affects all users of your n8n instance.\n tags",
|
|
91392
|
+
"importantTerms": [
|
|
91393
|
+
"tags",
|
|
91394
|
+
"select",
|
|
91395
|
+
"your",
|
|
91396
|
+
"workflow",
|
|
91397
|
+
"workflows",
|
|
91398
|
+
"filter",
|
|
91399
|
+
"instance",
|
|
91400
|
+
"delete",
|
|
91401
|
+
"global",
|
|
91402
|
+
"this",
|
|
91403
|
+
"edit"
|
|
91404
|
+
]
|
|
91405
|
+
}
|
|
91406
|
+
},
|
|
91407
|
+
{
|
|
91408
|
+
"id": "page-1249",
|
|
91410
91409
|
"title": "Sub-workflow conversion",
|
|
91411
91410
|
"url": "https://docs.n8n.io/workflows/subworkflow-conversion/index.md",
|
|
91412
91411
|
"urlPath": "workflows/subworkflow-conversion/index.md",
|
|
@@ -91484,58 +91483,6 @@
|
|
|
91484
91483
|
]
|
|
91485
91484
|
}
|
|
91486
91485
|
},
|
|
91487
|
-
{
|
|
91488
|
-
"id": "page-1249",
|
|
91489
|
-
"title": "Tags",
|
|
91490
|
-
"url": "https://docs.n8n.io/workflows/tags/index.md",
|
|
91491
|
-
"urlPath": "workflows/tags/index.md",
|
|
91492
|
-
"category": "workflows",
|
|
91493
|
-
"subcategory": null,
|
|
91494
|
-
"nodeName": null,
|
|
91495
|
-
"nodeType": null,
|
|
91496
|
-
"content": {
|
|
91497
|
-
"markdown": "# Tags\n\nWorkflow tags allow you to label your workflows. You can then filter workflows by tag.\n\nTags are global. This means when you create a tag, it's available to all users on your n8n instance.\n\n## Add a tag to a workflow\n\nTo add a tag to your workflow:\n\n1. In your workflow, select **+ Add tag**.\n1. Select an existing tag, or enter a new tag name.\n1. Once you select a tag and click away from the tag modal, n8n displays the tag next to the workflow name.\n\nYou can add more than one tag.\n\n## Filter by tag\n\nWhen browsing the workflows on your instance, you can filter by tag.\n\n1. On the **Workflows** page, select **Filters**.\n1. Select **Tags**.\n1. Select the tag or tags you want to filter by. n8n lists the workflows with that tag.\n\n## Manage tags\n\nYou can edit existing tags. Instance owners can delete tags.\n\n1. Select **Manage tags**. This is available from **Filters** > **Tags** on the **Workflows** page, or in the **+ Add tag** modal in your workflow.\n1. Hover over the tag you want to change.\n1. Select **Edit** to rename it, or **Delete** to delete it.\n\nGlobal tags\n\nTags are global. If you edit or delete a tag, this affects all users of your n8n instance.\n",
|
|
91498
|
-
"excerpt": "# Tags Workflow tags allow you to label your workflows. You can then filter workflows by tag. Tags are global. This means when you create a tag, it's available to all users on your n8n instance. ## Add a tag to a workflow To add a tag to your workflow: 1. In your workflow, select **+ Add tag**. 1. Select an existing tag, or enter a new tag name. 1. Once you select a tag and click away from the tag modal, n8n displays the tag next to the workflow name. You can add more than one tag. ## Fil...",
|
|
91499
|
-
"sections": [
|
|
91500
|
-
{
|
|
91501
|
-
"title": "Tags",
|
|
91502
|
-
"level": 1,
|
|
91503
|
-
"content": "Workflow tags allow you to label your workflows. You can then filter workflows by tag.\n\nTags are global. This means when you create a tag, it's available to all users on your n8n instance."
|
|
91504
|
-
}
|
|
91505
|
-
]
|
|
91506
|
-
},
|
|
91507
|
-
"metadata": {
|
|
91508
|
-
"keywords": [
|
|
91509
|
-
"tags",
|
|
91510
|
-
"workflow",
|
|
91511
|
-
"filter",
|
|
91512
|
-
"manage"
|
|
91513
|
-
],
|
|
91514
|
-
"useCases": [],
|
|
91515
|
-
"operations": [],
|
|
91516
|
-
"codeExamples": 0,
|
|
91517
|
-
"complexity": "beginner",
|
|
91518
|
-
"readingTime": "2 min",
|
|
91519
|
-
"contentLength": 1175,
|
|
91520
|
-
"relatedPages": []
|
|
91521
|
-
},
|
|
91522
|
-
"searchIndex": {
|
|
91523
|
-
"fullText": "tags # tags\n\nworkflow tags allow you to label your workflows. you can then filter workflows by tag.\n\ntags are global. this means when you create a tag, it's available to all users on your n8n instance.\n\n## add a tag to a workflow\n\nto add a tag to your workflow:\n\n1. in your workflow, select **+ add tag**.\n1. select an existing tag, or enter a new tag name.\n1. once you select a tag and click away from the tag modal, n8n displays the tag next to the workflow name.\n\nyou can add more than one tag.\n\n## filter by tag\n\nwhen browsing the workflows on your instance, you can filter by tag.\n\n1. on the **workflows** page, select **filters**.\n1. select **tags**.\n1. select the tag or tags you want to filter by. n8n lists the workflows with that tag.\n\n## manage tags\n\nyou can edit existing tags. instance owners can delete tags.\n\n1. select **manage tags**. this is available from **filters** > **tags** on the **workflows** page, or in the **+ add tag** modal in your workflow.\n1. hover over the tag you want to change.\n1. select **edit** to rename it, or **delete** to delete it.\n\nglobal tags\n\ntags are global. if you edit or delete a tag, this affects all users of your n8n instance.\n tags",
|
|
91524
|
-
"importantTerms": [
|
|
91525
|
-
"tags",
|
|
91526
|
-
"select",
|
|
91527
|
-
"your",
|
|
91528
|
-
"workflow",
|
|
91529
|
-
"workflows",
|
|
91530
|
-
"filter",
|
|
91531
|
-
"instance",
|
|
91532
|
-
"delete",
|
|
91533
|
-
"global",
|
|
91534
|
-
"this",
|
|
91535
|
-
"edit"
|
|
91536
|
-
]
|
|
91537
|
-
}
|
|
91538
|
-
},
|
|
91539
91486
|
{
|
|
91540
91487
|
"id": "page-1250",
|
|
91541
91488
|
"title": "Templates",
|
|
@@ -93003,7 +92950,7 @@
|
|
|
93003
92950
|
"page-0660",
|
|
93004
92951
|
"page-0661",
|
|
93005
92952
|
"page-0662",
|
|
93006
|
-
"page-
|
|
92953
|
+
"page-0664",
|
|
93007
92954
|
"page-0668",
|
|
93008
92955
|
"page-0670",
|
|
93009
92956
|
"page-0671",
|
|
@@ -93354,7 +93301,7 @@
|
|
|
93354
93301
|
"page-0157",
|
|
93355
93302
|
"page-0221",
|
|
93356
93303
|
"page-0468",
|
|
93357
|
-
"page-
|
|
93304
|
+
"page-0536",
|
|
93358
93305
|
"page-0651"
|
|
93359
93306
|
],
|
|
93360
93307
|
"removal": [
|
|
@@ -93490,11 +93437,11 @@
|
|
|
93490
93437
|
"page-1026",
|
|
93491
93438
|
"page-1029",
|
|
93492
93439
|
"page-1030",
|
|
93493
|
-
"page-
|
|
93440
|
+
"page-1035",
|
|
93494
93441
|
"page-1125",
|
|
93495
93442
|
"page-1134",
|
|
93496
93443
|
"page-1193",
|
|
93497
|
-
"page-
|
|
93444
|
+
"page-1203",
|
|
93498
93445
|
"page-1221"
|
|
93499
93446
|
],
|
|
93500
93447
|
"directory": [
|
|
@@ -93608,7 +93555,7 @@
|
|
|
93608
93555
|
"page-1204",
|
|
93609
93556
|
"page-1205",
|
|
93610
93557
|
"page-1247",
|
|
93611
|
-
"page-
|
|
93558
|
+
"page-1249",
|
|
93612
93559
|
"page-1254",
|
|
93613
93560
|
"page-1260"
|
|
93614
93561
|
],
|
|
@@ -93726,7 +93673,7 @@
|
|
|
93726
93673
|
"page-1169",
|
|
93727
93674
|
"page-1182",
|
|
93728
93675
|
"page-1192",
|
|
93729
|
-
"page-
|
|
93676
|
+
"page-1203",
|
|
93730
93677
|
"page-1204",
|
|
93731
93678
|
"page-1205",
|
|
93732
93679
|
"page-1216",
|
|
@@ -93739,7 +93686,7 @@
|
|
|
93739
93686
|
],
|
|
93740
93687
|
"retention": [
|
|
93741
93688
|
"page-0002",
|
|
93742
|
-
"page-
|
|
93689
|
+
"page-1203"
|
|
93743
93690
|
],
|
|
93744
93691
|
"removed": [
|
|
93745
93692
|
"page-0002",
|
|
@@ -93764,7 +93711,7 @@
|
|
|
93764
93711
|
"page-0534",
|
|
93765
93712
|
"page-0622",
|
|
93766
93713
|
"page-0634",
|
|
93767
|
-
"page-
|
|
93714
|
+
"page-0664",
|
|
93768
93715
|
"page-0709",
|
|
93769
93716
|
"page-0710",
|
|
93770
93717
|
"page-0716",
|
|
@@ -93772,7 +93719,7 @@
|
|
|
93772
93719
|
"page-0831",
|
|
93773
93720
|
"page-1161",
|
|
93774
93721
|
"page-1164",
|
|
93775
|
-
"page-
|
|
93722
|
+
"page-1203",
|
|
93776
93723
|
"page-1205"
|
|
93777
93724
|
],
|
|
93778
93725
|
"webhook": [
|
|
@@ -93901,7 +93848,7 @@
|
|
|
93901
93848
|
"page-0638",
|
|
93902
93849
|
"page-0639",
|
|
93903
93850
|
"page-0640",
|
|
93904
|
-
"page-
|
|
93851
|
+
"page-0664",
|
|
93905
93852
|
"page-0672",
|
|
93906
93853
|
"page-0683",
|
|
93907
93854
|
"page-0697",
|
|
@@ -93985,7 +93932,7 @@
|
|
|
93985
93932
|
"page-0703",
|
|
93986
93933
|
"page-0943",
|
|
93987
93934
|
"page-1147",
|
|
93988
|
-
"page-
|
|
93935
|
+
"page-1203",
|
|
93989
93936
|
"page-1214",
|
|
93990
93937
|
"page-1245"
|
|
93991
93938
|
],
|
|
@@ -94221,7 +94168,7 @@
|
|
|
94221
94168
|
"page-0736",
|
|
94222
94169
|
"page-0745",
|
|
94223
94170
|
"page-0753",
|
|
94224
|
-
"page-
|
|
94171
|
+
"page-0762",
|
|
94225
94172
|
"page-0766",
|
|
94226
94173
|
"page-0767",
|
|
94227
94174
|
"page-0769",
|
|
@@ -94248,7 +94195,7 @@
|
|
|
94248
94195
|
"page-0877",
|
|
94249
94196
|
"page-0894",
|
|
94250
94197
|
"page-0899",
|
|
94251
|
-
"page-
|
|
94198
|
+
"page-0900",
|
|
94252
94199
|
"page-0908",
|
|
94253
94200
|
"page-0910",
|
|
94254
94201
|
"page-0911",
|
|
@@ -94325,7 +94272,7 @@
|
|
|
94325
94272
|
"page-0506",
|
|
94326
94273
|
"page-0507",
|
|
94327
94274
|
"page-0527",
|
|
94328
|
-
"page-
|
|
94275
|
+
"page-0537",
|
|
94329
94276
|
"page-0647",
|
|
94330
94277
|
"page-0659",
|
|
94331
94278
|
"page-0671",
|
|
@@ -94365,7 +94312,7 @@
|
|
|
94365
94312
|
"page-1028",
|
|
94366
94313
|
"page-1029",
|
|
94367
94314
|
"page-1031",
|
|
94368
|
-
"page-
|
|
94315
|
+
"page-1034",
|
|
94369
94316
|
"page-1224",
|
|
94370
94317
|
"page-1226",
|
|
94371
94318
|
"page-1238"
|
|
@@ -94484,7 +94431,7 @@
|
|
|
94484
94431
|
"page-0193",
|
|
94485
94432
|
"page-0548",
|
|
94486
94433
|
"page-0662",
|
|
94487
|
-
"page-
|
|
94434
|
+
"page-0664",
|
|
94488
94435
|
"page-0694",
|
|
94489
94436
|
"page-0700",
|
|
94490
94437
|
"page-0709",
|
|
@@ -94791,7 +94738,7 @@
|
|
|
94791
94738
|
"page-1024",
|
|
94792
94739
|
"page-1025",
|
|
94793
94740
|
"page-1030",
|
|
94794
|
-
"page-
|
|
94741
|
+
"page-1035",
|
|
94795
94742
|
"page-1156",
|
|
94796
94743
|
"page-1159",
|
|
94797
94744
|
"page-1204",
|
|
@@ -94988,7 +94935,7 @@
|
|
|
94988
94935
|
],
|
|
94989
94936
|
"config": [
|
|
94990
94937
|
"page-0003",
|
|
94991
|
-
"page-
|
|
94938
|
+
"page-0665"
|
|
94992
94939
|
],
|
|
94993
94940
|
"files": [
|
|
94994
94941
|
"page-0003",
|
|
@@ -95001,7 +94948,7 @@
|
|
|
95001
94948
|
"page-0209",
|
|
95002
94949
|
"page-0505",
|
|
95003
94950
|
"page-0506",
|
|
95004
|
-
"page-
|
|
94951
|
+
"page-0537",
|
|
95005
94952
|
"page-0678",
|
|
95006
94953
|
"page-1029",
|
|
95007
94954
|
"page-1162",
|
|
@@ -95469,10 +95416,10 @@
|
|
|
95469
95416
|
"page-0461",
|
|
95470
95417
|
"page-0491",
|
|
95471
95418
|
"page-0532",
|
|
95472
|
-
"page-
|
|
95419
|
+
"page-0537",
|
|
95473
95420
|
"page-0610",
|
|
95474
95421
|
"page-0663",
|
|
95475
|
-
"page-
|
|
95422
|
+
"page-0665",
|
|
95476
95423
|
"page-0706",
|
|
95477
95424
|
"page-1205",
|
|
95478
95425
|
"page-1262"
|
|
@@ -95489,7 +95436,7 @@
|
|
|
95489
95436
|
"page-0507",
|
|
95490
95437
|
"page-0508",
|
|
95491
95438
|
"page-0898",
|
|
95492
|
-
"page-
|
|
95439
|
+
"page-1203",
|
|
95493
95440
|
"page-1246"
|
|
95494
95441
|
],
|
|
95495
95442
|
"credentials": [
|
|
@@ -96182,7 +96129,7 @@
|
|
|
96182
96129
|
"page-1024",
|
|
96183
96130
|
"page-1025",
|
|
96184
96131
|
"page-1030",
|
|
96185
|
-
"page-
|
|
96132
|
+
"page-1035",
|
|
96186
96133
|
"page-1147",
|
|
96187
96134
|
"page-1149",
|
|
96188
96135
|
"page-1157",
|
|
@@ -96253,7 +96200,6 @@
|
|
|
96253
96200
|
"environments": [
|
|
96254
96201
|
"page-0005",
|
|
96255
96202
|
"page-1205",
|
|
96256
|
-
"page-1206",
|
|
96257
96203
|
"page-1207",
|
|
96258
96204
|
"page-1208",
|
|
96259
96205
|
"page-1209",
|
|
@@ -96481,7 +96427,7 @@
|
|
|
96481
96427
|
"page-1029",
|
|
96482
96428
|
"page-1031",
|
|
96483
96429
|
"page-1033",
|
|
96484
|
-
"page-
|
|
96430
|
+
"page-1034",
|
|
96485
96431
|
"page-1037",
|
|
96486
96432
|
"page-1156",
|
|
96487
96433
|
"page-1204",
|
|
@@ -96792,7 +96738,7 @@
|
|
|
96792
96738
|
"page-0007",
|
|
96793
96739
|
"page-0018",
|
|
96794
96740
|
"page-0021",
|
|
96795
|
-
"page-
|
|
96741
|
+
"page-0079",
|
|
96796
96742
|
"page-0132",
|
|
96797
96743
|
"page-0157",
|
|
96798
96744
|
"page-0431",
|
|
@@ -96874,7 +96820,7 @@
|
|
|
96874
96820
|
"page-0551",
|
|
96875
96821
|
"page-0553",
|
|
96876
96822
|
"page-1169",
|
|
96877
|
-
"page-
|
|
96823
|
+
"page-1203"
|
|
96878
96824
|
],
|
|
96879
96825
|
"faqs": [
|
|
96880
96826
|
"page-0007",
|
|
@@ -96893,7 +96839,7 @@
|
|
|
96893
96839
|
],
|
|
96894
96840
|
"values": [
|
|
96895
96841
|
"page-0007",
|
|
96896
|
-
"page-
|
|
96842
|
+
"page-0079",
|
|
96897
96843
|
"page-0208",
|
|
96898
96844
|
"page-0517",
|
|
96899
96845
|
"page-0518",
|
|
@@ -97317,7 +97263,7 @@
|
|
|
97317
97263
|
"page-0012",
|
|
97318
97264
|
"page-0151",
|
|
97319
97265
|
"page-0208",
|
|
97320
|
-
"page-
|
|
97266
|
+
"page-0665",
|
|
97321
97267
|
"page-1244"
|
|
97322
97268
|
],
|
|
97323
97269
|
"viewing": [
|
|
@@ -97540,13 +97486,13 @@
|
|
|
97540
97486
|
],
|
|
97541
97487
|
"filtering": [
|
|
97542
97488
|
"page-0013",
|
|
97543
|
-
"page-
|
|
97489
|
+
"page-0080",
|
|
97544
97490
|
"page-0096",
|
|
97545
97491
|
"page-0522"
|
|
97546
97492
|
],
|
|
97547
97493
|
"push": [
|
|
97548
97494
|
"page-0013",
|
|
97549
|
-
"page-
|
|
97495
|
+
"page-0665",
|
|
97550
97496
|
"page-1207",
|
|
97551
97497
|
"page-1216"
|
|
97552
97498
|
],
|
|
@@ -97557,7 +97503,7 @@
|
|
|
97557
97503
|
"page-0202",
|
|
97558
97504
|
"page-0207",
|
|
97559
97505
|
"page-0208",
|
|
97560
|
-
"page-
|
|
97506
|
+
"page-0665",
|
|
97561
97507
|
"page-1207",
|
|
97562
97508
|
"page-1216"
|
|
97563
97509
|
],
|
|
@@ -97584,7 +97530,7 @@
|
|
|
97584
97530
|
"page-0153",
|
|
97585
97531
|
"page-0166",
|
|
97586
97532
|
"page-1030",
|
|
97587
|
-
"page-
|
|
97533
|
+
"page-1035",
|
|
97588
97534
|
"page-1211",
|
|
97589
97535
|
"page-1228"
|
|
97590
97536
|
],
|
|
@@ -97604,7 +97550,7 @@
|
|
|
97604
97550
|
"page-0214",
|
|
97605
97551
|
"page-0218",
|
|
97606
97552
|
"page-0511",
|
|
97607
|
-
"page-
|
|
97553
|
+
"page-0665",
|
|
97608
97554
|
"page-0736",
|
|
97609
97555
|
"page-0857",
|
|
97610
97556
|
"page-0877",
|
|
@@ -97663,7 +97609,7 @@
|
|
|
97663
97609
|
"page-1197",
|
|
97664
97610
|
"page-1198",
|
|
97665
97611
|
"page-1199",
|
|
97666
|
-
"page-
|
|
97612
|
+
"page-1203",
|
|
97667
97613
|
"page-1204",
|
|
97668
97614
|
"page-1205",
|
|
97669
97615
|
"page-1218",
|
|
@@ -97673,7 +97619,7 @@
|
|
|
97673
97619
|
"page-0013",
|
|
97674
97620
|
"page-0208",
|
|
97675
97621
|
"page-1205",
|
|
97676
|
-
"page-
|
|
97622
|
+
"page-1249"
|
|
97677
97623
|
],
|
|
97678
97624
|
"keep": [
|
|
97679
97625
|
"page-0013",
|
|
@@ -97683,12 +97629,12 @@
|
|
|
97683
97629
|
"page-0684",
|
|
97684
97630
|
"page-0712",
|
|
97685
97631
|
"page-1205",
|
|
97686
|
-
"page-
|
|
97632
|
+
"page-1249"
|
|
97687
97633
|
],
|
|
97688
97634
|
"mind": [
|
|
97689
97635
|
"page-0013",
|
|
97690
97636
|
"page-1205",
|
|
97691
|
-
"page-
|
|
97637
|
+
"page-1249"
|
|
97692
97638
|
],
|
|
97693
97639
|
"roles:": [
|
|
97694
97640
|
"page-0013"
|
|
@@ -97788,7 +97734,7 @@
|
|
|
97788
97734
|
"page-0788",
|
|
97789
97735
|
"page-0816",
|
|
97790
97736
|
"page-0869",
|
|
97791
|
-
"page-
|
|
97737
|
+
"page-1203",
|
|
97792
97738
|
"page-1208"
|
|
97793
97739
|
],
|
|
97794
97740
|
"space": [
|
|
@@ -98172,7 +98118,6 @@
|
|
|
98172
98118
|
"page-1171",
|
|
98173
98119
|
"page-1184",
|
|
98174
98120
|
"page-1205",
|
|
98175
|
-
"page-1206",
|
|
98176
98121
|
"page-1207",
|
|
98177
98122
|
"page-1208",
|
|
98178
98123
|
"page-1209",
|
|
@@ -98344,7 +98289,7 @@
|
|
|
98344
98289
|
"page-0550",
|
|
98345
98290
|
"page-0702",
|
|
98346
98291
|
"page-1030",
|
|
98347
|
-
"page-
|
|
98292
|
+
"page-1035"
|
|
98348
98293
|
],
|
|
98349
98294
|
"allowed": [
|
|
98350
98295
|
"page-0015",
|
|
@@ -98571,7 +98516,7 @@
|
|
|
98571
98516
|
],
|
|
98572
98517
|
"switch": [
|
|
98573
98518
|
"page-0015",
|
|
98574
|
-
"page-
|
|
98519
|
+
"page-0665",
|
|
98575
98520
|
"page-0692",
|
|
98576
98521
|
"page-1204",
|
|
98577
98522
|
"page-1205"
|
|
@@ -98668,7 +98613,7 @@
|
|
|
98668
98613
|
"page-0715",
|
|
98669
98614
|
"page-1136",
|
|
98670
98615
|
"page-1171",
|
|
98671
|
-
"page-
|
|
98616
|
+
"page-1203"
|
|
98672
98617
|
],
|
|
98673
98618
|
"guides": [
|
|
98674
98619
|
"page-0017",
|
|
@@ -98842,7 +98787,7 @@
|
|
|
98842
98787
|
"page-0653",
|
|
98843
98788
|
"page-0654",
|
|
98844
98789
|
"page-0655",
|
|
98845
|
-
"page-
|
|
98790
|
+
"page-0664",
|
|
98846
98791
|
"page-0667",
|
|
98847
98792
|
"page-0670",
|
|
98848
98793
|
"page-0681",
|
|
@@ -99162,7 +99107,7 @@
|
|
|
99162
99107
|
"page-1024",
|
|
99163
99108
|
"page-1025",
|
|
99164
99109
|
"page-1030",
|
|
99165
|
-
"page-
|
|
99110
|
+
"page-1035",
|
|
99166
99111
|
"page-1039",
|
|
99167
99112
|
"page-1041",
|
|
99168
99113
|
"page-1042",
|
|
@@ -99381,7 +99326,7 @@
|
|
|
99381
99326
|
"page-0653",
|
|
99382
99327
|
"page-0654",
|
|
99383
99328
|
"page-0655",
|
|
99384
|
-
"page-
|
|
99329
|
+
"page-0664",
|
|
99385
99330
|
"page-0667",
|
|
99386
99331
|
"page-0670",
|
|
99387
99332
|
"page-0681",
|
|
@@ -99701,7 +99646,7 @@
|
|
|
99701
99646
|
"page-1024",
|
|
99702
99647
|
"page-1025",
|
|
99703
99648
|
"page-1030",
|
|
99704
|
-
"page-
|
|
99649
|
+
"page-1035",
|
|
99705
99650
|
"page-1039",
|
|
99706
99651
|
"page-1041",
|
|
99707
99652
|
"page-1042",
|
|
@@ -100269,9 +100214,9 @@
|
|
|
100269
100214
|
"page-0746",
|
|
100270
100215
|
"page-0748",
|
|
100271
100216
|
"page-0753",
|
|
100272
|
-
"page-
|
|
100217
|
+
"page-0758",
|
|
100273
100218
|
"page-0761",
|
|
100274
|
-
"page-
|
|
100219
|
+
"page-0762",
|
|
100275
100220
|
"page-0776",
|
|
100276
100221
|
"page-0778",
|
|
100277
100222
|
"page-0785",
|
|
@@ -100363,7 +100308,7 @@
|
|
|
100363
100308
|
"page-0746",
|
|
100364
100309
|
"page-0753",
|
|
100365
100310
|
"page-0757",
|
|
100366
|
-
"page-
|
|
100311
|
+
"page-0762",
|
|
100367
100312
|
"page-0765",
|
|
100368
100313
|
"page-0766",
|
|
100369
100314
|
"page-0767",
|
|
@@ -100402,7 +100347,7 @@
|
|
|
100402
100347
|
"page-0897",
|
|
100403
100348
|
"page-0898",
|
|
100404
100349
|
"page-0899",
|
|
100405
|
-
"page-
|
|
100350
|
+
"page-0900",
|
|
100406
100351
|
"page-0903",
|
|
100407
100352
|
"page-0908",
|
|
100408
100353
|
"page-0910",
|
|
@@ -101159,7 +101104,7 @@
|
|
|
101159
101104
|
"page-0333",
|
|
101160
101105
|
"page-0464",
|
|
101161
101106
|
"page-0542",
|
|
101162
|
-
"page-
|
|
101107
|
+
"page-0665",
|
|
101163
101108
|
"page-0744",
|
|
101164
101109
|
"page-0897",
|
|
101165
101110
|
"page-0934",
|
|
@@ -101206,7 +101151,7 @@
|
|
|
101206
101151
|
"page-1105",
|
|
101207
101152
|
"page-1118",
|
|
101208
101153
|
"page-1144",
|
|
101209
|
-
"page-
|
|
101154
|
+
"page-1203",
|
|
101210
101155
|
"page-1244"
|
|
101211
101156
|
],
|
|
101212
101157
|
"step": [
|
|
@@ -101216,7 +101161,7 @@
|
|
|
101216
101161
|
"page-0674",
|
|
101217
101162
|
"page-1011",
|
|
101218
101163
|
"page-1031",
|
|
101219
|
-
"page-
|
|
101164
|
+
"page-1034",
|
|
101220
101165
|
"page-1156",
|
|
101221
101166
|
"page-1159",
|
|
101222
101167
|
"page-1208",
|
|
@@ -101442,7 +101387,7 @@
|
|
|
101442
101387
|
"into": [
|
|
101443
101388
|
"page-0023",
|
|
101444
101389
|
"page-0078",
|
|
101445
|
-
"page-
|
|
101390
|
+
"page-0080",
|
|
101446
101391
|
"page-0225",
|
|
101447
101392
|
"page-1257"
|
|
101448
101393
|
],
|
|
@@ -101501,7 +101446,7 @@
|
|
|
101501
101446
|
],
|
|
101502
101447
|
"insert": [
|
|
101503
101448
|
"page-0024",
|
|
101504
|
-
"page-
|
|
101449
|
+
"page-0080",
|
|
101505
101450
|
"page-0518",
|
|
101506
101451
|
"page-0519",
|
|
101507
101452
|
"page-0548",
|
|
@@ -101753,7 +101698,7 @@
|
|
|
101753
101698
|
"page-0557",
|
|
101754
101699
|
"page-0558",
|
|
101755
101700
|
"page-0559",
|
|
101756
|
-
"page-
|
|
101701
|
+
"page-0665",
|
|
101757
101702
|
"page-0719",
|
|
101758
101703
|
"page-1216"
|
|
101759
101704
|
],
|
|
@@ -101978,7 +101923,7 @@
|
|
|
101978
101923
|
"page-0660",
|
|
101979
101924
|
"page-0661",
|
|
101980
101925
|
"page-0662",
|
|
101981
|
-
"page-
|
|
101926
|
+
"page-0664",
|
|
101982
101927
|
"page-0668",
|
|
101983
101928
|
"page-0670",
|
|
101984
101929
|
"page-0671",
|
|
@@ -102198,7 +102143,7 @@
|
|
|
102198
102143
|
"page-0519",
|
|
102199
102144
|
"page-0528",
|
|
102200
102145
|
"page-0532",
|
|
102201
|
-
"page-
|
|
102146
|
+
"page-0537",
|
|
102202
102147
|
"page-0663",
|
|
102203
102148
|
"page-0669",
|
|
102204
102149
|
"page-0675",
|
|
@@ -102832,7 +102777,7 @@
|
|
|
102832
102777
|
"page-1024",
|
|
102833
102778
|
"page-1025",
|
|
102834
102779
|
"page-1030",
|
|
102835
|
-
"page-
|
|
102780
|
+
"page-1035",
|
|
102836
102781
|
"page-1229"
|
|
102837
102782
|
],
|
|
102838
102783
|
"libraries": [
|
|
@@ -103151,7 +103096,7 @@
|
|
|
103151
103096
|
"page-1024",
|
|
103152
103097
|
"page-1025",
|
|
103153
103098
|
"page-1030",
|
|
103154
|
-
"page-
|
|
103099
|
+
"page-1035"
|
|
103155
103100
|
],
|
|
103156
103101
|
"(pyodide": [
|
|
103157
103102
|
"page-0051",
|
|
@@ -103170,7 +103115,7 @@
|
|
|
103170
103115
|
"page-0078",
|
|
103171
103116
|
"page-0233",
|
|
103172
103117
|
"page-0622",
|
|
103173
|
-
"page-
|
|
103118
|
+
"page-0664",
|
|
103174
103119
|
"page-0694",
|
|
103175
103120
|
"page-0701",
|
|
103176
103121
|
"page-0709",
|
|
@@ -103197,10 +103142,10 @@
|
|
|
103197
103142
|
],
|
|
103198
103143
|
"edit": [
|
|
103199
103144
|
"page-0052",
|
|
103200
|
-
"page-
|
|
103145
|
+
"page-0079",
|
|
103201
103146
|
"page-0097",
|
|
103202
103147
|
"page-0528",
|
|
103203
|
-
"page-
|
|
103148
|
+
"page-0536",
|
|
103204
103149
|
"page-0651",
|
|
103205
103150
|
"page-0684",
|
|
103206
103151
|
"page-1231",
|
|
@@ -103214,7 +103159,7 @@
|
|
|
103214
103159
|
"method": [
|
|
103215
103160
|
"page-0054",
|
|
103216
103161
|
"page-0131",
|
|
103217
|
-
"page-
|
|
103162
|
+
"page-0664",
|
|
103218
103163
|
"page-0694",
|
|
103219
103164
|
"page-0709",
|
|
103220
103165
|
"page-0715",
|
|
@@ -103563,7 +103508,7 @@
|
|
|
103563
103508
|
"page-0595",
|
|
103564
103509
|
"page-0596",
|
|
103565
103510
|
"page-0662",
|
|
103566
|
-
"page-
|
|
103511
|
+
"page-0664",
|
|
103567
103512
|
"page-0680",
|
|
103568
103513
|
"page-0683",
|
|
103569
103514
|
"page-0694",
|
|
@@ -103612,7 +103557,7 @@
|
|
|
103612
103557
|
"page-0568",
|
|
103613
103558
|
"page-0661",
|
|
103614
103559
|
"page-0662",
|
|
103615
|
-
"page-
|
|
103560
|
+
"page-0664",
|
|
103616
103561
|
"page-0674",
|
|
103617
103562
|
"page-0709",
|
|
103618
103563
|
"page-0831",
|
|
@@ -103765,13 +103710,8 @@
|
|
|
103765
103710
|
"page-1042",
|
|
103766
103711
|
"page-1231"
|
|
103767
103712
|
],
|
|
103768
|
-
"orders": [
|
|
103769
|
-
"page-0079",
|
|
103770
|
-
"page-0080",
|
|
103771
|
-
"page-0081"
|
|
103772
|
-
],
|
|
103773
103713
|
"processing": [
|
|
103774
|
-
"page-
|
|
103714
|
+
"page-0079",
|
|
103775
103715
|
"page-0087",
|
|
103776
103716
|
"page-0218",
|
|
103777
103717
|
"page-0546",
|
|
@@ -103779,13 +103719,18 @@
|
|
|
103779
103719
|
"page-0634",
|
|
103780
103720
|
"page-0636",
|
|
103781
103721
|
"page-0640",
|
|
103782
|
-
"page-
|
|
103722
|
+
"page-1203"
|
|
103723
|
+
],
|
|
103724
|
+
"orders": [
|
|
103725
|
+
"page-0079",
|
|
103726
|
+
"page-0080",
|
|
103727
|
+
"page-0081"
|
|
103783
103728
|
],
|
|
103784
103729
|
"another": [
|
|
103785
|
-
"page-
|
|
103730
|
+
"page-0079"
|
|
103786
103731
|
],
|
|
103787
103732
|
"fields": [
|
|
103788
|
-
"page-
|
|
103733
|
+
"page-0079",
|
|
103789
103734
|
"page-0096",
|
|
103790
103735
|
"page-0097",
|
|
103791
103736
|
"page-0333",
|
|
@@ -104015,7 +103960,7 @@
|
|
|
104015
103960
|
"page-0759",
|
|
104016
103961
|
"page-0760",
|
|
104017
103962
|
"page-0761",
|
|
104018
|
-
"page-
|
|
103963
|
+
"page-0763",
|
|
104019
103964
|
"page-0764",
|
|
104020
103965
|
"page-0765",
|
|
104021
103966
|
"page-0766",
|
|
@@ -104127,7 +104072,7 @@
|
|
|
104127
104072
|
"page-0895",
|
|
104128
104073
|
"page-0898",
|
|
104129
104074
|
"page-0899",
|
|
104130
|
-
"page-
|
|
104075
|
+
"page-0900",
|
|
104131
104076
|
"page-0902",
|
|
104132
104077
|
"page-0903",
|
|
104133
104078
|
"page-0904",
|
|
@@ -104255,7 +104200,7 @@
|
|
|
104255
104200
|
"part": [
|
|
104256
104201
|
"page-0093",
|
|
104257
104202
|
"page-0649",
|
|
104258
|
-
"page-
|
|
104203
|
+
"page-1249"
|
|
104259
104204
|
],
|
|
104260
104205
|
"sources": [
|
|
104261
104206
|
"page-0093",
|
|
@@ -104294,7 +104239,7 @@
|
|
|
104294
104239
|
"page-0660",
|
|
104295
104240
|
"page-1169",
|
|
104296
104241
|
"page-1205",
|
|
104297
|
-
"page-
|
|
104242
|
+
"page-1248",
|
|
104298
104243
|
"page-1257",
|
|
104299
104244
|
"page-1262"
|
|
104300
104245
|
],
|
|
@@ -104332,7 +104277,7 @@
|
|
|
104332
104277
|
"generate": [
|
|
104333
104278
|
"page-0097",
|
|
104334
104279
|
"page-0533",
|
|
104335
|
-
"page-
|
|
104280
|
+
"page-0536",
|
|
104336
104281
|
"page-0538",
|
|
104337
104282
|
"page-0539",
|
|
104338
104283
|
"page-0593",
|
|
@@ -104349,7 +104294,7 @@
|
|
|
104349
104294
|
"page-0874",
|
|
104350
104295
|
"page-0877",
|
|
104351
104296
|
"page-1031",
|
|
104352
|
-
"page-
|
|
104297
|
+
"page-1034"
|
|
104353
104298
|
],
|
|
104354
104299
|
"sample": [
|
|
104355
104300
|
"page-0097",
|
|
@@ -104421,8 +104366,8 @@
|
|
|
104421
104366
|
],
|
|
104422
104367
|
"endpoint": [
|
|
104423
104368
|
"page-0099",
|
|
104424
|
-
"page-
|
|
104425
|
-
"page-
|
|
104369
|
+
"page-0664",
|
|
104370
|
+
"page-0758",
|
|
104426
104371
|
"page-0942"
|
|
104427
104372
|
],
|
|
104428
104373
|
"versus": [
|
|
@@ -105279,7 +105224,7 @@
|
|
|
105279
105224
|
"page-0666",
|
|
105280
105225
|
"page-1204",
|
|
105281
105226
|
"page-1205",
|
|
105282
|
-
"page-
|
|
105227
|
+
"page-1249"
|
|
105283
105228
|
],
|
|
105284
105229
|
"dates": [
|
|
105285
105230
|
"page-0132",
|
|
@@ -105300,7 +105245,7 @@
|
|
|
105300
105245
|
"page-0702",
|
|
105301
105246
|
"page-0719",
|
|
105302
105247
|
"page-1188",
|
|
105303
|
-
"page-
|
|
105248
|
+
"page-1203"
|
|
105304
105249
|
],
|
|
105305
105250
|
"days": [
|
|
105306
105251
|
"page-0132",
|
|
@@ -105509,7 +105454,7 @@
|
|
|
105509
105454
|
],
|
|
105510
105455
|
"branch": [
|
|
105511
105456
|
"page-0142",
|
|
105512
|
-
"page-
|
|
105457
|
+
"page-0665",
|
|
105513
105458
|
"page-0667",
|
|
105514
105459
|
"page-0674",
|
|
105515
105460
|
"page-1207",
|
|
@@ -105568,7 +105513,7 @@
|
|
|
105568
105513
|
"conversion": [
|
|
105569
105514
|
"page-0146",
|
|
105570
105515
|
"page-0684",
|
|
105571
|
-
"page-
|
|
105516
|
+
"page-1249"
|
|
105572
105517
|
],
|
|
105573
105518
|
"contributing": [
|
|
105574
105519
|
"page-0148"
|
|
@@ -105785,10 +105730,10 @@
|
|
|
105785
105730
|
"tags": [
|
|
105786
105731
|
"page-0153",
|
|
105787
105732
|
"page-0662",
|
|
105788
|
-
"page-
|
|
105733
|
+
"page-0665",
|
|
105789
105734
|
"page-1204",
|
|
105790
105735
|
"page-1216",
|
|
105791
|
-
"page-
|
|
105736
|
+
"page-1248"
|
|
105792
105737
|
],
|
|
105793
105738
|
"relationship": [
|
|
105794
105739
|
"page-0153"
|
|
@@ -105852,7 +105797,7 @@
|
|
|
105852
105797
|
"page-0697",
|
|
105853
105798
|
"page-0716",
|
|
105854
105799
|
"page-0831",
|
|
105855
|
-
"page-
|
|
105800
|
+
"page-0901",
|
|
105856
105801
|
"page-0988",
|
|
105857
105802
|
"page-1169",
|
|
105858
105803
|
"page-1183",
|
|
@@ -105884,7 +105829,7 @@
|
|
|
105884
105829
|
"page-0736",
|
|
105885
105830
|
"page-0832",
|
|
105886
105831
|
"page-0877",
|
|
105887
|
-
"page-
|
|
105832
|
+
"page-0901",
|
|
105888
105833
|
"page-0963",
|
|
105889
105834
|
"page-0972",
|
|
105890
105835
|
"page-1105",
|
|
@@ -105943,7 +105888,7 @@
|
|
|
105943
105888
|
],
|
|
105944
105889
|
"smtp": [
|
|
105945
105890
|
"page-0158",
|
|
105946
|
-
"page-
|
|
105891
|
+
"page-1035"
|
|
105947
105892
|
],
|
|
105948
105893
|
"three:": [
|
|
105949
105894
|
"page-0158",
|
|
@@ -106304,7 +106249,6 @@
|
|
|
106304
106249
|
"page-0212",
|
|
106305
106250
|
"page-0333",
|
|
106306
106251
|
"page-1205",
|
|
106307
|
-
"page-1206",
|
|
106308
106252
|
"page-1207",
|
|
106309
106253
|
"page-1208",
|
|
106310
106254
|
"page-1209",
|
|
@@ -106486,7 +106430,7 @@
|
|
|
106486
106430
|
"page-0661",
|
|
106487
106431
|
"page-0662",
|
|
106488
106432
|
"page-0663",
|
|
106489
|
-
"page-
|
|
106433
|
+
"page-0665",
|
|
106490
106434
|
"page-0666",
|
|
106491
106435
|
"page-0668",
|
|
106492
106436
|
"page-0669",
|
|
@@ -106529,7 +106473,7 @@
|
|
|
106529
106473
|
"page-0202",
|
|
106530
106474
|
"page-0205",
|
|
106531
106475
|
"page-0207",
|
|
106532
|
-
"page-
|
|
106476
|
+
"page-0665"
|
|
106533
106477
|
],
|
|
106534
106478
|
"repository": [
|
|
106535
106479
|
"page-0200",
|
|
@@ -106629,7 +106573,7 @@
|
|
|
106629
106573
|
"page-0203",
|
|
106630
106574
|
"page-0528",
|
|
106631
106575
|
"page-0691",
|
|
106632
|
-
"page-
|
|
106576
|
+
"page-1129"
|
|
106633
106577
|
],
|
|
106634
106578
|
"membership": [
|
|
106635
106579
|
"page-0203"
|
|
@@ -107011,13 +106955,13 @@
|
|
|
107011
106955
|
],
|
|
107012
106956
|
"password": [
|
|
107013
106957
|
"page-0208",
|
|
107014
|
-
"page-
|
|
106958
|
+
"page-0901",
|
|
107015
106959
|
"page-0960",
|
|
107016
106960
|
"page-0961",
|
|
107017
106961
|
"page-0965",
|
|
107018
106962
|
"page-1011",
|
|
107019
106963
|
"page-1031",
|
|
107020
|
-
"page-
|
|
106964
|
+
"page-1034"
|
|
107021
106965
|
],
|
|
107022
106966
|
"(must": [
|
|
107023
106967
|
"page-0208"
|
|
@@ -107033,7 +106977,7 @@
|
|
|
107033
106977
|
],
|
|
107034
106978
|
"uses": [
|
|
107035
106979
|
"page-0208",
|
|
107036
|
-
"page-
|
|
106980
|
+
"page-1203"
|
|
107037
106981
|
],
|
|
107038
106982
|
"postgresql,": [
|
|
107039
106983
|
"page-0208"
|
|
@@ -107071,7 +107015,7 @@
|
|
|
107071
107015
|
"processors": [
|
|
107072
107016
|
"page-0208",
|
|
107073
107017
|
"page-0218",
|
|
107074
|
-
"page-
|
|
107018
|
+
"page-1203"
|
|
107075
107019
|
],
|
|
107076
107020
|
"cluster)": [
|
|
107077
107021
|
"page-0208"
|
|
@@ -107326,7 +107270,7 @@
|
|
|
107326
107270
|
],
|
|
107327
107271
|
"deletion": [
|
|
107328
107272
|
"page-0213",
|
|
107329
|
-
"page-
|
|
107273
|
+
"page-1203"
|
|
107330
107274
|
],
|
|
107331
107275
|
"strictly": [
|
|
107332
107276
|
"page-0213"
|
|
@@ -107471,11 +107415,11 @@
|
|
|
107471
107415
|
],
|
|
107472
107416
|
"opting": [
|
|
107473
107417
|
"page-0228",
|
|
107474
|
-
"page-
|
|
107418
|
+
"page-1203"
|
|
107475
107419
|
],
|
|
107476
107420
|
"telemetry": [
|
|
107477
107421
|
"page-0228",
|
|
107478
|
-
"page-
|
|
107422
|
+
"page-1203"
|
|
107479
107423
|
],
|
|
107480
107424
|
"connection": [
|
|
107481
107425
|
"page-0228",
|
|
@@ -107830,7 +107774,7 @@
|
|
|
107830
107774
|
"page-0658",
|
|
107831
107775
|
"page-0659",
|
|
107832
107776
|
"page-0663",
|
|
107833
|
-
"page-
|
|
107777
|
+
"page-0665",
|
|
107834
107778
|
"page-0666",
|
|
107835
107779
|
"page-0668",
|
|
107836
107780
|
"page-0669",
|
|
@@ -108273,11 +108217,11 @@
|
|
|
108273
108217
|
],
|
|
108274
108218
|
"clearbit": [
|
|
108275
108219
|
"page-0274",
|
|
108276
|
-
"page-
|
|
108220
|
+
"page-0763"
|
|
108277
108221
|
],
|
|
108278
108222
|
"clickup": [
|
|
108279
108223
|
"page-0275",
|
|
108280
|
-
"page-
|
|
108224
|
+
"page-0762",
|
|
108281
108225
|
"page-1054"
|
|
108282
108226
|
],
|
|
108283
108227
|
"clockify": [
|
|
@@ -108755,7 +108699,7 @@
|
|
|
108755
108699
|
"page-0874",
|
|
108756
108700
|
"page-1030",
|
|
108757
108701
|
"page-1032",
|
|
108758
|
-
"page-
|
|
108702
|
+
"page-1035",
|
|
108759
108703
|
"page-1036",
|
|
108760
108704
|
"page-1089",
|
|
108761
108705
|
"page-1205"
|
|
@@ -108848,11 +108792,11 @@
|
|
|
108848
108792
|
],
|
|
108849
108793
|
"odoo": [
|
|
108850
108794
|
"page-0400",
|
|
108851
|
-
"page-
|
|
108795
|
+
"page-0901"
|
|
108852
108796
|
],
|
|
108853
108797
|
"okta": [
|
|
108854
108798
|
"page-0401",
|
|
108855
|
-
"page-
|
|
108799
|
+
"page-0900",
|
|
108856
108800
|
"page-1205",
|
|
108857
108801
|
"page-1228",
|
|
108858
108802
|
"page-1237"
|
|
@@ -108917,7 +108861,7 @@
|
|
|
108917
108861
|
"page-1192",
|
|
108918
108862
|
"page-1225",
|
|
108919
108863
|
"page-1236",
|
|
108920
|
-
"page-
|
|
108864
|
+
"page-1248"
|
|
108921
108865
|
],
|
|
108922
108866
|
"bins": [
|
|
108923
108867
|
"page-0415"
|
|
@@ -109435,7 +109379,7 @@
|
|
|
109435
109379
|
],
|
|
109436
109380
|
"upload": [
|
|
109437
109381
|
"page-0507",
|
|
109438
|
-
"page-
|
|
109382
|
+
"page-0537",
|
|
109439
109383
|
"page-0663",
|
|
109440
109384
|
"page-0689"
|
|
109441
109385
|
],
|
|
@@ -109713,7 +109657,7 @@
|
|
|
109713
109657
|
"page-0633"
|
|
109714
109658
|
],
|
|
109715
109659
|
"analyze": [
|
|
109716
|
-
"page-
|
|
109660
|
+
"page-0536"
|
|
109717
109661
|
],
|
|
109718
109662
|
"classify": [
|
|
109719
109663
|
"page-0538"
|
|
@@ -109765,7 +109709,7 @@
|
|
|
109765
109709
|
"page-0649",
|
|
109766
109710
|
"page-0652",
|
|
109767
109711
|
"page-0662",
|
|
109768
|
-
"page-
|
|
109712
|
+
"page-0664",
|
|
109769
109713
|
"page-0683",
|
|
109770
109714
|
"page-0691",
|
|
109771
109715
|
"page-0709"
|
|
@@ -110141,7 +110085,7 @@
|
|
|
110141
110085
|
],
|
|
110142
110086
|
"plan": [
|
|
110143
110087
|
"page-0564",
|
|
110144
|
-
"page-
|
|
110088
|
+
"page-0901",
|
|
110145
110089
|
"page-1181",
|
|
110146
110090
|
"page-1192"
|
|
110147
110091
|
],
|
|
@@ -110452,7 +110396,7 @@
|
|
|
110452
110396
|
"instructions": [
|
|
110453
110397
|
"page-0644",
|
|
110454
110398
|
"page-1030",
|
|
110455
|
-
"page-
|
|
110399
|
+
"page-1035"
|
|
110456
110400
|
],
|
|
110457
110401
|
"compare": [
|
|
110458
110402
|
"page-0645",
|
|
@@ -110641,17 +110585,12 @@
|
|
|
110641
110585
|
"page-0669",
|
|
110642
110586
|
"page-0679"
|
|
110643
110587
|
],
|
|
110644
|
-
"commit": [
|
|
110645
|
-
"page-0664",
|
|
110646
|
-
"page-1205",
|
|
110647
|
-
"page-1211"
|
|
110648
|
-
],
|
|
110649
110588
|
"graphql": [
|
|
110650
|
-
"page-
|
|
110589
|
+
"page-0664",
|
|
110651
110590
|
"page-1204"
|
|
110652
110591
|
],
|
|
110653
110592
|
"ignore": [
|
|
110654
|
-
"page-
|
|
110593
|
+
"page-0664",
|
|
110655
110594
|
"page-0671",
|
|
110656
110595
|
"page-0683",
|
|
110657
110596
|
"page-0684",
|
|
@@ -110659,10 +110598,15 @@
|
|
|
110659
110598
|
"page-0709"
|
|
110660
110599
|
],
|
|
110661
110600
|
"headers": [
|
|
110662
|
-
"page-
|
|
110601
|
+
"page-0664",
|
|
110663
110602
|
"page-0709",
|
|
110664
110603
|
"page-0831"
|
|
110665
110604
|
],
|
|
110605
|
+
"commit": [
|
|
110606
|
+
"page-0665",
|
|
110607
|
+
"page-1205",
|
|
110608
|
+
"page-1211"
|
|
110609
|
+
],
|
|
110666
110610
|
"extraction": [
|
|
110667
110611
|
"page-0666"
|
|
110668
110612
|
],
|
|
@@ -111106,10 +111050,10 @@
|
|
|
111106
111050
|
"black": [
|
|
111107
111051
|
"page-0754"
|
|
111108
111052
|
],
|
|
111109
|
-
"
|
|
111053
|
+
"secure": [
|
|
111110
111054
|
"page-0758"
|
|
111111
111055
|
],
|
|
111112
|
-
"
|
|
111056
|
+
"meraki": [
|
|
111113
111057
|
"page-0759"
|
|
111114
111058
|
],
|
|
111115
111059
|
"umbrella": [
|
|
@@ -111257,7 +111201,7 @@
|
|
|
111257
111201
|
"selecting": [
|
|
111258
111202
|
"page-0861",
|
|
111259
111203
|
"page-0988",
|
|
111260
|
-
"page-
|
|
111204
|
+
"page-1249"
|
|
111261
111205
|
],
|
|
111262
111206
|
"domains": [
|
|
111263
111207
|
"page-0863"
|
|
@@ -111311,7 +111255,7 @@
|
|
|
111311
111255
|
"page-0898"
|
|
111312
111256
|
],
|
|
111313
111257
|
"ssws": [
|
|
111314
|
-
"page-
|
|
111258
|
+
"page-0900"
|
|
111315
111259
|
],
|
|
111316
111260
|
"opencti": [
|
|
111317
111261
|
"page-0906"
|
|
@@ -111466,16 +111410,16 @@
|
|
|
111466
111410
|
"yahoo": [
|
|
111467
111411
|
"page-1030",
|
|
111468
111412
|
"page-1033",
|
|
111469
|
-
"page-
|
|
111413
|
+
"page-1035",
|
|
111470
111414
|
"page-1037"
|
|
111471
111415
|
],
|
|
111472
111416
|
"listed": [
|
|
111473
111417
|
"page-1030",
|
|
111474
|
-
"page-
|
|
111418
|
+
"page-1035"
|
|
111475
111419
|
],
|
|
111476
111420
|
"verification": [
|
|
111477
111421
|
"page-1031",
|
|
111478
|
-
"page-
|
|
111422
|
+
"page-1034",
|
|
111479
111423
|
"page-1146",
|
|
111480
111424
|
"page-1171",
|
|
111481
111425
|
"page-1180"
|
|
@@ -111502,7 +111446,7 @@
|
|
|
111502
111446
|
"page-1127"
|
|
111503
111447
|
],
|
|
111504
111448
|
"instagram": [
|
|
111505
|
-
"page-
|
|
111449
|
+
"page-1128"
|
|
111506
111450
|
],
|
|
111507
111451
|
"workplace": [
|
|
111508
111452
|
"page-1135"
|
|
@@ -111994,35 +111938,35 @@
|
|
|
111994
111938
|
],
|
|
111995
111939
|
"privacy": [
|
|
111996
111940
|
"page-1200",
|
|
111997
|
-
"page-
|
|
111941
|
+
"page-1203"
|
|
111998
111942
|
],
|
|
111999
111943
|
"gdpr": [
|
|
112000
111944
|
"page-1202",
|
|
112001
111945
|
"page-1203"
|
|
112002
111946
|
],
|
|
112003
111947
|
"agreement": [
|
|
112004
|
-
"page-
|
|
111948
|
+
"page-1203"
|
|
112005
111949
|
],
|
|
112006
111950
|
"submitting": [
|
|
112007
|
-
"page-
|
|
111951
|
+
"page-1203"
|
|
112008
111952
|
],
|
|
112009
111953
|
"collects": [
|
|
112010
|
-
"page-
|
|
111954
|
+
"page-1203"
|
|
112011
111955
|
],
|
|
112012
111956
|
"collect": [
|
|
112013
|
-
"page-
|
|
111957
|
+
"page-1203"
|
|
112014
111958
|
],
|
|
112015
111959
|
"shares": [
|
|
112016
|
-
"page-
|
|
111960
|
+
"page-1203"
|
|
112017
111961
|
],
|
|
112018
111962
|
"identifiable": [
|
|
112019
|
-
"page-
|
|
111963
|
+
"page-1203"
|
|
112020
111964
|
],
|
|
112021
111965
|
"payment": [
|
|
112022
|
-
"page-
|
|
111966
|
+
"page-1203"
|
|
112023
111967
|
],
|
|
112024
111968
|
"processor": [
|
|
112025
|
-
"page-
|
|
111969
|
+
"page-1203"
|
|
112026
111970
|
],
|
|
112027
111971
|
"n8n@0": [
|
|
112028
111972
|
"page-1204"
|
|
@@ -112973,7 +112917,6 @@
|
|
|
112973
112917
|
"page-1203",
|
|
112974
112918
|
"page-1204",
|
|
112975
112919
|
"page-1205",
|
|
112976
|
-
"page-1206",
|
|
112977
112920
|
"page-1207",
|
|
112978
112921
|
"page-1208",
|
|
112979
112922
|
"page-1209",
|
|
@@ -114667,10 +114610,10 @@
|
|
|
114667
114610
|
"ftp": [
|
|
114668
114611
|
"page-0663"
|
|
114669
114612
|
],
|
|
114670
|
-
"
|
|
114613
|
+
"graphql": [
|
|
114671
114614
|
"page-0664"
|
|
114672
114615
|
],
|
|
114673
|
-
"
|
|
114616
|
+
"git": [
|
|
114674
114617
|
"page-0665"
|
|
114675
114618
|
],
|
|
114676
114619
|
"html": [
|