@lobehub/chat 1.51.12 → 1.51.13

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.51.13](https://github.com/lobehub/lobe-chat/compare/v1.51.12...v1.51.13)
6
+
7
+ <sup>Released on **2025-02-07**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix next auth error.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Fix next auth error, closes [#5825](https://github.com/lobehub/lobe-chat/issues/5825) ([4509b7a](https://github.com/lobehub/lobe-chat/commit/4509b7a))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 1.51.12](https://github.com/lobehub/lobe-chat/compare/v1.51.11...v1.51.12)
6
31
 
7
32
  <sup>Released on **2025-02-07**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "fixes": [
5
+ "Fix next auth error."
6
+ ]
7
+ },
8
+ "date": "2025-02-07",
9
+ "version": "1.51.13"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "fixes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.51.12",
3
+ "version": "1.51.13",
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@10.2.0",
320
+ "packageManager": "pnpm@9.15.4",
321
321
  "publishConfig": {
322
322
  "access": "public",
323
323
  "registry": "https://registry.npmjs.org"
@@ -8,3 +8,5 @@ const MainLayout = ServerLayout({ Desktop, Mobile });
8
8
  MainLayout.displayName = 'MainLayout';
9
9
 
10
10
  export default MainLayout;
11
+
12
+ export const dynamic = 'force-dynamic';
@@ -92,3 +92,4 @@ export const generateStaticParams = () => {
92
92
 
93
93
  return variants;
94
94
  };
95
+
@@ -7,3 +7,4 @@ export const metadata: Metadata = {
7
7
  };
8
8
 
9
9
  export { default } from './loading';
10
+