@lobehub/chat 1.51.14 → 1.51.15
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 +25 -0
- package/Dockerfile.database +1 -0
- package/changelog/v1.json +9 -0
- package/package.json +2 -2
- package/src/config/auth.ts +2 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.51.15](https://github.com/lobehub/lobe-chat/compare/v1.51.14...v1.51.15)
|
6
|
+
|
7
|
+
<sup>Released on **2025-02-07**</sup>
|
8
|
+
|
9
|
+
#### 🐛 Bug Fixes
|
10
|
+
|
11
|
+
- **misc**: Fix home next auth error and update pnpm.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's fixed
|
19
|
+
|
20
|
+
- **misc**: Fix home next auth error and update pnpm, closes [#5833](https://github.com/lobehub/lobe-chat/issues/5833) ([aa74d20](https://github.com/lobehub/lobe-chat/commit/aa74d20))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.51.14](https://github.com/lobehub/lobe-chat/compare/v1.51.13...v1.51.14)
|
6
31
|
|
7
32
|
<sup>Released on **2025-02-07**</sup>
|
package/Dockerfile.database
CHANGED
@@ -49,6 +49,7 @@ ARG NEXT_PUBLIC_UMAMI_WEBSITE_ID
|
|
49
49
|
ENV NEXT_PUBLIC_BASE_PATH="${NEXT_PUBLIC_BASE_PATH}"
|
50
50
|
|
51
51
|
ENV NEXT_PUBLIC_SERVICE_MODE="${NEXT_PUBLIC_SERVICE_MODE:-server}" \
|
52
|
+
NEXT_PUBLIC_ENABLE_NEXT_AUTH="1" \
|
52
53
|
APP_URL="http://app.com" \
|
53
54
|
DATABASE_DRIVER="node" \
|
54
55
|
DATABASE_URL="postgres://postgres:password@localhost:5432/postgres" \
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.51.
|
3
|
+
"version": "1.51.15",
|
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",
|
@@ -317,7 +317,7 @@
|
|
317
317
|
"vitest": "~1.2.2",
|
318
318
|
"vitest-canvas-mock": "^0.3.3"
|
319
319
|
},
|
320
|
-
"packageManager": "pnpm@
|
320
|
+
"packageManager": "pnpm@10.2.0",
|
321
321
|
"publishConfig": {
|
322
322
|
"access": "public",
|
323
323
|
"registry": "https://registry.npmjs.org"
|
package/src/config/auth.ts
CHANGED
@@ -217,7 +217,8 @@ export const getAuthConfig = () => {
|
|
217
217
|
CLERK_WEBHOOK_SECRET: process.env.CLERK_WEBHOOK_SECRET,
|
218
218
|
|
219
219
|
// Next Auth
|
220
|
-
NEXT_PUBLIC_ENABLE_NEXT_AUTH:
|
220
|
+
NEXT_PUBLIC_ENABLE_NEXT_AUTH:
|
221
|
+
!!process.env.NEXT_AUTH_SECRET || process.env.NEXT_PUBLIC_ENABLE_NEXT_AUTH === '1',
|
221
222
|
NEXT_AUTH_SSO_PROVIDERS: process.env.NEXT_AUTH_SSO_PROVIDERS,
|
222
223
|
NEXT_AUTH_SECRET: process.env.NEXT_AUTH_SECRET,
|
223
224
|
NEXT_AUTH_DEBUG: !!process.env.NEXT_AUTH_DEBUG,
|