diff --git a/CHANGELOG.md b/CHANGELOG.md index 5175bcf979..6eccec3ee7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [1.70.2](https://github.com/n8n-io/n8n/compare/n8n@1.70.1...n8n@1.70.2) (2024-12-04) + + +### Bug Fixes + +* **core:** Opt-out from optimizations if `$item` is used ([#12036](https://github.com/n8n-io/n8n/issues/12036)) ([dfa1806](https://github.com/n8n-io/n8n/commit/dfa1806fd40b17081e4315abaaa934ab068d1036)) +* **core:** Use the configured timezone in task runner ([#12032](https://github.com/n8n-io/n8n/issues/12032)) ([b0f6c6f](https://github.com/n8n-io/n8n/commit/b0f6c6f0648a89ab4565274ed37cad7225cbc6da)) + + + ## [1.70.1](https://github.com/n8n-io/n8n/compare/n8n@1.70.0...n8n@1.70.1) (2024-11-29) diff --git a/package.json b/package.json index e6f7afdc43..7489784587 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "n8n-monorepo", - "version": "1.70.1", + "version": "1.70.2", "private": true, "engines": { "node": ">=20.15", diff --git a/packages/@n8n/task-runner/package.json b/packages/@n8n/task-runner/package.json index 285d56840f..b73c67f778 100644 --- a/packages/@n8n/task-runner/package.json +++ b/packages/@n8n/task-runner/package.json @@ -1,6 +1,6 @@ { "name": "@n8n/task-runner", - "version": "1.8.0", + "version": "1.8.1", "scripts": { "clean": "rimraf dist .turbo", "start": "node dist/start.js", diff --git a/packages/cli/package.json b/packages/cli/package.json index e4a0de1b39..210d100bf5 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "n8n", - "version": "1.70.1", + "version": "1.70.2", "description": "n8n Workflow Automation Tool", "main": "dist/index", "types": "dist/index.d.ts",