mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
🔀 Merge branch 'master' into oauth-support
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# n8n Breaking Changes
|
||||
|
||||
This list shows all the versions which include breaking changes and how to upgrade
|
||||
This list shows all the versions which include breaking changes and how to upgrade.
|
||||
|
||||
|
||||
## ???
|
||||
@@ -31,6 +31,62 @@ it has to get changed to:
|
||||
```
|
||||
|
||||
|
||||
## 0.67.0
|
||||
|
||||
### What changed?
|
||||
|
||||
The names of the following nodes were not set correctly and got fixed:
|
||||
- AMQP Sender
|
||||
- Bitbucket-Trigger
|
||||
- Coda
|
||||
- Eventbrite-Trigger
|
||||
- Flow
|
||||
- Gumroad-Trigger
|
||||
- Jira
|
||||
- Mailchimp-Trigger
|
||||
- PayPal Trigger
|
||||
- Read PDF
|
||||
- Rocketchat
|
||||
- Shopify
|
||||
- Shopify-Trigger
|
||||
- Stripe-Trigger
|
||||
- Toggl-Trigger
|
||||
|
||||
### When is action necessary?
|
||||
|
||||
If any of the nodes mentioned above, are used in any of your workflows.
|
||||
|
||||
### How to upgrade:
|
||||
|
||||
For the nodes mentioned above, you'll need to give them access to the credentials again by opening the credentials and moving them from "No Access" to "Access". After you've done that, there are two ways to upgrade the workflows and to make them work in the new version:
|
||||
|
||||
**Simple**
|
||||
|
||||
- Note down the settings of the nodes before upgrading
|
||||
- After upgrading, delete the nodes mentioned above from your workflow, and recreate them
|
||||
|
||||
**Advanced**
|
||||
|
||||
After upgrading, select the whole workflow in the editor, copy it, and paste it into a text editor. In the JSON, change the node types manually by replacing the values for "type" as follows:
|
||||
- "n8n-nodes-base.amqpSender" -> "n8n-nodes-base.amqp"
|
||||
- "n8n-nodes-base.bitbucket" -> "n8n-nodes-base.bitbucketTrigger"
|
||||
- "n8n-nodes-base.Coda" -> "n8n-nodes-base.coda"
|
||||
- "n8n-nodes-base.eventbrite" -> "n8n-nodes-base.eventbriteTrigger"
|
||||
- "n8n-nodes-base.Flow" -> "n8n-nodes-base.flow"
|
||||
- "n8n-nodes-base.gumroad" -> "n8n-nodes-base.gumroadTrigger"
|
||||
- "n8n-nodes-base.Jira Software Cloud" -> "n8n-nodes-base.jira"
|
||||
- "n8n-nodes-base.Mailchimp" -> "n8n-nodes-base.mailchimpTrigger"
|
||||
- "n8n-nodes-base.PayPal" -> "n8n-nodes-base.payPalTrigger"
|
||||
- "n8n-nodes-base.Read PDF" -> "n8n-nodes-base.readPDF"
|
||||
- "n8n-nodes-base.Rocketchat" -> "n8n-nodes-base.rocketchat"
|
||||
- "n8n-nodes-base.shopify" -> "n8n-nodes-base.shopifyTrigger"
|
||||
- "n8n-nodes-base.shopifyNode" -> "n8n-nodes-base.shopify"
|
||||
- "n8n-nodes-base.stripe" -> "n8n-nodes-base.stripeTrigger"
|
||||
- "n8n-nodes-base.toggl" -> "n8n-nodes-base.togglTrigger"
|
||||
|
||||
Then delete all existing nodes, and then paste the changed JSON directly into n8n. It should then recreate all the nodes and connections again, this time with working nodes.
|
||||
|
||||
|
||||
## 0.62.0
|
||||
|
||||
### What changed?
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "n8n",
|
||||
"version": "0.66.0",
|
||||
"version": "0.67.0",
|
||||
"description": "n8n Workflow Automation Tool",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"homepage": "https://n8n.io",
|
||||
@@ -99,10 +99,10 @@
|
||||
"lodash.get": "^4.4.2",
|
||||
"mongodb": "^3.5.5",
|
||||
"mysql2": "^2.0.1",
|
||||
"n8n-core": "~0.33.0",
|
||||
"n8n-editor-ui": "~0.44.0",
|
||||
"n8n-nodes-base": "~0.61.0",
|
||||
"n8n-workflow": "~0.30.0",
|
||||
"n8n-core": "~0.34.0",
|
||||
"n8n-editor-ui": "~0.45.0",
|
||||
"n8n-nodes-base": "~0.62.0",
|
||||
"n8n-workflow": "~0.31.0",
|
||||
"open": "^7.0.0",
|
||||
"pg": "^7.11.0",
|
||||
"request-promise-native": "^1.0.7",
|
||||
|
||||
Reference in New Issue
Block a user