Skip to content

Commit cfca75b

Browse files
chore(release): bump versions to 3.0.1 (#670)
Core Python packages: 3.0.0 → 3.0.1 npm packages: 1.0.0 → 1.0.1, mcp-server 1.0.1 → 1.0.2 .NET SDK: 2.1.0 → 3.0.1 Rust crate: 0.1.0 → 0.1.1 CHANGELOG.md updated with all changes since 3.0.0 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 405e9b9 commit cfca75b

File tree

19 files changed

+53
-19
lines changed

19 files changed

+53
-19
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
- Added "Secure Error Handling" sections to primary documentation to guide users on interpreting sanitized machine-readable outputs.
2222

2323

24+
## [3.0.1] - 2026-04-01
25+
26+
### Added
27+
- Rust SDK (`agentmesh` crate) for native governance integration
28+
- Go SDK module for policy, trust, audit, and identity
29+
- Trust report CLI command (`agentmesh trust report`)
30+
- Secret scanning workflow (Gitleaks)
31+
- 4 new fuzz targets (prompt injection, MCP scanner, sandbox, trust scoring)
32+
- Dependabot coverage expanded to 13 ecosystems (+ cargo, gomod, nuget, docker)
33+
- 7 new tutorials (Rust SDK, Go SDK, delegation chains, budgets, security, SBOM, MCP scan)
34+
- ESRP Release publishing for Rust crates (crates.io)
35+
- Entra Agent ID adapter for managed identity integration
36+
- Secure code generation templates with AST validation
37+
- SBOM generation (SPDX/CycloneDX) with Ed25519 artifact signing
38+
- Tenant isolation checklist and private endpoint deployment examples
39+
40+
### Fixed
41+
- ADO build failures: shebang position (TS18026), Express 5 type narrowing (TS2345)
42+
- NuGetCommand@2 → DotNetCoreCLI@2 for Ubuntu 24.04 compatibility
43+
- path-to-regexp ReDoS vulnerability (8.3.0 → 8.4.0)
44+
- Python 3.10 CI matrix exclusions for packages requiring >=3.11
45+
- TypeScript eslint peer dependency conflicts resolved
46+
- Rust crate dependency pins (rand 0.8, sha2 0.10, thiserror 1)
47+
- Ruff lint errors in agent-sre (E741, F401, E401)
48+
- Policy provider test mock contract alignment
49+
- Dify integration removed from CI (archived package)
50+
- Notebook dependency scanner regex hardened
51+
52+
### Changed
53+
- PUBLISHING.md rewritten with full Microsoft compliance policies (MCR, ESRP, Conda, PMC)
54+
- Branch protection: 13 required status checks, dismiss stale reviews, squash-only merges
55+
- README updated with 5 SDK languages, 20+ framework integrations, security tooling table
56+
57+
2458
## [3.0.0] - 2026-03-26
2559

2660
### Changed

packages/agent-compliance/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agent-governance-toolkit"
7-
version = "3.0.0"
7+
version = "3.0.1"
88
description = "Public Preview — Unified installer and runtime policy enforcement for the Agent Governance Toolkit"
99
readme = "README.md"
1010
license = "MIT"

packages/agent-compliance/src/agent_compliance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
- agent-lightning: RL training governance
1919
"""
2020

21-
__version__ = "1.1.0"
21+
__version__ = "3.0.1"
2222

2323
# Re-export core components for convenience
2424
try:

packages/agent-governance-dotnet/src/AgentGovernance/AgentGovernance.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<RootNamespace>AgentGovernance</RootNamespace>
66
<AssemblyName>AgentGovernance</AssemblyName>
7-
<Version>2.1.0</Version>
7+
<Version>3.0.1</Version>
88
<Description>Agent Governance Toolkit — .NET SDK for policy enforcement, rate limiting, zero-trust identity, OpenTelemetry metrics, and audit logging for autonomous AI agents. Compatible with Microsoft Agent Framework and Semantic Kernel.</Description>
99
<PackageId>Microsoft.AgentGovernance</PackageId>
1010
<Authors>Microsoft</Authors>

packages/agent-hypervisor/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "agent-hypervisor"
7-
version = "3.0.0"
7+
version = "3.0.1"
88
description = "Public Preview — Agent Hypervisor: Runtime supervisor for multi-agent Shared Sessions with Execution Rings, Joint Liability, Saga Orchestration, and hash-chained audit trails"
99
readme = "README.md"
1010
license = "MIT"

packages/agent-hypervisor/src/hypervisor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Version: 2.0.0
1717
"""
1818

19-
__version__ = "2.0.2"
19+
__version__ = "3.0.1"
2020

2121
# Centralized constants
2222
from hypervisor import constants # noqa: F401

packages/agent-lightning/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentmesh-lightning"
7-
version = "3.0.0"
7+
version = "3.0.1"
88
description = "Public Preview — Agent-Lightning RL integration for the Agent Governance Toolkit: governed training with policy enforcement"
99
readme = "README.md"
1010
license = "MIT"

packages/agent-marketplace/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentmesh-marketplace"
7-
version = "3.0.0"
7+
version = "3.0.1"
88
description = "Plugin marketplace for the Agent Governance Toolkit — discover, install, verify, and manage plugins"
99
readme = "README.md"
1010
license = {text = "MIT"}

packages/agent-mesh/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "agentmesh-platform"
7-
version = "3.0.0"
7+
version = "3.0.1"
88
description = "Public Preview — The Secure Nervous System for Cloud-Native Agent Ecosystems - Identity, Trust, Reward, Governance"
99
readme = "README.md"
1010
license = {text = "MIT"}

packages/agent-mesh/sdks/rust/agentmesh/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agentmesh"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "Public Preview — Rust SDK for the AgentMesh governance framework (policy, trust, audit, identity)"
66
license = "MIT"

0 commit comments

Comments
 (0)