From be0b2e6b62a78c7cc8dc13c76fd3b50176ddd43d Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 21 Jan 2025 15:18:11 +0000 Subject: [PATCH] Release 3.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [skip ci] ## [3.0.0](https://github.com/eggjs/redis/compare/v2.6.1...v3.0.0) (2025-01-21) ### ⚠ 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 Here are the release notes for this update: - **New Features** - Updated Redis plugin to support Valkey and Redis - Added support for Node.js 18.19.0 and newer versions - Enhanced TypeScript configuration and type definitions - **Breaking Changes** - Renamed package from `egg-redis` to `@eggjs/redis` - Migrated from generator functions to async/await syntax - Updated minimum Node.js version requirement to 18.19.0 - **Improvements** - Improved Redis client configuration options - Enhanced module compatibility with ES modules - Updated dependencies and plugin configuration - **Bug Fixes** - Refined Redis connection and initialization process - Improved error handling and logging for Redis connections ### Features * support cjs and esm both by tshy ([#44](https://github.com/eggjs/redis/issues/44)) ([ceadd9d](https://github.com/eggjs/redis/commit/ceadd9ded3b31a41dac730846b537fbefd4d7687)) --- CHANGELOG.md | 43 +++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cf81b2..507c3c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,48 @@ # Changelog +## [3.0.0](https://github.com/eggjs/redis/compare/v2.6.1...v3.0.0) (2025-01-21) + + +### ⚠ 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 + +Here are the release notes for this update: + +- **New Features** + - Updated Redis plugin to support Valkey and Redis + - Added support for Node.js 18.19.0 and newer versions + - Enhanced TypeScript configuration and type definitions + +- **Breaking Changes** + - Renamed package from `egg-redis` to `@eggjs/redis` + - Migrated from generator functions to async/await syntax + - Updated minimum Node.js version requirement to 18.19.0 + +- **Improvements** + - Improved Redis client configuration options + - Enhanced module compatibility with ES modules + - Updated dependencies and plugin configuration + +- **Bug Fixes** + - Refined Redis connection and initialization process + - Improved error handling and logging for Redis connections + + + +### Features + +* support cjs and esm both by tshy ([#44](https://github.com/eggjs/redis/issues/44)) ([ceadd9d](https://github.com/eggjs/redis/commit/ceadd9ded3b31a41dac730846b537fbefd4d7687)) + ## [2.6.1](https://github.com/eggjs/redis/compare/v2.6.0...v2.6.1) (2025-01-19) diff --git a/package.json b/package.json index 6e7901c..c1fa6ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/redis", - "version": "2.6.1", + "version": "3.0.0", "publishConfig": { "access": "public" },