Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
## v0.10.0 (2026-05-22)

### ✨ Features

- possibility to enable or disable thinking with ollama
- possibility to enable or disable thinking with ollama

### 🐛🚑️ Fixes

- abort attack if non-default category classifier model is not s…
- fixed integration tests
- abort attack if non-default category classifier model is not specified and the default model is not present in ollama

### bump

- **deps-dev**: bump pre-commit from 4.5.1 to 4.6.0
- **deps**: bump click from 8.1.8 to 8.4.0
- **deps-dev**: bump pytest-rerunfailures from 16.1 to 16.2
- **deps-dev**: bump packaging from 26.0 to 26.2
- version 0.9.0 → 0.9.1
- **deps-dev**: bump commitizen from 4.13.10 to 4.16.0

### fix

- move examples/ inside hackagent package for correct wheel packaging
- normalize TAP judge scores to consistent 1-10 scale
- pass TAP success_threshold to coordinator finalize_all_goals
- normalize TAP judge scores to a consistent 1-10 scale

### 🫥 fixup

- fixed merge conflict on tag bump

## v0.9.1 (2026-05-21)

## v0.9.0 (2026-05-15)
Expand Down
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ comment:
ignore:
- "tests/**/*"
- "docs/**/*"
- "examples/**/*"
- "hackagent/examples/**/*"
- "htmlcov/**/*"
- "**/__pycache__/**"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hackagent"
version = "0.9.1"
version = "0.10.0"
description = "HackAgent is an open-source security toolkit to detect vulnerabilities of your AI Agents."
authors = [
{name = "AI Security Lab", email = "ais@ai4i.it"}
Expand Down Expand Up @@ -80,6 +80,9 @@ build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["hackagent"]
artifacts = [
"hackagent/examples/**",
]

[tool.hatch.build.targets.sdist]
include = [
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,9 +335,10 @@ def adk_server_with_ollama(
yield None
return

# Find the examples/google_adk directory
# Find the examples/google_adk directory (inside the hackagent package)
examples_dir = os.path.join(
os.path.dirname(os.path.dirname(os.path.dirname(__file__))),
"hackagent",
"examples",
"google_adk",
)
Expand Down
Loading