@lobehub/chat 1.101.0 → 1.101.1
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/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.101.1](https://github.com/lobehub/lobe-chat/compare/v1.101.0...v1.101.1)
|
6
|
+
|
7
|
+
<sup>Released on **2025-07-19**</sup>
|
8
|
+
|
9
|
+
#### 🐛 Bug Fixes
|
10
|
+
|
11
|
+
- **misc**: Try fix authorization code exchange & pin next-auto to `beta.29`.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's fixed
|
19
|
+
|
20
|
+
- **misc**: Try fix authorization code exchange & pin next-auto to `beta.29`, closes [#8496](https://github.com/lobehub/lobe-chat/issues/8496) ([27c4881](https://github.com/lobehub/lobe-chat/commit/27c4881))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
## [Version 1.101.0](https://github.com/lobehub/lobe-chat/compare/v1.100.2...v1.101.0)
|
6
31
|
|
7
32
|
<sup>Released on **2025-07-19**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.101.
|
3
|
+
"version": "1.101.1",
|
4
4
|
"description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
5
5
|
"keywords": [
|
6
6
|
"framework",
|
@@ -211,7 +211,7 @@
|
|
211
211
|
"modern-screenshot": "^4.6.0",
|
212
212
|
"nanoid": "^5.1.5",
|
213
213
|
"next": "~15.3.3",
|
214
|
-
"next-auth": "5.0.0-beta.
|
214
|
+
"next-auth": "5.0.0-beta.29",
|
215
215
|
"next-mdx-remote": "^5.0.0",
|
216
216
|
"nextjs-toploader": "^3.8.16",
|
217
217
|
"node-machine-id": "^1.1.12",
|
@@ -75,8 +75,8 @@ export default memo(() => {
|
|
75
75
|
|
76
76
|
const searchParams = useSearchParams();
|
77
77
|
|
78
|
-
// Redirect back to the page url
|
79
|
-
const callbackUrl = searchParams.get('callbackUrl') ?? '';
|
78
|
+
// Redirect back to the page url, fallback to '/' if failed
|
79
|
+
const callbackUrl = searchParams.get('callbackUrl') ?? '/';
|
80
80
|
|
81
81
|
const handleSignIn = async (provider: string) => {
|
82
82
|
try {
|