agentguardproxy 0.5.2__tar.gz → 0.6.0__tar.gz

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.
Files changed (33) hide show
  1. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/PKG-INFO +1 -1
  2. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguard/adapters/mcp.py +1 -1
  3. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguardproxy.egg-info/PKG-INFO +1 -1
  4. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/pyproject.toml +1 -1
  5. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/README.md +0 -0
  6. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguard/__init__.py +0 -0
  7. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguard/adapters/__init__.py +0 -0
  8. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguard/adapters/browseruse.py +0 -0
  9. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguard/adapters/crewai.py +0 -0
  10. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguard/adapters/langchain.py +0 -0
  11. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguardproxy.egg-info/SOURCES.txt +0 -0
  12. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguardproxy.egg-info/dependency_links.txt +0 -0
  13. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguardproxy.egg-info/requires.txt +0 -0
  14. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/agentguardproxy.egg-info/top_level.txt +0 -0
  15. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/setup.cfg +0 -0
  16. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_adapters.py +0 -0
  17. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_adapters_extended.py +0 -0
  18. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_browseruse.py +0 -0
  19. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_crewai.py +0 -0
  20. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_decorator.py +0 -0
  21. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_end_to_end_real_server.py +0 -0
  22. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_guard.py +0 -0
  23. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_integration.py +0 -0
  24. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_langchain.py +0 -0
  25. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_mcp.py +0 -0
  26. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_mcp_fuzz.py +0 -0
  27. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_mcp_gateway.py +0 -0
  28. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_polling_jitter.py +0 -0
  29. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_redactor_property.py +0 -0
  30. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_sdk_integration.py +0 -0
  31. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_sdk_polish.py +0 -0
  32. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_tenant_routing.py +0 -0
  33. {agentguardproxy-0.5.2 → agentguardproxy-0.6.0}/tests/test_wire_format.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentguardproxy
3
- Version: 0.5.2
3
+ Version: 0.6.0
4
4
  Summary: Python SDK for AgentGuard — the firewall for AI agents
5
5
  Author-email: Cauã Ferraz <cauaferrazp@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -40,7 +40,7 @@ from agentguard import Guard, CheckResult, DEFAULT_BASE_URL
40
40
 
41
41
  # MCP protocol constants
42
42
  MCP_PROTOCOL_VERSION = "2024-11-05"
43
- SDK_VERSION = "0.5.1"
43
+ SDK_VERSION = "0.6.0"
44
44
 
45
45
  # Secret patterns mirrored from pkg/notify/notify.go's DefaultRedactor. The
46
46
  # MCP adapter forwards handler exception text back to the client as a
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentguardproxy
3
- Version: 0.5.2
3
+ Version: 0.6.0
4
4
  Summary: Python SDK for AgentGuard — the firewall for AI agents
5
5
  Author-email: Cauã Ferraz <cauaferrazp@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agentguardproxy"
7
- version = "0.5.2"
7
+ version = "0.6.0"
8
8
  description = "Python SDK for AgentGuard — the firewall for AI agents"
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"