🌟 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:latestSupported 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