Skip to content

Commit 7589599

Browse files
committed
chore: release v3.0.1
1 parent a980fa3 commit 7589599

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [3.0.1] - 2025-12-16
6+
7+
### Fixed
8+
- **Agent Task Cancellation**: Fixed an issue where Agent tasks would continue running in the background after cancellation.
9+
- **Event Streaming**: Resolved `UnboundLocalError` in `event_manager.py` and removed artificial delays to prevent event queue buildup.
10+
- **Agent Timeout**: Increased Verification Agent timeout to 10 minutes to support complex PoC generation.
11+
- **LLM Streaming**: Improved robustness of `stream_llm_call` with explicit string timeouts to prevent hanging.
12+
13+
## [3.0.0] - 2025-12-15
14+
15+
### Added
16+
- **Multi-Agent System**: Introduced Orchestrator, Recon, Analysis, and Verification agents for autonomous security auditing.
17+
- **RAG Integration**: Added Retrieval-Augmented Generation for better code understanding.
18+
- **Docker Sandbox**: Implemented secure environment for tool execution.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<div align="center">
1414

15-
[![Version](https://img.shields.io/badge/version-3.0.0-blue.svg)](https://github.com/lintsinghua/DeepAudit/releases)
15+
[![Version](https://img.shields.io/badge/version-3.0.1-blue.svg)](https://github.com/lintsinghua/DeepAudit/releases)
1616
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1717
[![React](https://img.shields.io/badge/React-18-61dafb.svg)](https://reactjs.org/)
1818
[![TypeScript](https://img.shields.io/badge/TypeScript-5.7-3178c6.svg)](https://www.typescriptlang.org/)

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "deepaudit-backend"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
description = "DeepAudit Backend API - AI-Powered Code Security Audit Platform"
55
requires-python = ">=3.11"
66
readme = "README.md"

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deep-audit",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"type": "module",
55
"scripts": {
66
"dev": "vite",

0 commit comments

Comments
 (0)