Skip to content

Commit 2e4316e

Browse files
committed
Merge remote-tracking branch 'upstream/main'
# Conflicts: # CHANGELOG.md # package.json
2 parents fa12de2 + de8df94 commit 2e4316e

File tree

101 files changed

+6077
-425
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+6077
-425
lines changed

.github/ISSUE_TEMPLATE/1_bug_report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '🐛 Bug Report'
22
description: 'Report an bug'
3-
title: '[Bug] '
4-
labels: ['🐛 Bug']
3+
labels: ['unconfirm']
54
type: Bug
65
body:
76
- type: dropdown
@@ -10,6 +9,7 @@ body:
109
multiple: true
1110
options:
1211
- 'Official Preview'
12+
- 'Official Cloud'
1313
- 'Vercel'
1414
- 'Zeabur'
1515
- 'Sealos'

.github/ISSUE_TEMPLATE/1_bug_report_cn.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '🐛 反馈缺陷'
22
description: '反馈一个问题缺陷'
3-
title: '[Bug] '
4-
labels: ['🐛 Bug']
3+
labels: ['unconfirm']
54
type: Bug
65
body:
76
- type: markdown
@@ -17,6 +16,7 @@ body:
1716
multiple: true
1817
options:
1918
- 'Official Preview'
19+
- 'Official Cloud'
2020
- 'Vercel'
2121
- 'Zeabur'
2222
- 'Sealos'

.github/ISSUE_TEMPLATE/2_feature_request.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '🌠 Feature Request'
22
description: 'Suggest an idea'
33
title: '[Request] '
4-
labels: ['🌠 Feature Request']
54
type: Feature
65
body:
76
- type: textarea

.github/ISSUE_TEMPLATE/2_feature_request_cn.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: '🌠 功能需求'
22
description: '提出需求或建议'
33
title: '[Request] '
4-
labels: ['🌠 Feature Request']
54
type: Feature
65
body:
76
- type: textarea
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Database Schema Visualization CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'docs/developer/database-schema.dbml'
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Install dbdocs
17+
run: sudo npm install -g dbdocs
18+
19+
- name: Check dbdocs
20+
run: dbdocs
21+
22+
- name: sync database schema to dbdocs
23+
env:
24+
DBDOCS_TOKEN: ${{ secrets.DBDOCS_TOKEN }}
25+
run: npm run db:visualize

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
lockfile=false
22
resolution-mode=highest
33

4+
ignore-workspace-root-check=true
45
enable-pre-post-scripts=true
56

67
public-hoist-pattern[]=*@umijs/lint*

CHANGELOG.md

+145-23
Original file line numberDiff line numberDiff line change
@@ -2,50 +2,172 @@
22

33
# Changelog
44

5-
## [Version 1.18.0](https://github.com/jaworldwideorg/OneJA-Bot/compare/v1.17.1...v1.18.0)
5+
### [Version 1.71.5](https://github.com/lobehub/lobe-chat/compare/v1.71.4...v1.71.5)
66

7-
<sup>Released on **2025-03-13**</sup>
7+
<sup>Released on **2025-03-17**</sup>
88

9-
#### ✨ Features
9+
#### 💄 Styles
1010

11-
- **misc**: Support no-fc models like deepseek r1 with online search.
11+
- **misc**: Support screenshot to clipboard when sharing.
1212

