Skip to content

Commit a0952ed

Browse files
committed
feat: release v0.3.2 with new features, improvements, and bug fixes
1 parent eb6f04b commit a0952ed

File tree

4 files changed

+91
-3
lines changed

4 files changed

+91
-3
lines changed

CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,62 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.3.2] - 2026-03-04
6+
7+
### 🚀 New Features
8+
- **NEW**: Knowledge Search — new "Knowledge Search" entry point with semantic retrieval, supporting bringing search results directly into the conversation window
9+
- **NEW**: Parser Engine Configuration — support configuring document parser engines and storage engines for different sources in settings, with per-file-type parser engine selection in knowledge base
10+
- **NEW**: Storage Provider Configuration — support configuring storage providers (local, MinIO, COS, Volcengine TOS) per data source with standardized configuration and backward compatibility
11+
- **NEW**: Milvus Vector Database — added Milvus as a new vector database backend for knowledge retrieval
12+
- **NEW**: Volcengine TOS — added Volcengine TOS object storage support
13+
- **NEW**: Mermaid Rendering — support mermaid diagram rendering in chat with fullscreen viewer, zoom, pan, toolbar and export
14+
- **NEW**: Batch Conversation Management — batch management and delete all sessions functionality
15+
- **NEW**: Remote URL Knowledge Creation — support creating knowledge entries from remote file URLs
16+
- **NEW**: Async Knowledge Re-parse — async API for re-processing existing knowledge documents
17+
- **NEW**: User Memory Graph Preview — preview of user-level memory graph visualization
18+
- **NEW**: Tenant Access Authorization — tenant access authorization in TenantHandler
19+
- **NEW**: Database Query Tool — built-in database query tool for agents with automatic tenant isolation and soft-delete filtering
20+
21+
### ⚡ Improvements
22+
- Image rendering in local storage mode during conversations with optimized streaming image placeholders
23+
- Embedded document preview component for previewing user-uploaded original files
24+
- Knowledge base, agent, and shared space list page interaction redesign with improved UI elements
25+
- Storage configuration standardization with enhanced backward compatibility
26+
- Dynamic file service resolution for knowledge extraction
27+
- SSRF safety checks enhanced in MinerUCloudReader
28+
- Nginx configuration improved for file handling
29+
- Dockerfile and build scripts with customizable APT mirror support
30+
- System information display with database version
31+
- Path and filename validation security utilities
32+
- Vector embeddings indexing enhanced with TagID and IsRecommended fields
33+
- Korean (한국어) README translation
34+
35+
### 🐛 Bug Fixes
36+
- Handle thinking content in Ollama chat responses
37+
- Batch manage dialog now loads all sessions independently from API
38+
- Prevent modal from closing when text selection extends beyond dialog boundary
39+
- Handle empty metadata case in Knowledge struct
40+
- Swagger interface documentation generation error resolved
41+
- Auth form validation check to handle non-boolean responses
42+
- Helm frontend APP_HOST env default value corrected
43+
44+
### 🗑️ Removals
45+
- Removed Lite edition support and related configurations
46+
47+
## [0.3.1] - 2026-02-10
48+
49+
### 🚀 New Features
50+
- **NEW**: Remote Backend Support — support remote backend and HTTPS proxy configuration
51+
- **NEW**: Enhanced Document Upload — expanded document upload capabilities in KnowledgeBase component
52+
53+
### ⚡ Improvements
54+
- Enhanced resource management in ListSpaceSidebar and KnowledgeBaseList
55+
56+
### 🐛 Bug Fixes
57+
- Add clipboard API fallback for non-secure contexts
58+
- DuckDB spatial extension not found error
59+
- Data analysis knowledge files loaded via presigned URLs
60+
561
## [0.3.0] - 2026-02-09
662

763
### 🚀 New Features
@@ -590,6 +646,8 @@ All notable changes to this project will be documented in this file.
590646
- Docker Compose for quick startup and service orchestration.
591647
- MCP server support for integrating with MCP-compatible clients.
592648

649+
[0.3.2]: https://github.com/Tencent/WeKnora/tree/v0.3.2
650+
[0.3.1]: https://github.com/Tencent/WeKnora/tree/v0.3.1
593651
[0.3.0]: https://github.com/Tencent/WeKnora/tree/v0.3.0
594652
[0.2.10]: https://github.com/Tencent/WeKnora/tree/v0.2.10
595653
[0.2.9]: https://github.com/Tencent/WeKnora/tree/v0.2.9

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<img src="https://img.shields.io/badge/License-MIT-ffffff?labelColor=d4eaf7&color=2e6cc4" alt="License">
2323
</a>
2424
<a href="./CHANGELOG.md">
25-
<img alt="Version" src="https://img.shields.io/badge/version-0.3.0-2e6cc4?labelColor=d4eaf7">
25+
<img alt="Version" src="https://img.shields.io/badge/version-0.3.2-2e6cc4?labelColor=d4eaf7">
2626
</a>
2727
</p>
2828

