feat: Update mentions of v0.2.6 to v0.3.0 and change agent card location to v0.3.0 one in samples#175
Merged
Blackhex merged 1 commit intoa2aproject:mainfrom Sep 3, 2025
Conversation
…ion to v0.3.0 one in samples
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR prepares the codebase for the v0.3.0-preview release by updating version references and standardizing the agent card endpoint location.
- Updates protocol version references from v0.2.6 to v0.3.0 across the codebase
- Changes agent card well-known URI from
/.well-known/agent.jsonto/.well-known/agent-card.json - Updates sample HTTP requests and documentation to reflect the new endpoint location
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tests/A2A.UnitTests/Models/AgentCardTests.cs | Updates test data and assertions for protocol version v0.3.0 |
| tests/A2A.AspNetCore.UnitTests/specification.md | Updates documentation to reference new agent card endpoint location |
| src/A2A/Models/AgentCard.cs | Changes default protocol version from v0.2.6 to v0.3.0 |
| src/A2A/Client/A2ACardResolver.cs | Updates default agent card path and documentation comments |
| src/A2A.AspNetCore/A2AEndpointRouteBuilderExtensions.cs | Updates endpoint mapping to use new agent card URI |
| samples/SemanticKernelAgent/SemanticKernelAgent.http | Updates sample HTTP request to use new endpoint |
| samples/AgentServer/http-tests/agent-card.http | Updates test HTTP request to use new endpoint |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
SergeyMenshykh
approved these changes
Sep 3, 2025
darrelmiller
approved these changes
Sep 3, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation of this PR is to prepare the codebase for v0.3.0-preview release without actually implementing the missing features yet.
Fixes #154