docs: Document own mode removal in BREAKING-CHANGES.md (no-changelog) (#8632)

This commit is contained in:
Danny Martini 2024-02-14 16:26:01 +01:00 committed by GitHub
parent 1116a28b45
commit 24859cfef5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,19 @@
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.
## 1.27.0
### What changed?
The execution mode `own` was removed.
If `EXECUTIONS_PROCESS` is set to `main` or if `executions.process` in a config file is set to `main` n8n will print a warning, but start up normally.
If `EXECUTIONS_PROCESS` is set to `own` or if `executions.process` in a config file is set to `own` n8n will print an error message and refuse to start up.
### When is action necessary?
If you use `own` mode and need the isolation and performance gains, please consider using queue mode instead, otherwise switch to main mode by removing the environment variable or config field.
If you have the environment variable `EXECUTIONS_PROCESS` or the config field `executions.process` set, please remove them. The environment variable has no effect anymore and the configuration field will be removed in future releases, prevent n8n from starting if it is still set.
## 1.25.0 ## 1.25.0
### What changed? ### What changed?