From e6b5bf2c3ab53e72b6921c81392d499f60e21712 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Thu, 14 Apr 2022 09:45:55 +0100 Subject: [PATCH 1/7] add markdown guide and add to nav ready for live --- docs/workflows/workflow-notes.md | 29 +++++++++++++++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 30 insertions(+) diff --git a/docs/workflows/workflow-notes.md b/docs/workflows/workflow-notes.md index 93e102d59..756d143de 100644 --- a/docs/workflows/workflow-notes.md +++ b/docs/workflows/workflow-notes.md @@ -26,3 +26,32 @@ You can: * Drag notes behind nodes. You can use this to visually group nodes. * Resize notes by hovering over the edge of the note and dragging to resize. +## Writing in Markdown + +Workflow notes support Markdown formatting. This section describes some common options. + +``` +The text in double asterisks will be **bold** + +The text in single asterisks will be *italic* + +Use # to indicate headings: +# This is a top-level heading +## This is a sub-heading +### This is a smaller sub-heading + +You can add links: +[Example](https://example.com/) + +Create lists with asterisks: + +* Item one +* Item two + +Or created ordered lists with numbers: + +1. Item one +2. Item two +``` + +For a more detailed guide, refer to [CommonMark's help](https://commonmark.org/help/). n8n uses [markdown-it](https://github.com/markdown-it/markdown-it), which implements the CommonMark specification. \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 02605af0a..5df8f4405 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -62,6 +62,7 @@ nav: - Connections: workflows/connections.md - Nodes: workflows/nodes.md - Items: workflows/items.md + - workflow notes: workflows/workflow-notes.md - Flow logic: - Overview: flow-logic/index.md - Merging: flow-logic/merging.md From bc94850c3c49a1ebf99f4ed14981c16c09ac07b8 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 25 Apr 2022 09:05:14 +0100 Subject: [PATCH 2/7] typo --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 5df8f4405..af8a2c3ea 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -62,7 +62,7 @@ nav: - Connections: workflows/connections.md - Nodes: workflows/nodes.md - Items: workflows/items.md - - workflow notes: workflows/workflow-notes.md + - Workflow notes: workflows/workflow-notes.md - Flow logic: - Overview: flow-logic/index.md - Merging: flow-logic/merging.md From 7ec072a768b14256e4eed9ddf70e0c3f157a7ce3 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 25 Apr 2022 10:27:25 +0100 Subject: [PATCH 3/7] updated name [skip ci] --- docs/workflows/{workflow-notes.md => sticky-notes.md} | 10 +++++----- mkdocs.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) rename docs/workflows/{workflow-notes.md => sticky-notes.md} (78%) diff --git a/docs/workflows/workflow-notes.md b/docs/workflows/sticky-notes.md similarity index 78% rename from docs/workflows/workflow-notes.md rename to docs/workflows/sticky-notes.md index 756d143de..62fdc1dfc 100644 --- a/docs/workflows/workflow-notes.md +++ b/docs/workflows/sticky-notes.md @@ -1,12 +1,12 @@ -# Workflow notes +# Sticky notes -Workflow notes allow you to annotate and comment on your workflows. +Sticky notes allow you to annotate and comment on your workflows. -We encourage using workflow notes heavily, especially on template workflows, to help other users understand your workflow. +We encourage using sticky notes heavily, especially on template workflows, to help other users understand your workflow. ## Create a note -Workflow notes are a type of core node. To add a new note: +Sticky notes are a type of core node. To add a new note: 1. Open the nodes panel. 2. Search for `note`. @@ -28,7 +28,7 @@ You can: ## Writing in Markdown -Workflow notes support Markdown formatting. This section describes some common options. +Sticky notes support Markdown formatting. This section describes some common options. ``` The text in double asterisks will be **bold** diff --git a/mkdocs.yml b/mkdocs.yml index af8a2c3ea..917000c0a 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -62,7 +62,7 @@ nav: - Connections: workflows/connections.md - Nodes: workflows/nodes.md - Items: workflows/items.md - - Workflow notes: workflows/workflow-notes.md + - Sticky notes: workflows/sticky-notes.md - Flow logic: - Overview: flow-logic/index.md - Merging: flow-logic/merging.md From 51d6ec07eb5c0e9f7623a08f7f3e3427db632b51 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 25 Apr 2022 11:16:25 +0100 Subject: [PATCH 4/7] started drafting release note [skip ci] --- docs/reference/release-notes.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/reference/release-notes.md b/docs/reference/release-notes.md index ea8a06b67..1d01bb3fd 100644 --- a/docs/reference/release-notes.md +++ b/docs/reference/release-notes.md @@ -1,5 +1,12 @@ # Release notes +## n8n@0.174.0 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.173.1...n8n@0.174.0) for this version.
+**Release date:** 2022-04-25 + +This release adds Sticky Notes, a new feature that allows you to annotate and comment on your workflows. Refer to the [Sticky notes](/workflows/sticky-notes/) for more information. + ## n8n@0.173.1 View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.173.0...n8n@0.173.1) for this version.
From f18ed1000c705740c4facc002e01212462b1b2b1 Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 25 Apr 2022 11:17:13 +0100 Subject: [PATCH 5/7] edits [skip ci] --- docs/workflows/sticky-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/workflows/sticky-notes.md b/docs/workflows/sticky-notes.md index 62fdc1dfc..85d51a17c 100644 --- a/docs/workflows/sticky-notes.md +++ b/docs/workflows/sticky-notes.md @@ -2,7 +2,7 @@ Sticky notes allow you to annotate and comment on your workflows. -We encourage using sticky notes heavily, especially on template workflows, to help other users understand your workflow. +n8n recommends using sticky notes heavily, especially on template workflows, to help other users understand your workflow. ## Create a note From ecf966fbf05dc21d5d6285c36b1e0686068cd47e Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 25 Apr 2022 13:00:44 +0100 Subject: [PATCH 6/7] added release note --- docs/reference/release-notes.md | 32 +++++++++++++++++++++++++++++++- docs/workflows/sticky-notes.md | 26 +++++++++++++------------- 2 files changed, 44 insertions(+), 14 deletions(-) diff --git a/docs/reference/release-notes.md b/docs/reference/release-notes.md index 1d01bb3fd..fd7f1e43a 100644 --- a/docs/reference/release-notes.md +++ b/docs/reference/release-notes.md @@ -5,7 +5,37 @@ View the [commits](https://github.com/n8n-io/n8n/compare/n8n@0.173.1...n8n@0.174.0) for this version.
**Release date:** 2022-04-25 -This release adds Sticky Notes, a new feature that allows you to annotate and comment on your workflows. Refer to the [Sticky notes](/workflows/sticky-notes/) for more information. +### New features + +This release adds Sticky Notes, a new feature that allows you to annotate and comment on your workflows. Refer to the [Sticky Notes](/workflows/sticky-notes/) for more information. + +### Enhancements + +* **core**: allow external OAuth connection. This enhancement adds support for connecting OAuth apps without access to n8n. +* All AWS nodes now support AWS temporary credentials. +* [Google Sheets node](/integrations/nodes/n8n-nodes-base.googleSheets/): Added upsert support. +* [Microsoft Teams node](/integrations/nodes/n8n-nodes-base.microsoftTeams/): adds several enhancements: + * An option to limit groups to "member of", rather than retrieving the whole directory. + * An option to get all tasks from a plan instead of just a group member. + * Autocompletion for plans, buckets, labels, and members in update fields for tasks. +* [MongoDB node](/integrations/nodes/n8n-nodes-base.mongoDb/): you can now parse dates using dot notation. + +### Bug fixes + + +* [Calendly trigger node](/integrations/trigger-nodes/n8n-nodes-base.calendlyTrigger/): updated the logo. +* [Microsoft OneDrive node](/integrations/nodes/n8n-nodes-base.microsoftOneDrive/): fixed an issue that was preventing upload of files with special characters in the file name. +* [QuickBooks node](/integrations/nodes/n8n-nodes-base.quickbooks/): fixed a pagination issue. + +### Contributors + +[Basit Ali](https://github.com/BasitAli) +[Cody Stamps](https://github.com/crstamps2) +[Luiz Eduardo de Oliveira](https://github.com/luizeof) +[Oliver Trajceski](https://github.com/SchnapsterDog) +[pemontto](https://github.com/pemontto) +[Ryan Goggin](https://github.com/Goggin) + ## n8n@0.173.1 diff --git a/docs/workflows/sticky-notes.md b/docs/workflows/sticky-notes.md index 85d51a17c..683d1317b 100644 --- a/docs/workflows/sticky-notes.md +++ b/docs/workflows/sticky-notes.md @@ -1,34 +1,34 @@ -# Sticky notes +# Sticky Notes -Sticky notes allow you to annotate and comment on your workflows. +Sticky Notes allow you to annotate and comment on your workflows. -n8n recommends using sticky notes heavily, especially on template workflows, to help other users understand your workflow. +n8n recommends using Sticky Notes heavily, especially on template workflows, to help other users understand your workflow. -## Create a note +## Create a Sticky Note -Sticky notes are a type of core node. To add a new note: +Sticky Notes are a core node. To add a new Sticky Note: 1. Open the nodes panel. 2. Search for `note`. -3. Click the **Note** node. n8n adds a new note to the canvas. +3. Click the **Sticky Note** node. n8n adds a new Sticky Note to the canvas. -## Edit a note +## Edit a Sticky Note -1. Double click the note you want to edit. +1. Double click the Sticky Note you want to edit. 2. Write your note. [This guide](https://commonmark.org/help/) explains how to format your text with Markdown. n8n uses [markdown-it](https://github.com/markdown-it/markdown-it), which implements the CommonMark specification. 3. Click away from the note, or press `Esc`, to stop editing. -## Note positioning +## Sticky Note positioning You can: -* Drag a note anywhere on the canvas. -* Drag notes behind nodes. You can use this to visually group nodes. -* Resize notes by hovering over the edge of the note and dragging to resize. +* Drag a Sticky Note anywhere on the canvas. +* Drag Sticky Notes behind nodes. You can use this to visually group nodes. +* Resize Sticky Notes by hovering over the edge of the note and dragging to resize. ## Writing in Markdown -Sticky notes support Markdown formatting. This section describes some common options. +Sticky Notes support Markdown formatting. This section describes some common options. ``` The text in double asterisks will be **bold** From dd5996c3cedd93bd0174b0307fae4bdf705f863d Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Mon, 25 Apr 2022 13:09:02 +0100 Subject: [PATCH 7/7] uppercase Note as it's part of the node name --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index e0888912c..037c0b7b6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -69,7 +69,7 @@ nav: - Connections: workflows/connections.md - Nodes: workflows/nodes.md - Items: workflows/items.md - - Sticky notes: workflows/sticky-notes.md + - Sticky Notes: workflows/sticky-notes.md - Flow logic: - Overview: flow-logic/index.md - Merging: flow-logic/merging.md