228.2 is latest and next

This commit is contained in:
Deborah Barnard
2023-05-24 10:22:47 +01:00
parent 45f8c2cfe5
commit a52b2d8b33
3 changed files with 37 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
!!! note "Latest and Next versions"
n8n releases a new minor version most weeks. The `latest` version is for production use. `next` is the most recent release. You should treat `next` as a beta: it may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
Current `latest`: 0.227.1
Current `latest`: 0.228.2
Current `next`: 0.228.2

View File

@@ -0,0 +1,33 @@
---
description: Design your workflow's logic.
---
[TODO: I'm not sure this page is helpful, especially if focused on a dev audience]
# Plan your workflow logic
When you build a workflow, you create a set of instructions for how to process data. This can include:
* Accessing external applications to retrieve and export data.
* Manipulating data.
* Performing different actions based on the data.
To define your data process, you link nodes together in a sequence. This is your workflow logic. n8n supports complex logic.
!!! Details "What is data?"
In n8n, data is any information processed by the workflow. n8n formats data as JSON. Refer to [Data](/data/) for more information on the data structure, and working with n8n workflow data.
## Fetch data
Your workflow needs data. There are three main ways to get this data:
* From the trigger node that starts the workflow. For example, if you use the Gmail trigger to start a workflow in response to an event in Gmail, the Gmail trigger node provides data about the event.
* Using an app node to retrieve data. For example, you can use the Gmail node to fetch information from Gmail (after starting the workflow with a different trigger).
* Generate the data within the workflow. For example, you can use the Code node to create data.
## Manipulate data

View File

@@ -33,10 +33,10 @@ For full release details, refer to [Releases](https://github.com/n8n-io/n8n/rele
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.228.1...n8n@0.228.2){:target=_blank .external-link} for this version.<br />
**Release date:** 2023-05-15
This is a bug fix release.
!!! note "Latest version"
This 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){:target=_blank .external-link}.
!!! note "Next version"
This 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){:target=_blank .external-link}.
This is a bug fix release.
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
@@ -77,9 +77,6 @@ This release introduces the [npm](/integrations/builtin/app-nodes/n8n-nodes-base
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.227.0...n8n@0.227.1){:target=_blank .external-link} for this version.<br />
**Release date:** 2023-05-15
!!! note "Latest version"
This 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){:target=_blank .external-link}.
This is a bug fix release.
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.