@lobehub/chat 1.132.5 → 1.132.7

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,40 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.132.7](https://github.com/lobehub/lobe-chat/compare/v1.132.6...v1.132.7)
6
+
7
+ <sup>Released on **2025-09-23**</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.132.6](https://github.com/lobehub/lobe-chat/compare/v1.132.5...v1.132.6)
23
+
24
+ <sup>Released on **2025-09-23**</sup>
25
+
26
+ <br/>
27
+
28
+ <details>
29
+ <summary><kbd>Improvements and Fixes</kbd></summary>
30
+
31
+ </details>
32
+
33
+ <div align="right">
34
+
35
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
36
+
37
+ </div>
38
+
5
39
  ### [Version 1.132.5](https://github.com/lobehub/lobe-chat/compare/v1.132.4...v1.132.5)
6
40
 
7
41
  <sup>Released on **2025-09-22**</sup>
@@ -7,6 +7,7 @@ const packageJSON = require('./package.json');
7
7
 
8
8
  const channel = process.env.UPDATE_CHANNEL;
9
9
  const arch = os.arch();
10
+ const hasAppleCertificate = Boolean(process.env.APPLE_CERTIFICATE_BASE64);
10
11
 
11
12
  console.log(`🚄 Build Version ${packageJSON.version}, Channel: ${channel}`);
12
13
  console.log(`🏗️ Building for architecture: ${arch}`);
@@ -14,6 +15,13 @@ console.log(`🏗️ Building for architecture: ${arch}`);
14
15
  const isNightly = channel === 'nightly';
15
16
  const isBeta = packageJSON.name.includes('beta');
16
17
 
18
+ // https://www.electron.build/code-signing-mac?utm_source=openai#how-to-disable-code-signing-during-the-build-process-on-macos
19
+ if (!hasAppleCertificate) {
20
+ // Disable auto discovery to keep electron-builder from searching unavailable signing identities
21
+ process.env.CSC_IDENTITY_AUTO_DISCOVERY = 'false';
22
+ console.log('⚠️ Apple certificate not found, macOS artifacts will be unsigned.');
23
+ }
24
+
17
25
  // 根据版本类型确定协议 scheme
18
26
  const getProtocolScheme = () => {
19
27
  if (isNightly) return 'lobehub-nightly';
@@ -87,8 +95,9 @@ const config = {
87
95
  NSMicrophoneUsageDescription: "Application requests access to the device's microphone.",
88
96
  },
89
97
  gatekeeperAssess: false,
90
- hardenedRuntime: true,
91
- notarize: true,
98
+ hardenedRuntime: hasAppleCertificate,
99
+ notarize: hasAppleCertificate,
100
+ ...(hasAppleCertificate ? {} : { identity: null }),
92
101
  target:
93
102
  // 降低构建时间,nightly 只打 dmg
94
103
  // 根据当前机器架构只构建对应架构的包
package/changelog/v1.json CHANGED
@@ -1,4 +1,14 @@
1
1
  [
2
+ {
3
+ "children": {},
4
+ "date": "2025-09-23",
5
+ "version": "1.132.7"
6
+ },
7
+ {
8
+ "children": {},
9
+ "date": "2025-09-23",
10
+ "version": "1.132.6"
11
+ },
2
12
  {
3
13
  "children": {
4
14
  "improvements": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.132.5",
3
+ "version": "1.132.7",
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",
@@ -124,8 +124,8 @@
124
124
  "@ant-design/pro-components": "^2.8.10",
125
125
  "@anthropic-ai/sdk": "^0.63.0",
126
126
  "@auth/core": "^0.40.0",
127
- "@aws-sdk/client-s3": "^3.887.0",
128
- "@aws-sdk/s3-request-presigner": "^3.887.0",
127
+ "@aws-sdk/client-s3": "~3.893.0",
128
+ "@aws-sdk/s3-request-presigner": "~3.893.0",
129
129
  "@azure-rest/ai-inference": "1.0.0-beta.5",
130
130
  "@azure/core-auth": "^1.10.1",
131
131
  "@cfworker/json-schema": "^4.1.1",