From e9e1f0c9a96e34216e21694ddc426a1290faee82 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 17 Jun 2024 17:14:16 +0000 Subject: [PATCH] Release 6.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [skip ci] ## [6.0.0](https://github.com/eggjs/egg-core/compare/v5.3.1...v6.0.0) (2024-06-17) ### ⚠ BREAKING CHANGES * Drop Node.js < 18.19.0 support https://github.com/eggjs/egg-core/issues/264 the core part of https://github.com/eggjs/egg/issues/3644 Breaking changes: - Drop Node.js < 18.19.0 support - Drop generator function support - loader functions change to async function ### Features * export asyncLocalStorage instance to global ([#267](https://github.com/eggjs/egg-core/issues/267)) ([910fe85](https://github.com/eggjs/egg-core/commit/910fe855e990e5f9775df401243f1b8c2cfc2710)) * support cjs and esm both ([#265](https://github.com/eggjs/egg-core/issues/265)) ([fed5f35](https://github.com/eggjs/egg-core/commit/fed5f35dcb5de71be35a25a8ea85e8bc48b154d6)) ### Bug Fixes * use gals lib ([#268](https://github.com/eggjs/egg-core/issues/268)) ([72fafc8](https://github.com/eggjs/egg-core/commit/72fafc8abd4cec322c0a210aa797f28c4bfdae32)) --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3a1382a..d03f3819 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [6.0.0](https://github.com/eggjs/egg-core/compare/v5.3.1...v6.0.0) (2024-06-17) + + +### ⚠ BREAKING CHANGES + +* Drop Node.js < 18.19.0 support + +https://github.com/eggjs/egg-core/issues/264 + +the core part of https://github.com/eggjs/egg/issues/3644 + +Breaking changes: +- Drop Node.js < 18.19.0 support +- Drop generator function support +- loader functions change to async function + +### Features + +* export asyncLocalStorage instance to global ([#267](https://github.com/eggjs/egg-core/issues/267)) ([910fe85](https://github.com/eggjs/egg-core/commit/910fe855e990e5f9775df401243f1b8c2cfc2710)) +* support cjs and esm both ([#265](https://github.com/eggjs/egg-core/issues/265)) ([fed5f35](https://github.com/eggjs/egg-core/commit/fed5f35dcb5de71be35a25a8ea85e8bc48b154d6)) + + +### Bug Fixes + +* use gals lib ([#268](https://github.com/eggjs/egg-core/issues/268)) ([72fafc8](https://github.com/eggjs/egg-core/commit/72fafc8abd4cec322c0a210aa797f28c4bfdae32)) + ## [5.3.1](https://github.com/eggjs/egg-core/compare/v5.3.0...v5.3.1) (2023-04-06) diff --git a/package.json b/package.json index 56ba117c..4a3e9d58 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/core", - "version": "6.0.0-beta.2", + "version": "6.0.0", "publishConfig": { "access": "public" },