|
3 | 3 | All notable changes to this project will be documented in this file. |
4 | 4 |
|
5 | 5 |
|
| 6 | +## [v1.36.1] - 2026-03-23 |
| 7 | + |
| 8 | +This release improves OCI reference handling, adds a tools command, and enhances MCP server reliability with better error recovery. |
| 9 | + |
| 10 | +## What's New |
| 11 | +- Adds `/tools` command to show available tools in a TUI dialog |
| 12 | +- Adds support for serving digest-pinned OCI references directly from cache |
| 13 | + |
| 14 | +## Improvements |
| 15 | +- Uses Docker Desktop proxy for all HTTP operations when Docker Desktop is running |
| 16 | +- Improves MCP server reconnection by retrying tool calls on any connection error, not just session errors |
| 17 | +- Normalizes OCI reference handling in store lookups to match Pull() key format |
| 18 | + |
| 19 | +## Bug Fixes |
| 20 | +- Fixes `/clear` command to properly re-initialize the TUI |
| 21 | +- Fixes tools/permissions dialog height instability when scrolling |
| 22 | +- Fixes empty lines in tools dialog from multiline descriptions |
| 23 | +- Fixes relative path resolution when parentDir is empty by falling back to current working directory |
| 24 | + |
| 25 | +## Technical Changes |
| 26 | +- Extracts RAG code for better organization |
| 27 | +- Removes model alias resolution for inline agent model references |
| 28 | +- Sets missing category on MCP and script shell tools |
| 29 | +- Removes dead code and unused agent event handling |
| 30 | +- Enables additional linters (bodyclose, makezero, sqlclosecheck) with corresponding fixes |
| 31 | +- Adds comprehensive Managing Secrets documentation guide |
| 32 | + |
| 33 | +### Pull Requests |
| 34 | + |
| 35 | +- [#2201](https://github.com/docker/docker-agent/pull/2201) - docs: update CHANGELOG.md for v1.36.0 |
| 36 | +- [#2204](https://github.com/docker/docker-agent/pull/2204) - Better oci refs |
| 37 | +- [#2205](https://github.com/docker/docker-agent/pull/2205) - Simplify the runtime related RAG code a bit |
| 38 | +- [#2206](https://github.com/docker/docker-agent/pull/2206) - Remove model alias resolution for inline agent model references |
| 39 | +- [#2207](https://github.com/docker/docker-agent/pull/2207) - Fix /clear |
| 40 | +- [#2209](https://github.com/docker/docker-agent/pull/2209) - Add /tools command to show the available tools |
| 41 | +- [#2212](https://github.com/docker/docker-agent/pull/2212) - fix: recover from ErrSessionMissing when remote MCP server restarts |
| 42 | +- [#2213](https://github.com/docker/docker-agent/pull/2213) - docs: clarify :agent and :name parameters in API server endpoints |
| 43 | +- [#2215](https://github.com/docker/docker-agent/pull/2215) - fix: retry MCP callTool on any connection error, not just ErrSessionMissing |
| 44 | +- [#2217](https://github.com/docker/docker-agent/pull/2217) - docs: add Managing Secrets guide |
| 45 | +- [#2218](https://github.com/docker/docker-agent/pull/2218) - Bump Go dependencies |
| 46 | +- [#2219](https://github.com/docker/docker-agent/pull/2219) - Enable bodyclose, makezero, and sqlclosecheck linters |
| 47 | +- [#2221](https://github.com/docker/docker-agent/pull/2221) - fix: resolve relative paths against CWD when parentDir is empty |
| 48 | +- [#2222](https://github.com/docker/docker-agent/pull/2222) - Use Docker Desktop proxy when available |
| 49 | +- [#2224](https://github.com/docker/docker-agent/pull/2224) - Make run.go easier to read |
| 50 | + |
| 51 | + |
6 | 52 | ## [v1.36.0] - 2026-03-20 |
7 | 53 |
|
8 | 54 | This release adds WebSocket transport support for OpenAI streaming, introduces configurable tool call token limits, and improves the command-line interface with new session management capabilities. |
@@ -1512,3 +1558,5 @@ This release improves the terminal user interface with better error handling and |
1512 | 1558 | [v1.34.0]: https://github.com/docker/docker-agent/releases/tag/v1.34.0 |
1513 | 1559 |
|
1514 | 1560 | [v1.36.0]: https://github.com/docker/docker-agent/releases/tag/v1.36.0 |
| 1561 | + |
| 1562 | +[v1.36.1]: https://github.com/docker/docker-agent/releases/tag/v1.36.1 |
0 commit comments