@lobehub/chat 1.51.14 → 1.51.16

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,48 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.51.16](https://github.com/lobehub/lobe-chat/compare/v1.51.15...v1.51.16)
6
+
7
+ <sup>Released on **2025-02-07**</sup>
8
+
9
+ <br/>
10
+
11
+ <details>
12
+ <summary><kbd>Improvements and Fixes</kbd></summary>
13
+
14
+ </details>
15
+
16
+ <div align="right">
17
+
18
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
19
+
20
+ </div>
21
+
22
+ ### [Version 1.51.15](https://github.com/lobehub/lobe-chat/compare/v1.51.14...v1.51.15)
23
+
24
+ <sup>Released on **2025-02-07**</sup>
25
+
26
+ #### 🐛 Bug Fixes
27
+
28
+ - **misc**: Fix home next auth error and update pnpm.
29
+
30
+ <br/>
31
+
32
+ <details>
33
+ <summary><kbd>Improvements and Fixes</kbd></summary>
34
+
35
+ #### What's fixed
36
+
37
+ - **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))
38
+
39
+ </details>
40
+
41
+ <div align="right">
42
+
43
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
44
+
45
+ </div>
46
+
5
47
  ### [Version 1.51.14](https://github.com/lobehub/lobe-chat/compare/v1.51.13...v1.51.14)
6
48
 
7
49
  <sup>Released on **2025-02-07**</sup>
@@ -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
@@ -1,4 +1,18 @@
1
1
  [
2
+ {
3
+ "children": {},
4
+ "date": "2025-02-07",
5
+ "version": "1.51.16"
6
+ },
7
+ {
8
+ "children": {
9
+ "fixes": [
10
+ "Fix home next auth error and update pnpm."
11
+ ]
12
+ },
13
+ "date": "2025-02-07",
14
+ "version": "1.51.15"
15
+ },
2
16
  {
3
17
  "children": {
4
18
  "improvements": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.51.14",
3
+ "version": "1.51.16",
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",
@@ -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: !!process.env.NEXT_AUTH_SECRET,
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,