@lobehub/lobehub 2.0.0-next.177 → 2.0.0-next.179

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.
@@ -55,12 +55,10 @@ jobs:
55
55
  run: echo "secret=$(openssl rand -base64 32)" >> $GITHUB_OUTPUT
56
56
 
57
57
  - name: Build with bundle analyzer
58
- run: bun run build:analyze
58
+ run: bun run build:analyze || true
59
59
  env:
60
- NODE_OPTIONS: --max-old-space-size=6144
61
- KEY_VAULTS_SECRET: ${{ steps.generate-secret.outputs.secret }}
62
- S3_PUBLIC_DOMAIN: https://example.com
63
- APP_URL: https://example.com
60
+ NODE_OPTIONS: --max-old-space-size=8192
61
+ KEY_VAULTS_SECRET: ${{ secrets.KEY_VAULTS_SECRET || steps.generate-secret.outputs.secret }}
64
62
 
65
63
  - name: Prepare analyzer reports
66
64
  run: |
package/CHANGELOG.md CHANGED
@@ -2,6 +2,57 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 2.0.0-next.179](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.178...v2.0.0-next.179)
6
+
7
+ <sup>Released on **2025-12-25**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **scripts**: Fix syntax error in prebuild.mts.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **scripts**: Fix syntax error in prebuild.mts, closes [#10952](https://github.com/lobehub/lobe-chat/issues/10952) ([3d46c13](https://github.com/lobehub/lobe-chat/commit/3d46c13))
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
+
30
+ ## [Version 2.0.0-next.178](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.177...v2.0.0-next.178)
31
+
32
+ <sup>Released on **2025-12-24**</sup>
33
+
34
+ #### 🐛 Bug Fixes
35
+
36
+ - **ci**: Always continue build to upload bundle analyzer report, skip backend routes in bundle analyzer build.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### What's fixed
44
+
45
+ - **ci**: Always continue build to upload bundle analyzer report, closes [#10946](https://github.com/lobehub/lobe-chat/issues/10946) ([8d37811](https://github.com/lobehub/lobe-chat/commit/8d37811))
46
+ - **ci**: Skip backend routes in bundle analyzer build, closes [#10944](https://github.com/lobehub/lobe-chat/issues/10944) ([0276b87](https://github.com/lobehub/lobe-chat/commit/0276b87))
47
+
48
+ </details>
49
+
50
+ <div align="right">
51
+
52
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
53
+
54
+ </div>
55
+
5
56
  ## [Version 2.0.0-next.177](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.176...v2.0.0-next.177)
6
57
 
7
58
  <sup>Released on **2025-12-24**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,14 @@
1
1
  [
2
+ {
3
+ "children": {},
4
+ "date": "2025-12-25",
5
+ "version": "2.0.0-next.179"
6
+ },
7
+ {
8
+ "children": {},
9
+ "date": "2025-12-24",
10
+ "version": "2.0.0-next.178"
11
+ },
2
12
  {
3
13
  "children": {},
4
14
  "date": "2025-12-24",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/lobehub",
3
- "version": "2.0.0-next.177",
3
+ "version": "2.0.0-next.179",
4
4
  "description": "LobeHub - an open-source,comprehensive AI Agent 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",
@@ -4,11 +4,18 @@ import { rm } from 'node:fs/promises';
4
4
  import path from 'node:path';
5
5
 
6
6
  const isDesktop = process.env.NEXT_PUBLIC_IS_DESKTOP_APP === '1';
7
+ const isBundleAnalyzer = process.env.ANALYZE === 'true' && process.env.CI === 'true';
7
8
 
8
9
  dotenv.config();
9
10
  // 创建需要排除的特性映射
10
11
  /* eslint-disable sort-keys-fix/sort-keys-fix */
11
12
  const partialBuildPages = [
13
+ // no need for bundle analyzer (frontend only)
14
+ {
15
+ name: 'backend-routes',
16
+ disabled: isBundleAnalyzer,
17
+ paths: ['src/app/(backend)'],
18
+ },
12
19
  // no need for desktop
13
20
  // {
14
21
  // name: 'changelog',