feat: upgrade version to v1.0.7 (#754)

- feat: |Admin| 新增 IP 黑名单功能,用于限制访问频率较高的 API
- feat: |Admin| 新增 RATE_LIMIT_API_DAILY_REQUESTS 配置,用于限制每日 API 请求次数
- fix: |Admin| IP 黑名单检查增加错误处理,提高系统稳定性

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Dream Hunter
2025-11-03 21:00:44 +08:00
committed by GitHub
parent be36967b80
commit 8b7ddae4f6
9 changed files with 1600 additions and 1593 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "cloudflare_temp_email",
"version": "1.0.6",
"version": "1.0.7",
"private": true,
"type": "module",
"scripts": {
@@ -11,23 +11,23 @@
"build": "wrangler deploy --dry-run --outdir dist --minify"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251011.0",
"@cloudflare/workers-types": "^4.20251014.0",
"@eslint/js": "9.18.0",
"@simplewebauthn/types": "10.0.0",
"@types/node": "^22.18.10",
"@types/node": "^22.19.0",
"eslint": "9.18.0",
"globals": "^15.15.0",
"typescript-eslint": "^8.46.0",
"wrangler": "^4.42.2"
"typescript-eslint": "^8.46.2",
"wrangler": "^4.45.3"
},
"dependencies": {
"@aws-sdk/client-s3": "3.888.0",
"@aws-sdk/s3-request-presigner": "3.888.0",
"@simplewebauthn/server": "10.0.1",
"hono": "^4.9.11",
"hono": "^4.10.4",
"jsonpath-plus": "^10.3.0",
"mimetext": "^3.0.27",
"postal-mime": "^2.5.0",
"postal-mime": "^2.6.0",
"resend": "^4.8.0",
"telegraf": "4.16.3",
"worker-mailer": "^1.1.5"

1037
worker/pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
export const CONSTANTS = {
VERSION: 'v' + '1.0.6',
VERSION: 'v' + '1.0.7',
// DB Version
DB_VERSION_KEY: 'db_version',