mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
🚀 Release 1.71.1 (#12074)
Co-authored-by: ivov <44588767+ivov@users.noreply.github.com>
This commit is contained in:
parent
4b6db264c5
commit
f003a1ceea
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,3 +1,17 @@
|
|||
## [1.71.1](https://github.com/n8n-io/n8n/compare/n8n@1.71.0...n8n@1.71.1) (2024-12-06)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **editor:** Don't reset all Parameter Inputs when switched to read-only ([#12063](https://github.com/n8n-io/n8n/issues/12063)) ([728dba2](https://github.com/n8n-io/n8n/commit/728dba26c94cb026b26cdafc8d19a8f5ecd3135a))
|
||||
* **editor:** Fix Nodeview.v2 reinitialise based on route changes ([#12062](https://github.com/n8n-io/n8n/issues/12062)) ([4b6db26](https://github.com/n8n-io/n8n/commit/4b6db264c56544b8fc0cf64140b43ee9eda331ce))
|
||||
* **editor:** Fix switching from v2 to v1 ([#12050](https://github.com/n8n-io/n8n/issues/12050)) ([1d0c4e0](https://github.com/n8n-io/n8n/commit/1d0c4e0cea9f5897e2fbc0963565f4582ce17c3e))
|
||||
* **editor:** Load node types in demo and preview modes ([#12048](https://github.com/n8n-io/n8n/issues/12048)) ([c24602f](https://github.com/n8n-io/n8n/commit/c24602f0cded1f0d1c9ce384a9a19bddd96780ed))
|
||||
* **editor:** Polyfill crypto.randomUUID ([#12052](https://github.com/n8n-io/n8n/issues/12052)) ([3ca8521](https://github.com/n8n-io/n8n/commit/3ca85217de2d467c436c2499d203df2cbb4f6bcf))
|
||||
* **editor:** Redirect Settings to the proper sub page depending on the instance type (cloud or not) ([#12053](https://github.com/n8n-io/n8n/issues/12053)) ([7a0a9e4](https://github.com/n8n-io/n8n/commit/7a0a9e4a7bcbe164df2e28497b464d3328e78225))
|
||||
|
||||
|
||||
|
||||
# [1.71.0](https://github.com/n8n-io/n8n/compare/n8n@1.70.0...n8n@1.71.0) (2024-12-04)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-monorepo",
|
||||
"version": "1.71.0",
|
||||
"version": "1.71.1",
|
||||
"private": true,
|
||||
"engines": {
|
||||
"node": ">=20.15",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@n8n/config",
|
||||
"version": "1.21.0",
|
||||
"version": "1.21.1",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist .turbo",
|
||||
"dev": "pnpm watch",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@n8n/task-runner",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist .turbo",
|
||||
"start": "node dist/start.js",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n",
|
||||
"version": "1.71.0",
|
||||
"version": "1.71.1",
|
||||
"description": "n8n Workflow Automation Tool",
|
||||
"main": "dist/index",
|
||||
"types": "dist/index.d.ts",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-core",
|
||||
"version": "1.71.0",
|
||||
"version": "1.71.1",
|
||||
"description": "Core functionality of n8n",
|
||||
"main": "dist/index",
|
||||
"types": "dist/index.d.ts",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-editor-ui",
|
||||
"version": "1.71.0",
|
||||
"version": "1.71.1",
|
||||
"description": "Workflow Editor UI for n8n",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-nodes-base",
|
||||
"version": "1.71.0",
|
||||
"version": "1.71.1",
|
||||
"description": "Base nodes of n8n",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue