From 6a439ea81bb64218e42f338155af32075c0de2b6 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 4 Feb 2025 02:58:56 +0000 Subject: [PATCH] Release 2.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [skip ci] ## [2.0.0](https://github.com/eggjs/egg-boilerplate-ts/compare/v1.11.1...v2.0.0) (2025-02-04) ### ⚠ BREAKING CHANGES * drop Node.js < 18.19.0 support part of https://github.com/eggjs/egg/issues/3644 https://github.com/eggjs/egg/issues/5257 ## Summary by CodeRabbit ## Release Notes - **Project Configuration** - Updated Node.js version support to 18, 20, and 22 - Updated TypeScript configuration to ES2022 and NodeNext module resolution - Updated minimum Node.js requirement to version 18 - Added MIT license - **Dependencies** - Upgraded several development dependencies - Updated testing and build tools to latest versions - **Documentation** - Added Contributors section to README - Updated project requirements documentation - **Maintenance** - Updated `.gitignore` to exclude `package-lock.json` - Removed pull request template - Introduced a new configuration file for unit tests ### Features * support cjs and esm both by tshy ([#27](https://github.com/eggjs/egg-boilerplate-ts/issues/27)) ([b750157](https://github.com/eggjs/egg-boilerplate-ts/commit/b7501572bd043bea1d5b8976a15f3c1e600e24df)) --- CHANGELOG.md | 42 ++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e59126..bac4ce0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,47 @@ # Changelog +## [2.0.0](https://github.com/eggjs/egg-boilerplate-ts/compare/v1.11.1...v2.0.0) (2025-02-04) + + +### ⚠ BREAKING CHANGES + +* drop Node.js < 18.19.0 support + +part of https://github.com/eggjs/egg/issues/3644 + +https://github.com/eggjs/egg/issues/5257 + + +## Summary by CodeRabbit + +## Release Notes + +- **Project Configuration** + - Updated Node.js version support to 18, 20, and 22 +- Updated TypeScript configuration to ES2022 and NodeNext module +resolution + - Updated minimum Node.js requirement to version 18 + - Added MIT license + +- **Dependencies** + - Upgraded several development dependencies + - Updated testing and build tools to latest versions + +- **Documentation** + - Added Contributors section to README + - Updated project requirements documentation + +- **Maintenance** + - Updated `.gitignore` to exclude `package-lock.json` + - Removed pull request template + - Introduced a new configuration file for unit tests + + +### Features + +* support cjs and esm both by tshy ([#27](https://github.com/eggjs/egg-boilerplate-ts/issues/27)) ([b750157](https://github.com/eggjs/egg-boilerplate-ts/commit/b7501572bd043bea1d5b8976a15f3c1e600e24df)) + ## [1.11.1](https://github.com/eggjs/egg-boilerplate-ts/compare/v1.11.0...v1.11.1) (2024-01-07) diff --git a/package.json b/package.json index 6738696..1ed77c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "egg-boilerplate-ts", - "version": "1.11.1", + "version": "2.0.0", "description": "boilerplate for tegg", "scripts": { "lint": "eslint . --resolve-plugins-relative-to .",