Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: a2aproject/a2a-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.2
Choose a base ref
...
head repository: a2aproject/a2a-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.3
Choose a head ref
  • 6 commits
  • 22 files changed
  • 8 contributors

Commits on Aug 21, 2025

  1. perf: optimize logging performance and modernize string formatting (#411

    )
    
    - Replace f-strings with `%` formatting in logging calls for lazy
    evaluation
    - Convert `.format()` to f-strings in `server/models.py` `__repr__`
    methods
    - Add `test_venv/` to `.gitignore`
    - Improves performance by avoiding string formatting when log levels are
    disabled
    
    ---------
    
    Co-authored-by: Claude <noreply@anthropic.com>
    Co-authored-by: Holt Skinner <13262395+holtskinner@users.noreply.github.com>
    Co-authored-by: Holt Skinner <holtskinner@google.com>
    4 people authored Aug 21, 2025
    Configuration menu
    Copy the full SHA
    3ffae8f View commit details
    Browse the repository at this point in the history
  2. fix: fixing JSONRPC error mapping (#414)

    Final Error Mapping (JSON-RPC 2.0 Compliant):
    
    - `-32700`: Parse error (invalid JSON)
    - `-32600`: Invalid Request (missing/invalid jsonrpc, invalid id type,
    oversized payload)
    - `-32601`: Method not found (unknown method names)
    - `-32602`: Invalid params (valid method, invalid parameters) -32603:
    Internal error (unexpected server exceptions)
    - `-32000` to `-32099`: Server-defined errors (A2A-specific, pass
    through unchanged)
    
    Fixes #413  🦕
    
    ---------
    
    Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
    Co-authored-by: Holt Skinner <13262395+holtskinner@users.noreply.github.com>
    Co-authored-by: Holt Skinner <holtskinner@google.com>
    4 people authored Aug 21, 2025
    Configuration menu
    Copy the full SHA
    d2e869f View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2025

  1. revert: Revert "chore(gRPC): Update a2a.proto to include metadata on …

    …GetTaskRequest" (#428)
    
    Commit:
    a2aproject/A2A@e6b8c65
    
    ---------
    
    Co-authored-by: Holt Skinner <holtskinner@google.com>
    a2a-bot and holtskinner authored Aug 22, 2025
    Configuration menu
    Copy the full SHA
    39c6b43 View commit details
    Browse the repository at this point in the history
  2. feat: Update proto conversion utilities (#424)

    # Proto Util improvements
    
    - Improves metadata data support in proto conversions (supports more
    than just `map<string, string>` now and supports full json object
    `map<string, any>`
    - Adds support to convert extension data on agent cards
    pstephengoogle authored Aug 22, 2025
    Configuration menu
    Copy the full SHA
    a3e7e1e View commit details
    Browse the repository at this point in the history
  3. fix: Revert code that enforces uuid structure on context id in tasks (#…

    …429)
    
    Reverts enforcement of uuid on context_id in task creation
    
    Fixes #427
    
    Release-As: 0.3.3
    pstephengoogle authored Aug 22, 2025
    Configuration menu
    Copy the full SHA
    e3a7207 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2025

  1. chore(main): release 0.3.3 (#421)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ##
    [0.3.3](v0.3.2...v0.3.3)
    (2025-08-22)
    
    
    ### Features
    
    * Update proto conversion utilities
    ([#424](#424))
    ([a3e7e1e](a3e7e1e))
    
    
    ### Bug Fixes
    
    * fixing JSONRPC error mapping
    ([#414](#414))
    ([d2e869f](d2e869f))
    * Revert code that enforces uuid structure on context id in tasks
    ([#429](#429))
    ([e3a7207](e3a7207)),
    closes [#427](#427)
    
    
    ### Performance Improvements
    
    * optimize logging performance and modernize string formatting
    ([#411](#411))
    ([3ffae8f](3ffae8f))
    
    
    ### Reverts
    
    * Revert "chore(gRPC): Update a2a.proto to include metadata on
    GetTaskRequest"
    ([#428](#428))
    ([39c6b43](39c6b43))
    
    ---
    This PR was generated with [Release
    Please](https://github.com/googleapis/release-please). See
    [documentation](https://github.com/googleapis/release-please#release-please).
    a2a-bot authored Aug 25, 2025
    Configuration menu
    Copy the full SHA
    f34076e View commit details
    Browse the repository at this point in the history
Loading