mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🚀 Release 1.71.2 (#12130)
Co-authored-by: tomi <10324676+tomi@users.noreply.github.com>
This commit is contained in:
parent
36eb25c9f5
commit
858b86a284
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,3 +1,18 @@
|
|||
## [1.71.2](https://github.com/n8n-io/n8n/compare/n8n@1.71.1...n8n@1.71.2) (2024-12-10)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **core:** Make sure task runner exits ([#12123](https://github.com/n8n-io/n8n/issues/12123)) ([78315ac](https://github.com/n8n-io/n8n/commit/78315aca3d1e5f11503426874debc7c2b0045e9e))
|
||||
* **editor:** Fix svg background pattern rendering on safari ([#12079](https://github.com/n8n-io/n8n/issues/12079)) ([36eb25c](https://github.com/n8n-io/n8n/commit/36eb25c9f5501ce67a46fde49ab09be5154b35f6))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **core:** Cancel runner task on timeout in external mode ([#12101](https://github.com/n8n-io/n8n/issues/12101)) ([f18263b](https://github.com/n8n-io/n8n/commit/f18263bc8f58b6f3193562198cd54c1125d70b9e))
|
||||
|
||||
|
||||
|
||||
## [1.71.1](https://github.com/n8n-io/n8n/compare/n8n@1.71.0...n8n@1.71.1) (2024-12-06)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-monorepo",
|
||||
"version": "1.71.1",
|
||||
"version": "1.71.2",
|
||||
"private": true,
|
||||
"engines": {
|
||||
"node": ">=20.15",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@n8n/config",
|
||||
"version": "1.21.1",
|
||||
"version": "1.21.2",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist .turbo",
|
||||
"dev": "pnpm watch",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@n8n/task-runner",
|
||||
"version": "1.9.1",
|
||||
"version": "1.9.2",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist .turbo",
|
||||
"start": "node dist/start.js",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n",
|
||||
"version": "1.71.1",
|
||||
"version": "1.71.2",
|
||||
"description": "n8n Workflow Automation Tool",
|
||||
"main": "dist/index",
|
||||
"types": "dist/index.d.ts",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-core",
|
||||
"version": "1.71.1",
|
||||
"version": "1.71.2",
|
||||
"description": "Core functionality of n8n",
|
||||
"main": "dist/index",
|
||||
"types": "dist/index.d.ts",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-editor-ui",
|
||||
"version": "1.71.1",
|
||||
"version": "1.71.2",
|
||||
"description": "Workflow Editor UI for n8n",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-nodes-base",
|
||||
"version": "1.71.1",
|
||||
"version": "1.71.2",
|
||||
"description": "Base nodes of n8n",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue