Skip to content

v0.0.31

Choose a tag to compare

@github-actions github-actions released this 11 Jan 20:41
· 4805 commits to main since this release
ecfe792

🌟 Release Highlights

This maintenance release improves the debugging experience with enhanced RPC message logging.

⚑ Improvements

Better Debug Logs - RPC messages in debug logs are now formatted with proper JSON indentation instead of compressed single-line format, making it significantly easier to read and debug message flows. Empty payloads (containing only params: null or empty objects) are now omitted entirely for cleaner output.

Example - Before:

**serena**β†’`tools/list`

~~~
{ "params": null }
~~~

Example - After:

**serena**β†’`tools/list`

With content:

**serena**β†’`tools/list`

~~~
{
  "id": 1,
  "params": {
    "arg": "value"
  }
}
~~~

🐳 Docker Image

The Docker image for this release is available at:

docker pull ghcr.io/githubnext/gh-aw-mcpg:v0.0.31
# or
docker pull ghcr.io/githubnext/gh-aw-mcpg:latest

Supported platforms: linux/amd64, linux/arm64


For complete details, see the full release notes.


Ahoy! This treasure was crafted by πŸ΄β€β˜ οΈ Release


What's Changed

  • Prettify markdown RPC message rendering with proper JSON indentation by @Copilot in #168

Full Changelog: v0.0.30...v0.0.31