@@ -50,6 +50,21 @@ It adopts a modular architecture that combines multimodal preprocessing, semanti
5050

5151
## ✨ Latest Updates
5252

53+
**v0.3.2 Highlights:**
54+
55+
- 🔍 **Knowledge Search**: New "Knowledge Search" entry point with semantic retrieval, supporting bringing search results directly into the conversation window
56+
- ⚙️ **Parser & Storage Engine Configuration**: Configure document parser engines and storage engines for different sources in settings, with per-file-type parser selection in knowledge base
57+
- 🖼️ **Image Rendering in Local Storage**: Support image rendering during conversations in local storage mode, with optimized streaming image placeholders
58+
- 📄 **Document Preview**: Embedded document preview component for previewing user-uploaded original files
59+
- 🎨 **UI Optimization**: Knowledge base, agent, and shared space list page interaction redesign
60+
- 🗄️ **Milvus Support**: Added Milvus as a new vector database backend for knowledge retrieval
61+
- 🌋 **Volcengine TOS**: Added Volcengine TOS object storage support
62+
- 📊 **Mermaid Rendering**: Support mermaid diagram rendering in chat with fullscreen viewer, zoom, pan, toolbar and export
63+
- 💬 **Batch Conversation Management**: Batch management and delete all sessions functionality
64+
- 🔗 **Remote URL Knowledge**: Support creating knowledge entries from remote file URLs
65+
- 🧠 **Memory Graph Preview**: Preview of user-level memory graph visualization
66+
- 🔄 **Async Re-parse**: Async API for re-processing existing knowledge documents
67+
5368
**v0.3.0 Highlights:**
5469

5570
- 🏢 **Shared Space**: Shared space with member invitations, shared knowledge bases and agents across members, tenant-isolated retrieval

README_CN.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<img src="https://img.shields.io/badge/License-MIT-ffffff?labelColor=d4eaf7&color=2e6cc4" alt="License">
2323
</a>
2424
<a href="./CHANGELOG.md">
25-
<img alt="版本" src="https://img.shields.io/badge/version-0.3.0-2e6cc4?labelColor=d4eaf7">
25+
<img alt="版本" src="https://img.shields.io/badge/version-0.3.2-2e6cc4?labelColor=d4eaf7">
2626
</a>
2727
</p>
2828

@@ -50,6 +50,21 @@
5050

5151
## ✨ 最新更新
5252

53+
**v0.3.2 版本亮点:**
54+
55+
- 🔍 **知识搜索**:新增"知识搜索"入口,支持语义检索,可将检索结果直接带入对话窗口
56+
- ⚙️ **解析引擎与存储引擎配置**:设置中支持配置各个来源的文档解析引擎和存储引擎信息,知识库中支持为不同类型文件选择不同的解析引擎
57+
- 🖼️ **本地存储图片渲染**:本地存储模式下支持对话过程中图片的渲染,流式输出中图片占位效果优化
58+
- 📄 **文档预览**:使用内嵌的文档预览组件预览用户上传的原始文件
59+
- 🎨 **交互优化**:知识库、智能体、共享空间列表页面交互全面优化
60+
- 🗄️ **Milvus支持**:新增Milvus向量数据库后端,用于知识检索
61+
- 🌋 **火山引擎TOS**:新增火山引擎TOS对象存储支持
62+
- 📊 **Mermaid渲染**:对话中支持Mermaid图表渲染,全屏查看器支持缩放、导航和导出
63+
- 💬 **对话批量管理**:支持批量管理和一键删除所有会话
64+
- 🔗 **远程URL创建知识**:支持从远程文件URL创建知识条目
65+
- 🧠 **记忆图谱预览**:用户级记忆图谱可视化预览
66+
- 🔄 **异步重新解析**:支持异步API重新解析已有知识文档
67+
5368
**v0.3.0 版本亮点:**
5469

5570
- 🏢 **共享空间**:共享空间管理,支持成员邀请、知识库和Agent跨成员共享,租户隔离检索

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.3.2

0 commit comments

Comments
 (0)