mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
🚀 Release 1.70.3 (#12067)
Co-authored-by: ivov <44588767+ivov@users.noreply.github.com>
This commit is contained in:
parent
92e27737b3
commit
6715662bb8
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,3 +1,16 @@
|
|||
## [1.70.3](https://github.com/n8n-io/n8n/compare/n8n@1.70.2...n8n@1.70.3) (2024-12-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **editor:** Don't reset all Parameter Inputs when switched to read-only ([#12063](https://github.com/n8n-io/n8n/issues/12063)) ([86b80e4](https://github.com/n8n-io/n8n/commit/86b80e4900bc404238e4c81a8334cd14a51b845f))
|
||||
* **editor:** Fix Nodeview.v2 reinitialise based on route changes ([#12062](https://github.com/n8n-io/n8n/issues/12062)) ([92e2773](https://github.com/n8n-io/n8n/commit/92e27737b3d7246b9cbd39c54e8ea4aa271224c5))
|
||||
* **editor:** Fix switching from v2 to v1 ([#12050](https://github.com/n8n-io/n8n/issues/12050)) ([deaab8b](https://github.com/n8n-io/n8n/commit/deaab8b8d99be7b520327ff1dd9df5dd743b258a))
|
||||
* **editor:** Load node types in demo and preview modes ([#12048](https://github.com/n8n-io/n8n/issues/12048)) ([104d56e](https://github.com/n8n-io/n8n/commit/104d56e7b19e89f4371b0fe5db96ca1c4dda81d4))
|
||||
* **editor:** Polyfill crypto.randomUUID ([#12052](https://github.com/n8n-io/n8n/issues/12052)) ([6f4ea58](https://github.com/n8n-io/n8n/commit/6f4ea58ef666ce91e6471bf6fadea1b08a1ce68d))
|
||||
|
||||
|
||||
|
||||
## [1.70.2](https://github.com/n8n-io/n8n/compare/n8n@1.70.1...n8n@1.70.2) (2024-12-04)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-monorepo",
|
||||
"version": "1.70.2",
|
||||
"version": "1.70.3",
|
||||
"private": true,
|
||||
"engines": {
|
||||
"node": ">=20.15",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@n8n/config",
|
||||
"version": "1.20.0",
|
||||
"version": "1.20.1",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist .turbo",
|
||||
"dev": "pnpm watch",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@n8n/task-runner",
|
||||
"version": "1.8.1",
|
||||
"version": "1.8.2",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist .turbo",
|
||||
"start": "node dist/start.js",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n",
|
||||
"version": "1.70.2",
|
||||
"version": "1.70.3",
|
||||
"description": "n8n Workflow Automation Tool",
|
||||
"main": "dist/index",
|
||||
"types": "dist/index.d.ts",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-core",
|
||||
"version": "1.70.0",
|
||||
"version": "1.70.1",
|
||||
"description": "Core functionality of n8n",
|
||||
"main": "dist/index",
|
||||
"types": "dist/index.d.ts",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-editor-ui",
|
||||
"version": "1.70.1",
|
||||
"version": "1.70.2",
|
||||
"description": "Workflow Editor UI for n8n",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "n8n-nodes-base",
|
||||
"version": "1.70.0",
|
||||
"version": "1.70.1",
|
||||
"description": "Base nodes of n8n",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue