chore: release packages (#389)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-12-29 17:14:53 +08:00
committed by GitHub
parent afdeb00b4d
commit 4cf868a769
5 changed files with 23 additions and 16 deletions

View File

@@ -1,14 +0,0 @@
---
"@esengine/server": minor
---
feat(server): 添加可插拔速率限制系统 | add pluggable rate limiting system
- 新增令牌桶策略 (`TokenBucketStrategy`) - 推荐用于一般场景
- 新增滑动窗口策略 (`SlidingWindowStrategy`) - 精确跟踪
- 新增固定窗口策略 (`FixedWindowStrategy`) - 简单高效
- 新增房间速率限制 mixin (`withRateLimit`)
- 新增速率限制装饰器 (`@rateLimit`, `@noRateLimit`)
- 新增按消息类型限流装饰器 (`@rateLimitMessage`, `@noRateLimitMessage`)
- 支持与认证系统组合使用
- 导出路径: `@esengine/server/ratelimit`

View File

@@ -1,5 +1,19 @@
# @esengine/server # @esengine/server
## 1.3.0
### Minor Changes
- [#388](https://github.com/esengine/esengine/pull/388) [`afdeb00`](https://github.com/esengine/esengine/commit/afdeb00b4df9427e7f03b91558bf95804a837b70) Thanks [@esengine](https://github.com/esengine)! - feat(server): 添加可插拔速率限制系统 | add pluggable rate limiting system
- 新增令牌桶策略 (`TokenBucketStrategy`) - 推荐用于一般场景
- 新增滑动窗口策略 (`SlidingWindowStrategy`) - 精确跟踪
- 新增固定窗口策略 (`FixedWindowStrategy`) - 简单高效
- 新增房间速率限制 mixin (`withRateLimit`)
- 新增速率限制装饰器 (`@rateLimit`, `@noRateLimit`)
- 新增按消息类型限流装饰器 (`@rateLimitMessage`, `@noRateLimitMessage`)
- 支持与认证系统组合使用
- 导出路径: `@esengine/server/ratelimit`
## 1.2.0 ## 1.2.0
### Minor Changes ### Minor Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/server", "name": "@esengine/server",
"version": "1.2.0", "version": "1.3.0",
"description": "Game server framework for ESEngine with file-based routing", "description": "Game server framework for ESEngine with file-based routing",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,5 +1,12 @@
# @esengine/transaction # @esengine/transaction
## 2.0.2
### Patch Changes
- Updated dependencies [[`afdeb00`](https://github.com/esengine/esengine/commit/afdeb00b4df9427e7f03b91558bf95804a837b70)]:
- @esengine/server@1.3.0
## 2.0.1 ## 2.0.1
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/transaction", "name": "@esengine/transaction",
"version": "2.0.1", "version": "2.0.2",
"description": "Game transaction system with distributed support | 游戏事务系统,支持分布式事务", "description": "Game transaction system with distributed support | 游戏事务系统,支持分布式事务",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",