王贺
4517ae2f81
feat: support enterprise local skills hub ( #12758 )
2026-05-21 12:39:49 +08:00
CityFun
c77260193f
feat: Modify the model provider loading logic when creating an agent ( #12757 )
2026-05-21 12:39:49 +08:00
ssongliu and CityFun
d57c998047
fix: serve frontend routes with fallback ( #12752 )
...
* feat: change isProductPro logic (#12712 )
* fix: tighten frontend RBAC permission guards (#12717 )
* fix: tighten frontend RBAC permission guards
* feat: add permission directive coverage
* refactor frontend global store usage
* serve frontend routes with fallback
---------
Co-authored-by: CityFun <31820853+zhengkunwang223@users.noreply.github.com >
2026-05-21 12:39:49 +08:00
王贺
00afa748e0
feat: add ops report foundation ( #12745 )
...
* feat: add ops report foundation
* chore: restore local vite proxy
* chore: restore package lock
* chore: move ops report i18n scope
* chore: remove dashboard permission label
* chore: nest ops report i18n
* chore: update ops report menu i18n key
* chore: sync permission locale cleanup
2026-05-21 12:39:49 +08:00
ssongliu
1e2dc42554
chore: update enterprise resource URL ( #12735 )
2026-05-21 12:39:49 +08:00
ssongliu
aa10760658
feat: sync panel updates ( #12721 )
2026-05-21 12:39:49 +08:00
CityFun
afacefaccb
feat: Add AI agent and benchmarking page URLs ( #12696 )
2026-05-21 12:37:33 +08:00
ssongliu
9508238805
feat: 修改 AI 代理的菜单位置 ( #12695 )
2026-05-21 12:37:33 +08:00
ssongliu
2c21bd7286
fix: handle stream auth responses ( #12693 )
2026-05-21 12:37:33 +08:00
ssongliu
6cd0373678
fix enterprise user cli updates ( #12689 )
2026-05-21 12:37:33 +08:00
ssongliu
11771b2b53
fix: improve ai benchmark i18n ( #12686 )
2026-05-21 12:37:33 +08:00
ssongliu
1896aed973
feat: update host tools and settings APIs ( #12674 )
2026-05-21 12:37:32 +08:00
ssongliu
6dc5deb6d3
feat: support enterprise resource urls ( #12669 )
2026-05-21 12:37:32 +08:00
ssongliu
d7242d526c
feat: update mfa permissions and panel settings ( #12665 )
2026-05-21 12:37:32 +08:00
zhengkunwang223
22c3fc8c40
feat: add ai benchmark
2026-05-21 12:37:32 +08:00
ssongliu
8d44105f88
feat: normalize mfa and api config fields ( #12642 )
2026-05-21 12:37:32 +08:00
ssongliu
8fb8d97dcf
feat: add offline environment setting ( #12637 )
2026-05-21 12:37:31 +08:00
ssongliu
6941014153
fix: refine enterprise license required flow ( #12634 )
...
* fix: adjust access control menu (#12633 )
* fix: refine enterprise license required flow
2026-05-21 12:35:11 +08:00
ssongliu and Copilot
bfd610d255
fix: adjust access control menu ( #12633 )
...
Co-authored-by: Copilot <copilot@github.com >
2026-05-21 12:35:11 +08:00
ssongliu
5c61217c78
chore: update xpack integration references ( #12628 )
2026-05-21 12:35:10 +08:00
ssongliu
eb527857f3
fix: avoid license required before login ( #12626 )
2026-05-21 12:35:10 +08:00
ssongliu
d55982bde0
refactor: update agent and core utilities ( #12621 )
2026-05-21 12:35:09 +08:00
ssongliu
db4f699b85
feat: record user in operation logs ( #12596 )
2026-05-21 12:32:54 +08:00
ssongliu
12f2d95265
chore: update license required handling ( #12594 )
2026-05-21 12:32:54 +08:00
ssongliu
a917ca00a1
feat: refactor auth and xpack integration
2026-05-21 12:32:52 +08:00
ssongliu
69906046e8
feat: add xpackee permission-aware settings flow
2026-05-21 11:34:08 +08:00
ssongliu
d9cedeca09
feat: update xpack integration behavior
2026-05-21 11:34:08 +08:00
ssongliu
0e28f27819
feat: Support multi-user login and node management
2026-05-21 11:34:06 +08:00
ssongliu
2c5728e27e
fix: add license free node count message ( #12778 )
2026-05-20 14:30:17 +08:00
ssongliu
b476df3b61
chore: update pro edition copy ( #12776 )
2026-05-20 13:55:04 +08:00
KOMATA
4b1b27abd8
feat: enhance upgrade process with space check and file handling ( #12708 )
...
* feat: enhance upgrade process with space check and file handling improvements
* fix: update minimum upgrade free space requirement to 500MB and simplify space check logic
2026-05-15 11:29:35 +08:00
王贺
b3c593b852
fix openwrt procd init script selection ( #12670 )
2026-05-07 18:28:30 +08:00
ssongliu
73530bb8b9
fix: route terminal websocket by operate node ( #12676 )
2026-05-07 18:28:17 +08:00
ssongliu
f2625eab16
fix: refactor local agent proxy handling ( #12659 )
2026-05-06 06:20:14 +00:00
Sanjay Santhanam
b06bc0a455
fix(cmd): use exec.LookPath in Which() so detection works without external 'which' ( #12651 )
...
cmd.Which() previously shelled out to `which <name>` to determine whether
a binary was on PATH. On distributions that do not ship a `which` package
by default — Arch Linux is the canonical example, but the same applies to
several minimal container images — `which` itself is missing, so every
call to Which() returned false and 1Panel reported core dependencies
(notably Docker) as 'not installed' even when they were running normally.
Switch the primary path to Go's exec.LookPath, which uses the process
PATH directly and has no external dependency. The original shell-out is
preserved as a fallback so any environment where the agent's PATH
differs from the user's interactive shell PATH (the original reason the
shell-out existed) keeps working unchanged.
Both copies are updated (agent/utils/cmd/cmd.go and core/utils/cmd/cmd.go)
and a small unit test is added to each package to guard the regression.
Fixes #12605
Signed-off-by: Sanjay Santhanam <51058514+Sanjays2402@users.noreply.github.com >
2026-05-06 10:47:02 +08:00
ssongliu
8c4ea85d02
feat: support fxplay resource URLs ( #12558 )
2026-04-22 03:01:00 +00:00
ssongliu
3a00e893bc
fix: fix psession atomic alignment ( #12528 )
2026-04-20 03:26:55 +00:00
CityFun
a0050dca09
feat: update golang Dependency ( #12509 )
2026-04-16 17:36:52 +08:00
王贺
6a28359ac2
fix mongodb route fallback ( #12495 )
2026-04-15 13:51:20 +08:00
蘭
8362578355
fix: Resolve the issue of QR code sharing files not being able to download ( #12485 )
2026-04-14 07:12:44 +00:00
ssongliu
4d06f444ac
refactor: restore symlink-based xpack integration ( #12473 )
2026-04-13 10:34:59 +08:00
蘭
326d52e311
fix: Fix some issues with sharing files ( #12466 )
2026-04-10 13:36:10 +08:00
蘭
3f14f8f30e
feat: File management supports link share file ( #12453 )
2026-04-09 17:38:38 +08:00
ssongliu
218f92a960
fix: fallback to password login when mfa needs captcha ( #12438 )
2026-04-09 10:28:39 +08:00
CityFun
2c8f8f32fd
feat: Add default external port access to application settings. ( #12426 )
2026-04-07 07:31:32 +00:00
CityFun
0c49c41085
feat: change ai menu ( #12407 )
2026-04-03 07:56:12 +00:00
ssongliu
2a498de96e
fix: tighten clean tree delete semantics ( #12406 )
...
Refs #12399
2026-04-03 07:54:12 +00:00
ssongliu
32fed45c1e
fix: skip proxy check when disabled ( #12388 )
...
Refs #12379
2026-04-01 11:22:08 +00:00
ssongliu
8b7597abef
chore: upgrade grpc buildkit and x/image ( #12387 )
2026-04-01 11:20:08 +00:00
ssongliu
ec981f8153
fix: harden login IP checks and entrance cookie ( #12378 )
2026-04-01 08:22:09 +00:00