Skip to content

Latest commit

 

History

History
103 lines (69 loc) · 4.22 KB

File metadata and controls

103 lines (69 loc) · 4.22 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, this project adheres to Semantic Versioning, and this changelog is generated by Structured Changelog.

v0.4.0 - 2026-02-02

Highlights

  • Model Context Protocol (MCP) server for AI assistant tool integration
  • Local development platform for CLI-based agent testing

Added

  • MCP server implementation with JSON-RPC 2.0 protocol and stdio transport (mcp/server.go, mcp/protocol.go) (cb47e55)
  • Local development platform with interactive CLI, file system tools, and bash execution (platforms/local/) (492b59d)

Changed

  • Update LLM integration for new OmniLLM and OmniObserve APIs (b5beda7)

Dependencies

  • Upgrade google.golang.org/adk 0.3.0 → 0.4.0 (784cd47)
  • Upgrade github.com/cloudwego/eino 0.7.17 → 0.7.29 (599ece2)
  • Upgrade google.golang.org/genai 1.42.0 → 1.44.0 (599ece2)
  • Upgrade github.com/a2aproject/a2a-go 0.3.4 → 0.3.6 (599ece2)
  • Upgrade github.com/agentplexus/omnivault 0.2.0 → 0.2.1 (34d7309)
  • Upgrade github.com/agentplexus/omniobserve 0.5.0 → 0.5.1 (d4b35ca)

Documentation

  • Update AgentCore platform documentation (1a8468c)
  • Add SVG icon (f7090d4)
  • Add icon with transparent background (fde15ea)

Infrastructure

  • Update Go versions in CI workflow (607ee24)

v0.3.0 - 2026-01-04

Added

  • OmniVault integration for unified secret management (config/omnivault.go)
  • Config file loading from JSON/YAML (config/file.go)
  • Load(ctx, LoadOptions) function for unified config loading
  • SecretsClient type with support for env, aws-sm, aws-ssm, memory providers
  • Auto-detection of AWS environment (ECS, Lambda, EC2)
  • ConfigFile struct for structured configuration from config.json
  • GetSecret(ctx, name) method on Config for secret retrieval
  • Protocol configuration for agents (HTTP, MCP, A2A)
  • Authorization configuration (AuthorizerConfig type)
  • Memory support for stateful agents (EnableMemory field)
  • Gateway configuration for multi-agent routing (GatewayConfig type)

Changed

  • SecureConfig now supports OmniVault as primary secrets source
  • Added WithSecretsProvider(), WithAWSSecretsManager(), WithAutoSecretsProvider() options

v0.2.0 - 2025-12-31

Added

  • IaC configuration package for AgentCore deployments

Changed

  • Bump github.com/agentplexus/vaultguard from 0.1.0 to 0.2.0

v0.1.0 - 2025-12-29

Added

  • Initial release with core agent framework
  • A2A protocol server factory
  • HTTP server factory
  • Multi-provider LLM abstraction (Gemini, Claude, OpenAI, xAI, Ollama)
  • Eino workflow orchestration integration
  • AWS Bedrock AgentCore runtime support
  • Kubernetes + Helm deployment support
  • VaultGuard credential management integration
  • Configuration management utilities

Changed

  • Bump github.com/cloudwego/eino from 0.7.14 to 0.7.15

Fixed

  • Remove unused error return from loadSecureCredentials