13-
#### 🐛 Bug Fixes
13+
<br/>
14+
15+
<details>
16+
<summary><kbd>Improvements and Fixes</kbd></summary>
17+
18+
#### Styles
19+
20+
- **misc**: Support screenshot to clipboard when sharing, closes [#6275](https://github.com/lobehub/lobe-chat/issues/6275) ([45663c3](https://github.com/lobehub/lobe-chat/commit/45663c3))
21+
22+
</details>
23+
24+
<div align="right">
1425

15-
- **misc**: Fix anthropic max tokens, fix context cache control and model builtin search switch, fix crawl result for short content, fix theme flicking, Link jump in mobile terminal data statistics, refactor the theme implement, the agent setting `-edit_agent` not work, update cvpr cvf url rules.
26+
[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27+
28+
</div>
29+
30+
### [Version 1.71.4](https://github.com/lobehub/lobe-chat/compare/v1.71.3...v1.71.4)
31+
32+
<sup>Released on **2025-03-17**</sup>
1633

1734
#### 💄 Styles
1835

19-
- **chat**: Auto send message from URL.
20-
- **spelling**: Correct "broswer" to "browser" across codebase.
21-
- **misc**: Support openrouter claude 3.7 sonnet reasoning, Support OpenRouter custom BaseURL.
36+
- **misc**: Update Wenxin & Hunyuan model list.
2237

2338
<br/>
2439

2540
<details>
2641
<summary><kbd>Improvements and Fixes</kbd></summary>
2742

28-
#### What's improved
43+
#### Styles
44+
45+
- **misc**: Update Wenxin & Hunyuan model list, closes [#6995](https://github.com/lobehub/lobe-chat/issues/6995) ([d017f35](https://github.com/lobehub/lobe-chat/commit/d017f35))
46+
47+
</details>
2948

30-
- **misc**: Support no-fc models like deepseek r1 with online search, closes [#6842](https://github.com/jaworldwideorg/OneJA-Bot/issues/6842) ([f284c25](https://github.com/jaworldwideorg/OneJA-Bot/commit/f284c25))
49+
<div align="right">
50+
51+
[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52+
53+
</div>
54+
55+
### [Version 1.71.3](https://github.com/lobehub/lobe-chat/compare/v1.71.2...v1.71.3)
56+
57+
<sup>Released on **2025-03-15**</sup>
58+
59+
#### 🐛 Bug Fixes
60+
61+
- **misc**: Fix claude 3.5+ models context max output.
62+
63+
<br/>
64+
65+
<details>
66+
<summary><kbd>Improvements and Fixes</kbd></summary>
3167

3268
#### What's fixed
3369

34-
- **misc**: Fix anthropic max tokens, closes [#6859](https://github.com/jaworldwideorg/OneJA-Bot/issues/6859) ([35fbc6c](https://github.com/jaworldwideorg/OneJA-Bot/commit/35fbc6c))
35-
- **misc**: Fix context cache control and model builtin search switch, closes [#6831](https://github.com/jaworldwideorg/OneJA-Bot/issues/6831) ([5c6b8ea](https://github.com/jaworldwideorg/OneJA-Bot/commit/5c6b8ea))
36-
- **misc**: Fix crawl result for short content, closes [#6903](https://github.com/jaworldwideorg/OneJA-Bot/issues/6903) [#6904](https://github.com/jaworldwideorg/OneJA-Bot/issues/6904) ([d8fda65](https://github.com/jaworldwideorg/OneJA-Bot/commit/d8fda65))
37-
- **misc**: Fix theme flicking, closes [#6926](https://github.com/jaworldwideorg/OneJA-Bot/issues/6926) ([103c3e3](https://github.com/jaworldwideorg/OneJA-Bot/commit/103c3e3))
38-
- **misc**: Link jump in mobile terminal data statistics, closes [#6893](https://github.com/jaworldwideorg/OneJA-Bot/issues/6893) ([505d24d](https://github.com/jaworldwideorg/OneJA-Bot/commit/505d24d))
39-
- **misc**: Refactor the theme implement, closes [#6844](https://github.com/jaworldwideorg/OneJA-Bot/issues/6844) ([e5c2161](https://github.com/jaworldwideorg/OneJA-Bot/commit/e5c2161))
40-
- **misc**: The agent setting `-edit_agent` not work, closes [#4609](https://github.com/jaworldwideorg/OneJA-Bot/issues/4609) ([7af0ec6](https://github.com/jaworldwideorg/OneJA-Bot/commit/7af0ec6))
41-
- **misc**: Update cvpr cvf url rules, closes [#6860](https://github.com/jaworldwideorg/OneJA-Bot/issues/6860) ([c299067](https://github.com/jaworldwideorg/OneJA-Bot/commit/c299067))
70+
- **misc**: Fix claude 3.5+ models context max output, closes [#6984](https://github.com/lobehub/lobe-chat/issues/6984) ([da342dd](https://github.com/lobehub/lobe-chat/commit/da342dd))
71+
72+
</details>
73+
74+
<div align="right">
75+
76+
[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
77+
78+
</div>
79+
80+
### [Version 1.71.2](https://github.com/lobehub/lobe-chat/compare/v1.71.1...v1.71.2)
81+
82+
<sup>Released on **2025-03-15**</sup>
83+
84+
#### 🐛 Bug Fixes
85+
86+
- **misc**: Fix knowledge base issue.
87+
88+
<br/>
89+
90+
<details>
91+
<summary><kbd>Improvements and Fixes</kbd></summary>
92+
93+
#### What's fixed
94+
95+
- **misc**: Fix knowledge base issue, closes [#6973](https://github.com/lobehub/lobe-chat/issues/6973) ([15f39ef](https://github.com/lobehub/lobe-chat/commit/15f39ef))
96+
97+
</details>
98+
99+
<div align="right">
100+
101+
[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
102+
103+
</div>
104+
105+
### [Version 1.71.1](https://github.com/lobehub/lobe-chat/compare/v1.71.0...v1.71.1)
106+
107+
<sup>Released on **2025-03-15**</sup>
108+
109+
#### 🐛 Bug Fixes
110+
111+
- **misc**: Fix google gemini output relative issue.
112+
113+
#### 💄 Styles
114+
115+
- **misc**: Update Vertex AI models.
116+
117+
<br/>
118+
119+
<details>
120+
<summary><kbd>Improvements and Fixes</kbd></summary>
121+
122+
#### What's fixed
123+
124+
- **misc**: Fix google gemini output relative issue, closes [#6970](https://github.com/lobehub/lobe-chat/issues/6970) ([fdcaaf3](https://github.com/lobehub/lobe-chat/commit/fdcaaf3))
42125

43126
#### Styles
44127

45-
- **chat**: Auto send message from URL, closes [#6497](https://github.com/jaworldwideorg/OneJA-Bot/issues/6497) ([30b2639](https://github.com/jaworldwideorg/OneJA-Bot/commit/30b2639))
46-
- **spelling**: Correct "broswer" to "browser" across codebase, closes [#6876](https://github.com/jaworldwideorg/OneJA-Bot/issues/6876) ([8d677a2](https://github.com/jaworldwideorg/OneJA-Bot/commit/8d677a2))
47-
- **misc**: Support openrouter claude 3.7 sonnet reasoning, closes [#6806](https://github.com/jaworldwideorg/OneJA-Bot/issues/6806) ([f1ffc2c](https://github.com/jaworldwideorg/OneJA-Bot/commit/f1ffc2c))
48-
- **misc**: Support OpenRouter custom BaseURL ([a8089ed](https://github.com/jaworldwideorg/OneJA-Bot/commit/a8089ed))
128+
- **misc**: Update Vertex AI models, closes [#6967](https://github.com/lobehub/lobe-chat/issues/6967) ([d4432f1](https://github.com/lobehub/lobe-chat/commit/d4432f1))
129+
130+
</details>
131+
132+
<div align="right">
133+
134+
[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
135+
136+
</div>
137+
138+
## [Version 1.71.0](https://github.com/lobehub/lobe-chat/compare/v1.70.11...v1.71.0)
139+
140+
<sup>Released on **2025-03-14**</sup>
141+
142+
#### ✨ Features
143+
144+
- **misc**: Support gemini image output in chat.
145+
146+
<br/>
147+
148+
<details>
149+
<summary><kbd>Improvements and Fixes</kbd></summary>
150+
151+
#### What's improved
152+
153+
- **misc**: Support gemini image output in chat, closes [#6931](https://github.com/lobehub/lobe-chat/issues/6931) ([d4c0d1f](https://github.com/lobehub/lobe-chat/commit/d4c0d1f))
154+
155+
</details>
156+
157+
<div align="right">
158+
159+
[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
160+
161+
</div>
162+
163+
### [Version 1.70.11](https://github.com/lobehub/lobe-chat/compare/v1.70.10...v1.70.11)
164+
165+
<sup>Released on **2025-03-13**</sup>
166+
167+
<br/>
168+
169+
<details>
170+
<summary><kbd>Improvements and Fixes</kbd></summary>
49171

50172
</details>
51173

changelog/v1.json

+48
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,52 @@
11
[
2+
{
3+
"children": {
4+
"improvements": ["Support screenshot to clipboard when sharing."]
5+
},
6+
"date": "2025-03-17",
7+
"version": "1.71.5"
8+
},
9+
{
10+
"children": {
11+
"improvements": ["Update Wenxin & Hunyuan model list."]
12+
},
13+
"date": "2025-03-17",
14+
"version": "1.71.4"
15+
},
16+
{
17+
"children": {
18+
"fixes": ["Fix claude 3.5+ models context max output."]
19+
},
20+
"date": "2025-03-15",
21+
"version": "1.71.3"
22+
},
23+
{
24+
"children": {
25+
"fixes": ["Fix knowledge base issue."]
26+
},
27+
"date": "2025-03-15",
28+
"version": "1.71.2"
29+
},
30+
{
31+
"children": {
32+
"fixes": ["Fix google gemini output relative issue."],
33+
"improvements": ["Update Vertex AI models."]
34+
},
35+
"date": "2025-03-15",
36+
"version": "1.71.1"
37+
},
38+
{
39+
"children": {
40+
"features": ["Support gemini image output in chat."]
41+
},
42+
"date": "2025-03-14",
43+
"version": "1.71.0"
44+
},
45+
{
46+
"children": {},
47+
"date": "2025-03-13",
48+
"version": "1.70.11"
49+
},
250
{
351
"children": {
452
"fixes": ["The agent setting -edit_agent not work."]

0 commit comments

Comments
 (0)