chore: release v3.0.1
This commit is contained in:
parent
a980fa34e1
commit
7589599f91
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [3.0.1] - 2025-12-16
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- **Agent Task Cancellation**: Fixed an issue where Agent tasks would continue running in the background after cancellation.
|
||||||
|
- **Event Streaming**: Resolved `UnboundLocalError` in `event_manager.py` and removed artificial delays to prevent event queue buildup.
|
||||||
|
- **Agent Timeout**: Increased Verification Agent timeout to 10 minutes to support complex PoC generation.
|
||||||
|
- **LLM Streaming**: Improved robustness of `stream_llm_call` with explicit string timeouts to prevent hanging.
|
||||||
|
|
||||||
|
## [3.0.0] - 2025-12-15
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **Multi-Agent System**: Introduced Orchestrator, Recon, Analysis, and Verification agents for autonomous security auditing.
|
||||||
|
- **RAG Integration**: Added Retrieval-Augmented Generation for better code understanding.
|
||||||
|
- **Docker Sandbox**: Implemented secure environment for tool execution.
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
[](https://github.com/lintsinghua/DeepAudit/releases)
|
[](https://github.com/lintsinghua/DeepAudit/releases)
|
||||||
[](https://opensource.org/licenses/MIT)
|
[](https://opensource.org/licenses/MIT)
|
||||||
[](https://reactjs.org/)
|
[](https://reactjs.org/)
|
||||||
[](https://www.typescriptlang.org/)
|
[](https://www.typescriptlang.org/)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "deepaudit-backend"
|
name = "deepaudit-backend"
|
||||||
version = "3.0.0"
|
version = "3.0.1"
|
||||||
description = "DeepAudit Backend API - AI-Powered Code Security Audit Platform"
|
description = "DeepAudit Backend API - AI-Powered Code Security Audit Platform"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "deep-audit",
|
"name": "deep-audit",
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue