@lobehub/lobehub 2.0.0-next.150 → 2.0.0-next.151

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 2.0.0-next.151](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.150...v2.0.0-next.151)
6
+
7
+ <sup>Released on **2025-12-03**</sup>
8
+
9
+ #### ♻ Code Refactoring
10
+
11
+ - **misc**: Unify retry logic to async-retry.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Code refactoring
19
+
20
+ - **misc**: Unify retry logic to async-retry, closes [#10579](https://github.com/lobehub/lobe-chat/issues/10579) ([95f31bc](https://github.com/lobehub/lobe-chat/commit/95f31bc))
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 2.0.0-next.150](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.149...v2.0.0-next.150)
6
31
 
7
32
  <sup>Released on **2025-12-03**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Unify retry logic to async-retry."
6
+ ]
7
+ },
8
+ "date": "2025-12-03",
9
+ "version": "2.0.0-next.151"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "fixes": [
@@ -1007,6 +1007,7 @@ table topics {
1007
1007
  session_id [name: 'topics_session_id_idx']
1008
1008
  group_id [name: 'topics_group_id_idx']
1009
1009
  agent_id [name: 'topics_agent_id_idx']
1010
+ () [name: 'topics_extract_status_gin_idx']
1010
1011
  }
1011
1012
  }
1012
1013
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/lobehub",
3
- "version": "2.0.0-next.150",
3
+ "version": "2.0.0-next.151",
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",
@@ -200,6 +200,7 @@
200
200
  "ahooks": "^3.9.6",
201
201
  "antd": "^5.29.1",
202
202
  "antd-style": "^3.7.1",
203
+ "async-retry": "^1.3.3",
203
204
  "better-auth": "^1.4.3",
204
205
  "brotli-wasm": "^3.0.1",
205
206
  "chroma-js": "^3.2.0",
@@ -330,6 +331,7 @@
330
331
  "@testing-library/jest-dom": "^6.9.1",
331
332
  "@testing-library/react": "^16.3.0",
332
333
  "@testing-library/user-event": "^14.6.1",
334
+ "@types/async-retry": "^1.4.9",
333
335
  "@types/chroma-js": "^3.1.2",
334
336
  "@types/crypto-js": "^4.2.2",
335
337
  "@types/debug": "^4.1.12",
@@ -0,0 +1 @@
1
+ CREATE INDEX IF NOT EXISTS "topics_extract_status_gin_idx" ON "topics" USING gin ((metadata->'userMemoryExtractStatus') jsonb_path_ops);