chore(release): 准备发布 v2.3.2 和 worker-generator v1.0.0

- 更新 @esengine/ecs-framework 版本号到 2.3.2
- 更新中英文 changelog
This commit is contained in:
yhh
2025-12-08 17:04:01 +08:00
parent dfd0dfc7f9
commit a733a53d3e
3 changed files with 49 additions and 1 deletions

View File

@@ -4,6 +4,30 @@ This document records the version update history of the `@esengine/ecs-framework
---
## v2.3.2 (2025-12-08)
### Features
- **WeChat Mini Game Worker Support**: Add complete Worker support for WeChat Mini Game platform (#297)
- New `workerScriptPath` config option for pre-compiled Worker script path
- Fix WeChat Mini Game Worker message format difference (`res` is data directly, no `.data` wrapper)
- Applicable to WeChat Mini Game and other platforms that don't support dynamic scripts
### New Package
- **@esengine/worker-generator** `v1.0.0`: CLI tool to auto-generate Worker files from `WorkerEntitySystem` subclasses
- Automatically scan and extract `workerProcess` method body
- Support `--wechat` mode, use TypeScript compiler to convert to ES5 syntax
- Read `workerScriptPath` config from code, generate to specified path
- Generate `worker-mapping.json` mapping file
### Documentation
- Updated Worker system documentation with WeChat Mini Game support section
- Added English Worker system documentation (`docs/en/guide/worker-system.md`)
---
## v2.3.1 (2025-12-07)
### Bug Fixes