Commit Graph
3473 Commits
Author SHA1 Message Date
PiexlMax(奇淼 e8d675c891 Merge pull request #2263 from xue-ding-e/feat/redis-username
feat: Redis 配置支持 username,兼容云 Redis 自定义 ACL 账号
2026-09-20 14:43:38 +08:00
xuedinge 6830fb6e0e server/config.yaml: redis 配置补充 username 示例项
配合 #2264 的修复(config.Redis 新增 username 字段),在配置模板的
redis 段补充对应配置项,方便使用云 Redis 自定义 ACL 账号的用户发现
该配置;默认留空,不影响现有部署。
2026-09-20 01:54:31 +08:00
xuedinge 98ca3dbc79 server/config/redis.go: Redis 支持配置 username,兼容云 Redis 自定义 ACL 账号
云厂商(阿里云等)的 Redis 实例使用自定义 ACL 账号时,要求客户端以
AUTH <username> <password> 双参数方式进行鉴权。当前代码在初始化
go-redis 客户端时从未设置 Username,只会发送单参数 AUTH <password>,
连接此类实例时 Ping 报错 WRONGPASS,导致服务启动失败(panic)。

- config.Redis 新增 username 配置项
- initialize/redis.go 单机与集群两种模式的客户端初始化均传入 Username

使用默认账号或本地 Redis 时 username 留空即可,行为与原有版本完全
一致(go-redis 在 Username 为空时只发送单参数 AUTH)。

Fix #2264
2026-09-20 01:49:31 +08:00
PiexlMax(奇淼 d6d4950c1b Merge pull request #2258 from cococoaa/fix/announcement-gen-gogenerate
fix: 修复 announcement/gen/gen.go 中 //go:generate 指令位置错误导致 go build ./... 失败
2026-09-14 15:12:40 +08:00
PiexlMax(奇淼 d2185187b4 Merge pull request #2259 from songzhibin97/songzhibin97/upgrade-gkit-v1.5.0
go.mod: Upgrade GKit to v1.5.0
2026-09-14 15:12:26 +08:00
PiexlMax(奇淼 5b041b5b38 Merge pull request #2256 from cococoaa/fix/autocode-service-withcontext
fix(autocode): service 模板 DB 操作补充 WithContext(ctx) 传播 context
2026-09-14 15:12:13 +08:00
songzhibin97 2d90c34ddf go.mod: Upgrade GKit to v1.5.0 for local cache fixes 2026-09-14 11:12:23 +08:00
cococoaa 897fb971da fix: 修复 announcement/gen/gen.go 中 //go:generate 指令位置错误导致 go build ./... 失败 2026-09-11 20:52:50 +08:00
cococoaaandClaude Opus 5 cb3ffce379 fix(autocode): service 模板 DB 操作补充 WithContext(ctx) 传播 context
自动化代码生成的 service 层方法签名带 ctx 参数,但函数体内 DB
操作未调用 WithContext(ctx),导致请求取消/超时/链路追踪无法传播
到数据库操作。本次给 package 和 plugin 两个 service 模板的所有
DB 操作补上 WithContext(ctx)。

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-09-10 19:11:27 +08:00
PiexlMax(奇淼 f408aea137 Merge pull request #2253 from cococoaa/fix/autocode-clearcatch-generateserver
fix: 代码生成器连续生成时「生成后端」复选框失效导致只生成前端代码
2026-09-09 15:24:04 +08:00
cococoaa 260ac90d7f fix: 代码生成器 clearCatch 重置后丢失 generateServer/generateWeb 导致只生成前端代码 2026-09-09 13:44:10 +08:00
PiexlMax(奇淼 81558bbec4 Merge pull request #2250 from 000px/fix/casbin-cache-expire-time
casbin_util.go: correct Enforcer cache expiration to 1 hour
2026-09-08 16:47:46 +08:00
wan c9e273176d casbin_util.go: correct Enforcer cache expiration to 1 hour
Previously set to 60*60, which is 3600 nanoseconds, causing the cache to expire immediately. Change to time.Hour to properly cache policies for 1 hour.
2026-09-07 00:19:27 +08:00
PiexlMax(奇淼 f01ce1b34f feat: 添加授权版体验链接到欢迎信息 2026-09-04 16:40:39 +08:00
PiexlMax(奇淼 c993a3a1a1 feat: 更新许可证信息,调整文档以符合 Apache License 2.0 要求 2026-09-04 16:39:25 +08:00
PiexlMax(奇淼 dbb43061d3 feat: 添加演示站和商业链接配置,更新仪表盘和头部组件以支持授权版演示 2026-09-03 01:53:25 +08:00
PiexlMax(奇淼 a6882210a8 Merge pull request #2235 from kobihikri/ci/pin-github-push-action
ci: pin ad-m/github-push-action to a full commit SHA
v2.9.2-stable
2026-07-14 15:56:15 +08:00
kobihikri 005a7b747f ci: pin ad-m/github-push-action to a full commit SHA
The release-pr job passes GITHUB_TOKEN to ad-m/github-push-action, which
is referenced by the mutable `@master` branch. A mutable ref means the
exact code that runs with the token can change without any change in this
repository. Pinning to a full commit SHA makes the action immutable while
keeping the current behaviour.

881a6320fdb16eb5318c5054f31c218aec2b324c is the commit `@master` resolves
to today, which is also tagged v1.3.0, so this changes nothing about what
runs now — it just fixes the version in place. The trailing `# v1.3.0`
comment keeps the human-readable version visible for future updates.

This mirrors GitHub's own hardening guidance for third-party actions.
2026-07-14 10:53:57 +03:00
PiexlMax(奇淼 4445d0e583 Merge pull request #2225 from estel-li/codex/fix-select-image-max-update-count
fix: respect SelectImage maxUpdateCount in media library
2026-06-30 17:34:09 +08:00
PiexlMax(奇淼 e04452c99e Merge pull request #2218 from AbbyJL/codex/fix-db-migrate-exit-code-clean
gorm.go: fix migrate failure exit code
2026-06-30 17:33:42 +08:00
李觉 06f859c13a fix select image max update count 2026-06-30 17:28:00 +08:00
PiexlMax(奇淼 87f6838a08 Merge pull request #2219 from 1220lanxi-glitch/main
fix:MCP生成代码创建字典失败bug
2026-06-30 15:42:28 +08:00
lanxi 463f6b7dfe fix:MCP生成代码创建字典失败bug 2026-06-16 13:46:37 +08:00
PiexlMax(奇淼 7d3f0c7564 clear: 清理对用户无意义的ai记忆 2026-06-15 10:35:05 +08:00
PiexlMax(奇淼 086fbdae04 clear: 清理无用的docs文件 2026-06-15 10:33:17 +08:00
Codex 07f1beb4b3 gorm.go: fix migrate failure exit code 2026-06-08 16:08:08 +08:00
PiexlMax(奇淼 78b3bd0c67 docs: 更新README.md,简化章节标题和图片描述 2026-05-28 11:43:04 +08:00
PiexlMax(奇淼 53e72c9660 Merge branch 'main' of github.com:flipped-aurora/gin-vue-admin 2026-05-28 11:42:36 +08:00
PiexlMax(奇淼andCopilot a333332e6c docs: 更新README.md,优化格式和内容,增加文档可读性
Co-authored-by: Copilot <copilot@github.com>
2026-05-28 11:41:43 +08:00
PiexlMax(奇淼 d1e6d9c642 Update README.md 2026-05-28 11:34:43 +08:00
PiexlMax(奇淼 7c8b623ab2 Update README.md 2026-05-28 10:46:00 +08:00
Zmzblink e4b76383ef Preload Authorities when fetching user by ID (#2215)
修复多角色时,签发其他角色token失败的问题
2026-05-28 09:31:56 +08:00
PiexlMax(奇淼 cdfd2a1901 docs: 更新许可证信息为BSL 1.1,明确非商用和商用使用要求 2026-05-28 09:29:41 +08:00
PiexlMax(奇淼 03f4daf5d2 docs: add BSL migration design 2026-05-27 16:13:43 +08:00
PiexlMax(奇淼 0094f677a1 fix: 更新记忆管理规则,确保长期记忆与业务记忆独立维护 2026-05-26 13:52:29 +08:00
PiexlMax(奇淼 3fda90acac Merge branch 'main' of github.com:flipped-aurora/gin-vue-admin 2026-05-26 12:32:19 +08:00
Robert SilénandCursor ee2de98fab docs: mention MariaDB in README (zh) (#2213)
Note MySQL or MariaDB 5.7+ in the tech stack database line; the server
already detects MariaDB versions in basetypes.go.

Co-authored-by: Cursor <cursoragent@cursor.com>
v2.9.2
2026-05-26 12:03:14 +08:00
PiexlMax(奇淼andCopilot fcb10a9b6e feat: 添加构建设置项检查脚本,优化主题样式变量
Co-authored-by: Copilot <copilot@github.com>
2026-05-26 12:01:38 +08:00
PiexlMax(奇淼 f4fa0b7a40 fix: 更新预览脚本以支持开发模式 2026-05-26 11:22:25 +08:00
PiexlMax(奇淼 e77e0603db fix: 更新 @vueuse/core 和 @vueuse/integrations 依赖版本 2026-05-26 11:21:55 +08:00
15e6e7685c update:发布2.9.2版本 (#2211)
* feat: 调整AI工作模式,更符合harness基准

* feat: 添加BusinessDB字段到PluginInitializeGorm结构体,并增加相关测试用例

* [middleware/jwt.go]: fix #2192 issues bug

* docs: add auto plugin design spec

* chore: ignore worktrees directory

* feat: 调整代码辅助能力至插件

* feat: 添加警告条组件,提示授权用户访问限制

* fix: 修正商业用途版权声明链接

* feat: 调整agent.md 更加节省token

* fix: 修改casbin版本为v3

* feat: 更新JSONMap和JSONSlice类型,优化GORM数据类型处理

* feat: 添加数据库就绪通知机制,优化插件注册流程

* feat: 重构API路径和描述,优化代码生成器和模板配置分组

* feat: 优化 person 页面的 css 作用域限制

* feat: 更新 vite 至 vite8

* 新增:MCP工具为指定URL的角色ID授权

* fix: 增加文件名合法性检查,拒绝包含非法字符的文件写入

* chore: 更新CI配置,升级Node.js和Go版本,调整checkout和setup动作版本

* feat: 为数据库连接增加最大复用时间配置

* feat: 为各数据库连接配置增加最大连接生命周期设置

* feat: 更新插件注册逻辑并优化API和菜单组件的标签显示

* feat: 更新版本号至v2.9.2并添加新插件路径信息

---------

Co-authored-by: taincheng <zhangtc@gmail.com>
Co-authored-by: Azir-11 <2075125282@qq.com>
Co-authored-by: lanxi <1220lanxi@gmail.com>
2026-05-11 13:48:18 +08:00
PiexlMax(奇淼 699817becc Merge pull request #2204 from Azir-11/main
feat: 提高对深色主题的适配
2026-05-05 15:44:54 +08:00
Azir-11 fbd742ae03 feat: 提高对深色主题的适配 2026-04-30 14:20:05 +08:00
pixelmaxQM 0025a1a002 fix: 修正商业用途版权声明链接 2026-04-28 14:25:04 +08:00
pixelmaxQM 36c7f0bdd7 feat: 添加警告条组件,提示授权用户访问限制 2026-04-26 11:22:16 +08:00
pixelmaxQM 51b4ea284e feat: 添加获取 MCP 路由列表的接口 2026-04-16 10:08:21 +08:00
pixelmaxQM 60c1ec12b9 feat: 添加获取和设置API及菜单关联角色的接口 2026-04-16 10:05:11 +08:00
pixelmaxQM 61a3f8297c feat: 更新版本号至v2.9.1 v2.9.1 2026-03-27 05:46:07 +01:00
PiexlMax(奇淼 375b21c222 发布2.9.1版本 (#2189)
* feat: mcp能力调整为 streamhttp的独立服务 不再依赖gva本体

* feat: 增加MCP启动能力,增加AI工作流需求整理能力。

* feat: 增加需求梳理能力

* feat: 清理无用日志

* feat: 移除无用的Dify Chatflow文本和代码生成器按钮
2026-03-27 12:14:13 +08:00
pixelmaxQM 324aaa3057 feat: 优化图片路径处理,使用getUrl函数替代硬编码路径 2026-03-21 07:32:55 +01:00