From e17358f124d8075b5098be4a18b1f57ba054fe3d Mon Sep 17 00:00:00 2001 From: Serhii Shymkiv Date: Sat, 11 May 2024 18:49:56 +0300 Subject: [PATCH] Reflect o1js node engines requirements. --- CHANGELOG.md | 5 ++++- package.json | 2 +- templates/project-ts/package.json | 3 +++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c9d28e..fdf8ab8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Unreleased +### Breaking changes + +- NodeJS minimum version changed in order to reflect the `o1js` requirements. [#641](https://github.com/o1-labs/zkapp-cli/pull/641) + ## [0.20.2](https://github.com/o1-labs/zkapp-cli/compare/0.20.1...0.20.2) - 2024-05-07 ### Fixed @@ -28,7 +32,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Added - Extend information printed during deployment procedure. [#631](https://github.com/o1-labs/zkapp-cli/pull/631) - - Add ASCII o1Labs logo to zk help menu. [#620](https://github.com/o1-labs/zkapp-cli/pull/620) ### Fixed diff --git a/package.json b/package.json index b28214d8..0c9731c4 100644 --- a/package.json +++ b/package.json @@ -95,6 +95,6 @@ "zx": "^7.2.3" }, "engines": { - "node": ">=16.0.0" + "node": ">=18.14.0" } } diff --git a/templates/project-ts/package.json b/templates/project-ts/package.json index 76c71079..e49d7082 100644 --- a/templates/project-ts/package.json +++ b/templates/project-ts/package.json @@ -37,5 +37,8 @@ }, "peerDependencies": { "o1js": "1.*" + }, + "engines": { + "node": ">=18.14.0" } }