|
3 | 3 | All notable changes to this project will be documented in this file. |
4 | 4 |
|
5 | 5 |
|
| 6 | +## [v1.39.0] - 2026-03-27 |
| 7 | + |
| 8 | +This release adds new color themes for the terminal interface and includes internal version management updates. |
| 9 | + |
| 10 | +## What's New |
| 11 | +- Adds Calm Roots theme with warm white accents, sage green info messages, and charcoal background |
| 12 | +- Adds Neon Pink theme with vibrant pink tones and high-contrast white accents for readability |
| 13 | + |
| 14 | +## Technical Changes |
| 15 | +- Freezes v7 version |
| 16 | +- Updates CHANGELOG.md for v1.38.0 |
| 17 | + |
| 18 | +### Pull Requests |
| 19 | + |
| 20 | +- [#2256](https://github.com/docker/docker-agent/pull/2256) - docs: update CHANGELOG.md for v1.38.0 |
| 21 | +- [#2260](https://github.com/docker/docker-agent/pull/2260) - Add Calm Roots and Neon Pink themes |
| 22 | +- [#2264](https://github.com/docker/docker-agent/pull/2264) - Freeze v7 |
| 23 | + |
| 24 | + |
| 25 | +## [v1.38.0] - 2026-03-26 |
| 26 | + |
| 27 | +This release improves OAuth configuration and fixes tool caching issues with remote MCP server reconnections. |
| 28 | + |
| 29 | +## Improvements |
| 30 | + |
| 31 | +- Changes OAuth client name to "docker-agent" for better identification |
| 32 | +- Reworks compaction logic to prevent infinite loops when context overflow errors occur repeatedly |
| 33 | + |
| 34 | +## Bug Fixes |
| 35 | + |
| 36 | +- Fixes tool cache not refreshing after remote MCP server reconnects, ensuring updated tools are available after server restarts |
| 37 | + |
| 38 | +## Technical Changes |
| 39 | + |
| 40 | +- Updates CHANGELOG.md for v1.37.0 release documentation |
| 41 | + |
| 42 | +### Pull Requests |
| 43 | + |
| 44 | +- [#2242](https://github.com/docker/docker-agent/pull/2242) - Refactor compaction |
| 45 | +- [#2243](https://github.com/docker/docker-agent/pull/2243) - docs: update CHANGELOG.md for v1.37.0 |
| 46 | +- [#2245](https://github.com/docker/docker-agent/pull/2245) - Change the oauth client name to docker-agent |
| 47 | +- [#2246](https://github.com/docker/docker-agent/pull/2246) - fix: refresh tool and prompt caches after remote MCP server reconnect |
| 48 | + |
| 49 | + |
| 50 | +## [v1.37.0] - 2026-03-25 |
| 51 | + |
| 52 | +This release adds support for forwarding sampling parameters to provider APIs, introduces global user-level permissions, and includes several bug fixes and improvements. |
| 53 | + |
| 54 | +## What's New |
| 55 | + |
| 56 | +- Adds support for forwarding sampling provider options (top_k, repetition_penalty, etc.) to provider APIs |
| 57 | +- Adds global-level permissions from user config that apply across all sessions and agents |
| 58 | +- Adds a welcome message to the interface |
| 59 | +- Adds custom linter to enforce config version import chain |
| 60 | + |
| 61 | +## Improvements |
| 62 | + |
| 63 | +- Refactors RAG from agent-level config to standard toolset type for consistency with other toolsets |
| 64 | +- Restores RAG indexing event forwarding to TUI after toolset refactor |
| 65 | +- Simplifies RAG event forwarding and cleans up RAGTool |
| 66 | + |
| 67 | +## Bug Fixes |
| 68 | + |
| 69 | +- Fixes Bedrock interleaved_thinking defaults to true and adds logging for provider_opts mismatches |
| 70 | +- Fixes issue where CacheControl markers were preserved during message compaction, exceeding Anthropic's limit |
| 71 | +- Fixes tool loop detector by resetting it after degenerate loop error |
| 72 | +- Fixes desktop proxy socket name on WSL where http-proxy socket is not allowed for users |
| 73 | + |
| 74 | +## Technical Changes |
| 75 | + |
| 76 | +- Documents max_old_tool_call_tokens and max_consecutive_tool_calls in agent config reference |
| 77 | +- Documents global permissions from user config in permissions reference and guides |
| 78 | +- Pins GitHub actions for improved security |
| 79 | +- Updates cagent-action to latest version with better permissions |
| 80 | + |
| 81 | +### Pull Requests |
| 82 | + |
| 83 | +- [#2210](https://github.com/docker/docker-agent/pull/2210) - Refactor RAG from agent-level config to standard toolset type |
| 84 | +- [#2225](https://github.com/docker/docker-agent/pull/2225) - Add custom linter to enforce config version import chain |
| 85 | +- [#2226](https://github.com/docker/docker-agent/pull/2226) - feat: forward sampling provider_opts (top_k, repetition_penalty) to provider APIs |
| 86 | +- [#2227](https://github.com/docker/docker-agent/pull/2227) - docs: update CHANGELOG.md for v1.36.1 |
| 87 | +- [#2229](https://github.com/docker/docker-agent/pull/2229) - docs: add max_old_tool_call_tokens and max_consecutive_tool_calls to agent config reference |
| 88 | +- [#2230](https://github.com/docker/docker-agent/pull/2230) - Add global-level permissions from user config |
| 89 | +- [#2231](https://github.com/docker/docker-agent/pull/2231) - Pin GitHub actions |
| 90 | +- [#2233](https://github.com/docker/docker-agent/pull/2233) - update cagent-action to latest (with better permissions) |
| 91 | +- [#2236](https://github.com/docker/docker-agent/pull/2236) - fix: strip CacheControl from messages during compaction |
| 92 | +- [#2237](https://github.com/docker/docker-agent/pull/2237) - Reset tool loop detector after degenerate loop error |
| 93 | +- [#2238](https://github.com/docker/docker-agent/pull/2238) - Bump direct Go module dependencies |
| 94 | +- [#2240](https://github.com/docker/docker-agent/pull/2240) - Fix desktop proxy socket name on WSL |
| 95 | +- [#2241](https://github.com/docker/docker-agent/pull/2241) - docs: document global permissions from user config |
| 96 | + |
| 97 | + |
6 | 98 | ## [v1.36.1] - 2026-03-23 |
7 | 99 |
|
8 | 100 | This release improves OCI reference handling, adds a tools command, and enhances MCP server reliability with better error recovery. |
@@ -1560,3 +1652,9 @@ This release improves the terminal user interface with better error handling and |
1560 | 1652 | [v1.36.0]: https://github.com/docker/docker-agent/releases/tag/v1.36.0 |
1561 | 1653 |
|
1562 | 1654 | [v1.36.1]: https://github.com/docker/docker-agent/releases/tag/v1.36.1 |
| 1655 | + |
| 1656 | +[v1.37.0]: https://github.com/docker/docker-agent/releases/tag/v1.37.0 |
| 1657 | + |
| 1658 | +[v1.38.0]: https://github.com/docker/docker-agent/releases/tag/v1.38.0 |
| 1659 | + |
| 1660 | +[v1.39.0]: https://github.com/docker/docker-agent/releases/tag/v1.39.0 |
0 commit comments