@lobehub/lobehub 2.1.18 → 2.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example.development +28 -94
- package/CHANGELOG.md +243 -0
- package/changelog/CHANGELOG.v1.md +23771 -2853
- package/changelog/v1.json +0 -3276
- package/changelog/v2.json +9 -0
- package/docker-compose/deploy/.env.example +4 -0
- package/docker-compose/deploy/.env.zh-CN.example +5 -1
- package/docker-compose/deploy/docker-compose.yml +2 -2
- package/docker-compose/{local/logto → dev}/.env.example +13 -18
- package/docker-compose/{local/logto → dev}/.env.zh-CN.example +14 -19
- package/docker-compose/dev/bucket.config.json +18 -0
- package/docker-compose/dev/docker-compose.yml +122 -0
- package/docker-compose/production/grafana/searxng-settings.yml +2582 -0
- package/docker-compose/setup.sh +22 -1
- package/docs/development/basic/setup-development.mdx +28 -101
- package/docs/development/basic/setup-development.zh-CN.mdx +28 -101
- package/locales/ar/setting.json +11 -0
- package/locales/bg-BG/setting.json +11 -0
- package/locales/de-DE/setting.json +11 -0
- package/locales/en-US/setting.json +8 -0
- package/locales/es-ES/setting.json +11 -0
- package/locales/fa-IR/setting.json +11 -0
- package/locales/fr-FR/setting.json +11 -0
- package/locales/it-IT/setting.json +11 -0
- package/locales/ja-JP/setting.json +11 -0
- package/locales/ko-KR/setting.json +11 -0
- package/locales/nl-NL/setting.json +11 -0
- package/locales/pl-PL/setting.json +11 -0
- package/locales/pt-BR/setting.json +11 -0
- package/locales/ru-RU/setting.json +11 -0
- package/locales/tr-TR/setting.json +12 -1
- package/locales/vi-VN/setting.json +11 -0
- package/locales/zh-CN/chat.json +4 -0
- package/locales/zh-CN/modelProvider.json +2 -0
- package/locales/zh-CN/setting.json +8 -0
- package/locales/zh-TW/setting.json +11 -0
- package/package.json +9 -6
- package/packages/model-bank/src/aiModels/aihubmix.ts +35 -1
- package/packages/model-bank/src/aiModels/anthropic.ts +35 -1
- package/packages/model-bank/src/aiModels/bedrock.ts +42 -4
- package/packages/model-bank/src/aiModels/lobehub/chat/anthropic.ts +28 -0
- package/packages/model-bank/src/modelProviders/lobehub.ts +1 -1
- package/packages/model-bank/src/types/aiModel.ts +4 -0
- package/packages/model-runtime/package.json +1 -1
- package/packages/model-runtime/src/core/anthropicCompatibleFactory/index.ts +59 -27
- package/packages/model-runtime/src/core/anthropicCompatibleFactory/resolveMaxTokens.ts +1 -0
- package/packages/model-runtime/src/providers/anthropic/index.test.ts +31 -2
- package/packages/model-runtime/src/providers/bedrock/index.ts +42 -26
- package/packages/model-runtime/src/providers/wenxin/index.ts +1 -1
- package/packages/model-runtime/src/types/chat.ts +8 -7
- package/packages/types/src/agent/chatConfig.ts +7 -0
- package/src/app/(backend)/api/workflows/memory-user-memory/pipelines/chat-topic/{process-topic/[...any] → [...any]}/route.ts +1 -1
- package/src/app/(backend)/api/workflows/memory-user-memory/pipelines/chat-topic/process-topic/workflows/topic.ts +1 -1
- package/src/app/(backend)/api/workflows/memory-user-memory/pipelines/chat-topic/process-topics/route.ts +0 -9
- package/src/app/[variants]/(main)/agent/profile/features/Header/AgentPublishButton/PublishButton.tsx +16 -2
- package/src/app/[variants]/(main)/agent/profile/features/Header/AgentVersionReviewTag.tsx +111 -0
- package/src/app/[variants]/(main)/agent/profile/features/Header/index.tsx +2 -0
- package/src/app/[variants]/(main)/community/(detail)/agent/features/Details/Capabilities/PluginItem.tsx +89 -26
- package/src/app/[variants]/(main)/community/(detail)/agent/features/Details/Nav.tsx +1 -24
- package/src/app/[variants]/(main)/community/(detail)/agent/features/Header.tsx +0 -42
- package/src/app/[variants]/(main)/community/(detail)/group_agent/features/Details/Nav.tsx +0 -8
- package/src/app/[variants]/(main)/community/(detail)/group_agent/features/Header.tsx +0 -43
- package/src/app/[variants]/(main)/community/(detail)/user/features/UserAgentCard.tsx +6 -6
- package/src/app/[variants]/(main)/community/(detail)/user/features/UserGroupCard.tsx +13 -0
- package/src/app/[variants]/(main)/group/profile/features/GroupProfile/GroupVersionReviewTag.tsx +109 -0
- package/src/app/[variants]/(main)/group/profile/features/GroupProfile/index.tsx +2 -0
- package/src/app/[variants]/(main)/group/profile/features/Header/GroupPublishButton/PublishButton.tsx +16 -1
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/CreateNewModelModal/ExtendParamsSelect.tsx +17 -0
- package/src/features/ChatInput/ActionBar/Model/ControlsForm.tsx +28 -0
- package/src/features/ChatInput/ActionBar/Model/EffortSlider.tsx +16 -0
- package/src/libs/mcp/client.ts +10 -10
- package/src/locales/default/chat.ts +6 -0
- package/src/locales/default/modelProvider.ts +4 -0
- package/src/locales/default/setting.ts +10 -0
- package/src/server/routers/lambda/market/agentGroup.ts +25 -1
- package/src/server/services/discover/index.ts +2 -0
- package/src/server/services/memory/userMemory/extract.ts +0 -23
- package/src/services/chat/mecha/modelParamsResolver.test.ts +50 -0
- package/src/services/chat/mecha/modelParamsResolver.ts +12 -0
- package/src/services/marketApi.ts +7 -0
- package/src/utils/textLength.test.ts +111 -0
- package/docker-compose/local/.env.example +0 -46
- package/docker-compose/local/.env.zh-CN.example +0 -43
- package/docker-compose/local/bucket.config.json +0 -24
- package/docker-compose/local/docker-compose.yml +0 -297
- package/docker-compose/local/grafana/.env.example +0 -41
- package/docker-compose/local/grafana/.env.zh-CN.example +0 -41
- package/docker-compose/local/grafana/docker-compose.yml +0 -251
- package/docker-compose/local/grafana/grafana/dashboards/.gitkeep +0 -0
- package/docker-compose/local/grafana/grafana/datasources/datasource-prometheus.yaml +0 -15
- package/docker-compose/local/grafana/grafana/datasources/datasource-tempo.yaml +0 -16
- package/docker-compose/local/grafana/otel-collector/collector-config.yaml +0 -45
- package/docker-compose/local/grafana/prometheus/prometheus.yml +0 -11
- package/docker-compose/local/grafana/tempo/tempo.yaml +0 -58
- package/docker-compose/local/logto/docker-compose.yml +0 -124
- package/docker-compose/local/zitadel/.env.example +0 -31
- package/docker-compose/local/zitadel/.env.zh-CN.example +0 -30
- package/docker-compose/local/zitadel/docker-compose.yml +0 -86
- package/docker-compose/local/zitadel/zitadel-config.yaml +0 -26
- package/docker-compose/local/zitadel/zitadel-init-steps.yaml +0 -11
- package/docker-compose/minio-bucket.config.json +0 -34
- package/docker-compose/production/logto/.env.example +0 -52
- package/docker-compose/production/logto/.env.zh-CN.example +0 -51
- package/docker-compose/production/logto/docker-compose.yml +0 -71
- package/docker-compose/production/zitadel/.env.example +0 -49
- package/docker-compose/production/zitadel/.env.zh-CN.example +0 -44
- package/docker-compose/production/zitadel/docker-compose.yml +0 -69
- package/docker-compose/production/zitadel/zitadel-config.yaml +0 -25
- package/docker-compose/production/zitadel/zitadel-init-steps.yaml +0 -11
- package/docker-compose.development.yml +0 -90
- /package/docker-compose/{local → dev}/searxng-settings.yml +0 -0
- /package/docker-compose/{local → production/grafana}/init_data.json +0 -0
package/.env.example.development
CHANGED
|
@@ -1,114 +1,48 @@
|
|
|
1
|
-
# LobeChat Development
|
|
2
|
-
#
|
|
1
|
+
# LobeChat Development Environment Configuration
|
|
2
|
+
# ⚠️ DO NOT USE THESE VALUES IN PRODUCTION!
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
# Application
|
|
5
|
+
APP_URL=http://localhost:3010
|
|
5
6
|
|
|
6
|
-
#
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
# Allow access to private IP addresses (localhost services) in development
|
|
8
|
+
# https://lobehub.com/docs/self-hosting/environment-variables/basic#ssrf-allow-private-ip-address
|
|
9
|
+
SSRF_ALLOW_PRIVATE_IP_ADDRESS=1
|
|
9
10
|
|
|
10
|
-
#
|
|
11
|
+
# Secrets (pre-generated for development only)
|
|
12
|
+
KEY_VAULTS_SECRET=ww+0igxjGRAAR/eTNFQ55VmhQB5KE5trFZseuntThJs=
|
|
13
|
+
AUTH_SECRET=ww+0igxjGRAAR/eTNFQ55VmhQB5KE5trFZseuntThJs=
|
|
11
14
|
|
|
12
|
-
#
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
# Application URL - the base URL where LobeChat will be accessible
|
|
16
|
-
APP_URL=http://localhost:${LOBE_PORT}
|
|
17
|
-
|
|
18
|
-
# Secret key for encrypting vault data (generate with: openssl rand -base64 32)
|
|
19
|
-
KEY_VAULTS_SECRET=${UNSAFE_SECRET}
|
|
20
|
-
|
|
21
|
-
# Database Configuration
|
|
22
|
-
# Database name for LobeChat
|
|
23
|
-
LOBE_DB_NAME=lobechat
|
|
24
|
-
|
|
25
|
-
# PostgreSQL password
|
|
26
|
-
POSTGRES_PASSWORD=${UNSAFE_PASSWORD}
|
|
27
|
-
|
|
28
|
-
# PostgreSQL database connection URL
|
|
29
|
-
DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@localhost:5432/${LOBE_DB_NAME}
|
|
30
|
-
|
|
31
|
-
# Database driver type
|
|
15
|
+
# Database (PostgreSQL)
|
|
16
|
+
DATABASE_URL=postgresql://postgres:change_this_password_on_production@localhost:5432/lobechat
|
|
32
17
|
DATABASE_DRIVER=node
|
|
33
18
|
|
|
34
|
-
# Redis
|
|
19
|
+
# Redis
|
|
35
20
|
REDIS_URL=redis://localhost:6379
|
|
36
21
|
REDIS_PREFIX=lobechat
|
|
37
22
|
REDIS_TLS=0
|
|
38
23
|
|
|
39
|
-
#
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
AUTH_SSO_PROVIDERS=casdoor
|
|
45
|
-
|
|
46
|
-
# Casdoor Configuration
|
|
47
|
-
# Casdoor service port
|
|
48
|
-
CASDOOR_PORT=8000
|
|
49
|
-
|
|
50
|
-
# Casdoor OIDC issuer URL
|
|
51
|
-
AUTH_CASDOOR_ISSUER=http://localhost:${CASDOOR_PORT}
|
|
52
|
-
|
|
53
|
-
# Casdoor application client ID
|
|
54
|
-
AUTH_CASDOOR_ID=a387a4892ee19b1a2249 # DO NOT USE IN PROD
|
|
55
|
-
|
|
56
|
-
# Casdoor application client secret
|
|
57
|
-
AUTH_CASDOOR_SECRET=dbf205949d704de81b0b5b3603174e23fbecc354 # DO NOT USE IN PROD
|
|
58
|
-
|
|
59
|
-
# Origin URL for Casdoor internal configuration
|
|
60
|
-
origin=http://localhost:${CASDOOR_PORT}
|
|
61
|
-
|
|
62
|
-
# MinIO Storage Configuration
|
|
63
|
-
# MinIO service port
|
|
64
|
-
MINIO_PORT=9000
|
|
65
|
-
|
|
66
|
-
# MinIO root user (admin username)
|
|
67
|
-
MINIO_ROOT_USER=admin
|
|
68
|
-
|
|
69
|
-
# MinIO root password
|
|
70
|
-
MINIO_ROOT_PASSWORD=${UNSAFE_PASSWORD}
|
|
71
|
-
|
|
72
|
-
# MinIO bucket for LobeChat files
|
|
73
|
-
MINIO_LOBE_BUCKET=lobe
|
|
74
|
-
|
|
75
|
-
# S3/MinIO Configuration for LobeChat
|
|
76
|
-
# S3/MinIO access key ID
|
|
77
|
-
S3_ACCESS_KEY_ID=${MINIO_ROOT_USER}
|
|
78
|
-
|
|
79
|
-
# S3/MinIO secret access key
|
|
80
|
-
S3_SECRET_ACCESS_KEY=${MINIO_ROOT_PASSWORD}
|
|
81
|
-
|
|
82
|
-
# S3/MinIO endpoint URL
|
|
83
|
-
S3_ENDPOINT=http://localhost:${MINIO_PORT}
|
|
84
|
-
|
|
85
|
-
# S3 bucket name for storing files
|
|
86
|
-
S3_BUCKET=${MINIO_LOBE_BUCKET}
|
|
87
|
-
|
|
88
|
-
# Enable path-style S3 requests (required for MinIO)
|
|
24
|
+
# S3 Storage (RustFS)
|
|
25
|
+
S3_ACCESS_KEY_ID=admin
|
|
26
|
+
S3_SECRET_ACCESS_KEY=change_this_password_on_production
|
|
27
|
+
S3_ENDPOINT=http://localhost:9000
|
|
28
|
+
S3_BUCKET=lobe
|
|
89
29
|
S3_ENABLE_PATH_STYLE=1
|
|
90
|
-
|
|
91
|
-
# Disable S3 ACL setting (for MinIO compatibility)
|
|
92
30
|
S3_SET_ACL=0
|
|
93
31
|
|
|
94
|
-
#
|
|
32
|
+
# LLM vision uses base64 to avoid S3 presigned URL issues in development
|
|
95
33
|
LLM_VISION_IMAGE_USE_BASE64=1
|
|
96
34
|
|
|
97
|
-
# Search
|
|
98
|
-
|
|
99
|
-
SEARXNG_URL=http://searxng:8080
|
|
35
|
+
# Search (SearXNG)
|
|
36
|
+
SEARXNG_URL=http://localhost:8180
|
|
100
37
|
|
|
101
|
-
#
|
|
102
|
-
# Uncomment to skip authentication during development
|
|
103
|
-
|
|
104
|
-
# Proxy Configuration (Optional)
|
|
105
|
-
# Uncomment if you need proxy support (e.g., for GitHub auth or API access)
|
|
38
|
+
# Proxy (Optional)
|
|
106
39
|
# HTTP_PROXY=http://localhost:7890
|
|
107
40
|
# HTTPS_PROXY=http://localhost:7890
|
|
108
41
|
|
|
109
|
-
# AI Model
|
|
110
|
-
#
|
|
111
|
-
#
|
|
112
|
-
|
|
42
|
+
# AI Model API Keys (Required for chat functionality)
|
|
43
|
+
# ANTHROPIC_API_KEY=sk-ant-xxx
|
|
44
|
+
# ANTHROPIC_PROXY_URL=https://api.anthropic.com
|
|
45
|
+
|
|
46
|
+
# OPENAI_API_KEY=sk-xxx
|
|
113
47
|
# OPENAI_PROXY_URL=https://api.openai.com/v1
|
|
114
|
-
|
|
48
|
+
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,249 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 2.1.19](https://github.com/lobehub/lobe-chat/compare/v2.1.18...v2.1.19)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2026-02-06**</sup>
|
|
8
|
+
|
|
9
|
+
#### ♻ Code Refactoring
|
|
10
|
+
|
|
11
|
+
- **docker-compose**: Restructure dev environment.
|
|
12
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button.
|
|
13
|
+
|
|
14
|
+
#### 🐛 Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display.
|
|
17
|
+
|
|
18
|
+
#### 💄 Styles
|
|
19
|
+
|
|
20
|
+
- **model-runtime**: Add Claude Opus 4.6 support for Bedrock runtime.
|
|
21
|
+
|
|
22
|
+
<br/>
|
|
23
|
+
|
|
24
|
+
<details>
|
|
25
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
26
|
+
|
|
27
|
+
#### Code refactoring
|
|
28
|
+
|
|
29
|
+
- **docker-compose**: Restructure dev environment, closes [#12132](https://github.com/lobehub/lobe-chat/issues/12132) ([7ba15cc](https://github.com/lobehub/lobe-chat/commit/7ba15cc))
|
|
30
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button, closes [#12127](https://github.com/lobehub/lobe-chat/issues/12127) ([e402c51](https://github.com/lobehub/lobe-chat/commit/e402c51))
|
|
31
|
+
|
|
32
|
+
#### What's fixed
|
|
33
|
+
|
|
34
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display, closes [#12141](https://github.com/lobehub/lobe-chat/issues/12141) ([193c96f](https://github.com/lobehub/lobe-chat/commit/193c96f))
|
|
35
|
+
|
|
36
|
+
#### Styles
|
|
37
|
+
|
|
38
|
+
- **model-runtime**: Add Claude Opus 4.6 support for Bedrock runtime, closes [#12155](https://github.com/lobehub/lobe-chat/issues/12155) ([90a75af](https://github.com/lobehub/lobe-chat/commit/90a75af))
|
|
39
|
+
|
|
40
|
+
</details>
|
|
41
|
+
|
|
42
|
+
<div align="right">
|
|
43
|
+
|
|
44
|
+
[](#readme-top)
|
|
45
|
+
|
|
46
|
+
</div>
|
|
47
|
+
|
|
48
|
+
### [Version 2.1.19](https://github.com/lobehub/lobe-chat/compare/v2.1.18...v2.1.19)
|
|
49
|
+
|
|
50
|
+
<sup>Released on **2026-02-06**</sup>
|
|
51
|
+
|
|
52
|
+
#### ♻ Code Refactoring
|
|
53
|
+
|
|
54
|
+
- **docker-compose**: Restructure dev environment.
|
|
55
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button.
|
|
56
|
+
|
|
57
|
+
#### 🐛 Bug Fixes
|
|
58
|
+
|
|
59
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display.
|
|
60
|
+
|
|
61
|
+
#### 💄 Styles
|
|
62
|
+
|
|
63
|
+
- **model-runtime**: Add Claude Opus 4.6 support for Bedrock runtime.
|
|
64
|
+
|
|
65
|
+
<br/>
|
|
66
|
+
|
|
67
|
+
<details>
|
|
68
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
69
|
+
|
|
70
|
+
#### Code refactoring
|
|
71
|
+
|
|
72
|
+
- **docker-compose**: Restructure dev environment, closes [#12132](https://github.com/lobehub/lobe-chat/issues/12132) ([7ba15cc](https://github.com/lobehub/lobe-chat/commit/7ba15cc))
|
|
73
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button, closes [#12127](https://github.com/lobehub/lobe-chat/issues/12127) ([e402c51](https://github.com/lobehub/lobe-chat/commit/e402c51))
|
|
74
|
+
|
|
75
|
+
#### What's fixed
|
|
76
|
+
|
|
77
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display, closes [#12141](https://github.com/lobehub/lobe-chat/issues/12141) ([193c96f](https://github.com/lobehub/lobe-chat/commit/193c96f))
|
|
78
|
+
|
|
79
|
+
#### Styles
|
|
80
|
+
|
|
81
|
+
- **model-runtime**: Add Claude Opus 4.6 support for Bedrock runtime, closes [#12155](https://github.com/lobehub/lobe-chat/issues/12155) ([90a75af](https://github.com/lobehub/lobe-chat/commit/90a75af))
|
|
82
|
+
|
|
83
|
+
</details>
|
|
84
|
+
|
|
85
|
+
<div align="right">
|
|
86
|
+
|
|
87
|
+
[](#readme-top)
|
|
88
|
+
|
|
89
|
+
</div>
|
|
90
|
+
|
|
91
|
+
### [Version 2.1.19](https://github.com/lobehub/lobe-chat/compare/v2.1.18...v2.1.19)
|
|
92
|
+
|
|
93
|
+
<sup>Released on **2026-02-06**</sup>
|
|
94
|
+
|
|
95
|
+
#### ♻ Code Refactoring
|
|
96
|
+
|
|
97
|
+
- **docker-compose**: Restructure dev environment.
|
|
98
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button.
|
|
99
|
+
|
|
100
|
+
#### 🐛 Bug Fixes
|
|
101
|
+
|
|
102
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display.
|
|
103
|
+
|
|
104
|
+
<br/>
|
|
105
|
+
|
|
106
|
+
<details>
|
|
107
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
108
|
+
|
|
109
|
+
#### Code refactoring
|
|
110
|
+
|
|
111
|
+
- **docker-compose**: Restructure dev environment, closes [#12132](https://github.com/lobehub/lobe-chat/issues/12132) ([7ba15cc](https://github.com/lobehub/lobe-chat/commit/7ba15cc))
|
|
112
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button, closes [#12127](https://github.com/lobehub/lobe-chat/issues/12127) ([e402c51](https://github.com/lobehub/lobe-chat/commit/e402c51))
|
|
113
|
+
|
|
114
|
+
#### What's fixed
|
|
115
|
+
|
|
116
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display, closes [#12141](https://github.com/lobehub/lobe-chat/issues/12141) ([193c96f](https://github.com/lobehub/lobe-chat/commit/193c96f))
|
|
117
|
+
|
|
118
|
+
</details>
|
|
119
|
+
|
|
120
|
+
<div align="right">
|
|
121
|
+
|
|
122
|
+
[](#readme-top)
|
|
123
|
+
|
|
124
|
+
</div>
|
|
125
|
+
|
|
126
|
+
### [Version 2.1.19](https://github.com/lobehub/lobe-chat/compare/v2.1.18...v2.1.19)
|
|
127
|
+
|
|
128
|
+
<sup>Released on **2026-02-06**</sup>
|
|
129
|
+
|
|
130
|
+
#### ♻ Code Refactoring
|
|
131
|
+
|
|
132
|
+
- **docker-compose**: Restructure dev environment.
|
|
133
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button.
|
|
134
|
+
|
|
135
|
+
#### 🐛 Bug Fixes
|
|
136
|
+
|
|
137
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display.
|
|
138
|
+
|
|
139
|
+
<br/>
|
|
140
|
+
|
|
141
|
+
<details>
|
|
142
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
143
|
+
|
|
144
|
+
#### Code refactoring
|
|
145
|
+
|
|
146
|
+
- **docker-compose**: Restructure dev environment, closes [#12132](https://github.com/lobehub/lobe-chat/issues/12132) ([7ba15cc](https://github.com/lobehub/lobe-chat/commit/7ba15cc))
|
|
147
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button, closes [#12127](https://github.com/lobehub/lobe-chat/issues/12127) ([e402c51](https://github.com/lobehub/lobe-chat/commit/e402c51))
|
|
148
|
+
|
|
149
|
+
#### What's fixed
|
|
150
|
+
|
|
151
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display, closes [#12141](https://github.com/lobehub/lobe-chat/issues/12141) ([193c96f](https://github.com/lobehub/lobe-chat/commit/193c96f))
|
|
152
|
+
|
|
153
|
+
</details>
|
|
154
|
+
|
|
155
|
+
<div align="right">
|
|
156
|
+
|
|
157
|
+
[](#readme-top)
|
|
158
|
+
|
|
159
|
+
</div>
|
|
160
|
+
|
|
161
|
+
### [Version 2.1.19](https://github.com/lobehub/lobe-chat/compare/v2.1.18...v2.1.19)
|
|
162
|
+
|
|
163
|
+
<sup>Released on **2026-02-06**</sup>
|
|
164
|
+
|
|
165
|
+
#### ♻ Code Refactoring
|
|
166
|
+
|
|
167
|
+
- **docker-compose**: Restructure dev environment.
|
|
168
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button.
|
|
169
|
+
|
|
170
|
+
#### 🐛 Bug Fixes
|
|
171
|
+
|
|
172
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display.
|
|
173
|
+
|
|
174
|
+
<br/>
|
|
175
|
+
|
|
176
|
+
<details>
|
|
177
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
178
|
+
|
|
179
|
+
#### Code refactoring
|
|
180
|
+
|
|
181
|
+
- **docker-compose**: Restructure dev environment, closes [#12132](https://github.com/lobehub/lobe-chat/issues/12132) ([7ba15cc](https://github.com/lobehub/lobe-chat/commit/7ba15cc))
|
|
182
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button, closes [#12127](https://github.com/lobehub/lobe-chat/issues/12127) ([e402c51](https://github.com/lobehub/lobe-chat/commit/e402c51))
|
|
183
|
+
|
|
184
|
+
#### What's fixed
|
|
185
|
+
|
|
186
|
+
- **misc**: Fixed in community pluings tab the lobehub skills not display, closes [#12141](https://github.com/lobehub/lobe-chat/issues/12141) ([193c96f](https://github.com/lobehub/lobe-chat/commit/193c96f))
|
|
187
|
+
|
|
188
|
+
</details>
|
|
189
|
+
|
|
190
|
+
<div align="right">
|
|
191
|
+
|
|
192
|
+
[](#readme-top)
|
|
193
|
+
|
|
194
|
+
</div>
|
|
195
|
+
|
|
196
|
+
### [Version 2.1.19](https://github.com/lobehub/lobe-chat/compare/v2.1.18...v2.1.19)
|
|
197
|
+
|
|
198
|
+
<sup>Released on **2026-02-06**</sup>
|
|
199
|
+
|
|
200
|
+
#### ♻ Code Refactoring
|
|
201
|
+
|
|
202
|
+
- **docker-compose**: Restructure dev environment.
|
|
203
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button.
|
|
204
|
+
|
|
205
|
+
<br/>
|
|
206
|
+
|
|
207
|
+
<details>
|
|
208
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
209
|
+
|
|
210
|
+
#### Code refactoring
|
|
211
|
+
|
|
212
|
+
- **docker-compose**: Restructure dev environment, closes [#12132](https://github.com/lobehub/lobe-chat/issues/12132) ([7ba15cc](https://github.com/lobehub/lobe-chat/commit/7ba15cc))
|
|
213
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button, closes [#12127](https://github.com/lobehub/lobe-chat/issues/12127) ([e402c51](https://github.com/lobehub/lobe-chat/commit/e402c51))
|
|
214
|
+
|
|
215
|
+
</details>
|
|
216
|
+
|
|
217
|
+
<div align="right">
|
|
218
|
+
|
|
219
|
+
[](#readme-top)
|
|
220
|
+
|
|
221
|
+
</div>
|
|
222
|
+
|
|
223
|
+
### [Version 2.1.19](https://github.com/lobehub/lobe-chat/compare/v2.1.18...v2.1.19)
|
|
224
|
+
|
|
225
|
+
<sup>Released on **2026-02-05**</sup>
|
|
226
|
+
|
|
227
|
+
#### ♻ Code Refactoring
|
|
228
|
+
|
|
229
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button.
|
|
230
|
+
|
|
231
|
+
<br/>
|
|
232
|
+
|
|
233
|
+
<details>
|
|
234
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
235
|
+
|
|
236
|
+
#### Code refactoring
|
|
237
|
+
|
|
238
|
+
- **misc**: Upgrade agents/group detail pages tabs、hidden like button, closes [#12127](https://github.com/lobehub/lobe-chat/issues/12127) ([e402c51](https://github.com/lobehub/lobe-chat/commit/e402c51))
|
|
239
|
+
|
|
240
|
+
</details>
|
|
241
|
+
|
|
242
|
+
<div align="right">
|
|
243
|
+
|
|
244
|
+
[](#readme-top)
|
|
245
|
+
|
|
246
|
+
</div>
|
|
247
|
+
|
|
5
248
|
### [Version 2.1.18](https://github.com/lobehub/lobe-chat/compare/v2.1.17...v2.1.18)
|
|
6
249
|
|
|
7
250
|
<sup>Released on **2026-02-04**</sup>
|