diff --git a/README.md b/README.md index 0896adac6e..0150479ff0 100644 --- a/README.md +++ b/README.md @@ -63,9 +63,9 @@ check out our job posts: -## What does n8n mean and how do you pronounce it +## What does n8n mean and how do you pronounce it? -**Short answer:** It means "nodemation" +**Short answer:** It means "nodemation" and it is pronounced as n-eight-n. **Long answer:** I get that question quite often (more often than I expected) so I decided it is probably best to answer it here. While looking for a diff --git a/docker/images/n8n/README.md b/docker/images/n8n/README.md index f3c662d574..ab8c4b56ed 100644 --- a/docker/images/n8n/README.md +++ b/docker/images/n8n/README.md @@ -260,9 +260,9 @@ docker build --build-arg N8N_VERSION=0.18.1 -t n8nio/n8n:0.18.1 . ``` -## What does n8n mean and how do you pronounce it +## What does n8n mean and how do you pronounce it? -**Short answer:** It means "nodemation" +**Short answer:** It means "nodemation" and it is pronounced as n-eight-n. **Long answer:** I get that question quite often (more often than I expected) so I decided it is probably best to answer it here. While looking for a diff --git a/packages/cli/BREAKING-CHANGES.md b/packages/cli/BREAKING-CHANGES.md index 68be5ce947..9269427ae0 100644 --- a/packages/cli/BREAKING-CHANGES.md +++ b/packages/cli/BREAKING-CHANGES.md @@ -2,6 +2,26 @@ This list shows all the versions which include breaking changes and how to upgrade. +## 0.79.0 + +### What changed? + +We have renamed the operations in the Todoist Node for consistency with the codebase. We also deleted the `close_match` and `delete_match` operations as these can be accomplished using the following operations: `getAll`, `close`, and `delete`. + +### When is action necessary? + +When one of the following operations is used: + +- close_by +- close_match +- delete_id +- delete_match + +### How to upgrade: + +After upgrading, open all workflows which contain the Todoist Node. Set the corresponding operation, and then save the workflow. + +If the operations `close_match` or `delete_match` are used, recreate them using the operations: `getAll`, `delete`, and `close`. ## 0.69.0 diff --git a/packages/cli/README.md b/packages/cli/README.md index b67c5cc524..b7cbd5417d 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -60,9 +60,9 @@ If you are interested in a hosted version of n8n on our infrastructure please co -## What does n8n mean and how do you pronounce it +## What does n8n mean and how do you pronounce it? -**Short answer:** It means "nodemation" +**Short answer:** It means "nodemation" and it is pronounced as n-eight-n. **Long answer:** I get that question quite often (more often than I expected) so I decided it is probably best to answer it here. While looking for a diff --git a/packages/editor-ui/src/Interface.ts b/packages/editor-ui/src/Interface.ts index 881e938b60..2f3973b848 100644 --- a/packages/editor-ui/src/Interface.ts +++ b/packages/editor-ui/src/Interface.ts @@ -417,3 +417,5 @@ export interface ITimeoutHMS { minutes: number; seconds: number; } + +export type WorkflowTitleStatus = 'EXECUTING' | 'IDLE' | 'ERROR'; diff --git a/packages/editor-ui/src/components/CredentialsEdit.vue b/packages/editor-ui/src/components/CredentialsEdit.vue index 2cf93f312c..bc34803365 100644 --- a/packages/editor-ui/src/components/CredentialsEdit.vue +++ b/packages/editor-ui/src/components/CredentialsEdit.vue @@ -1,6 +1,6 @@