Skip to content

Commit 9ab326c

Browse files
committed
version: 发布1.1.6版本
1 parent 02120a7 commit 9ab326c

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [1.1.6](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.6) (2026-06-03)
4+
5+
### Features
6+
7+
* Skill: Added a recoverable Cube sandbox runtime for skills, including `CubeClientConfig`, a unified `create_cube_sandbox_client` entry point, optional `auto_recover` support in `CubeSandboxClient`, sandbox lifecycle helpers, and direct `CubeWorkspaceRuntime` creation from the client.
8+
* Skill: Unified skill load/run/exec/stager paths around repository-level workspace runtime resolution via `repository.get_workspace_runtime(ctx)`, so tools under the same skill repository share one workspace runtime context.
9+
* MCP: Added MCP tool caching to avoid repeated network access.
10+
* Tools: Added `GraphAgent` support in `AgentTool`, allowing wrapped graph agents to return results from tool context state.
11+
* Examples/Eval: Restored evaluation examples that were previously removed during open-source cleanup.
12+
* Optimizer: Added support for the prompt self-optimization `AgentOptimizer`.
13+
14+
### Bug Fixes
15+
16+
* Storage: Fixed frequent sqlite warnings in `SqlSessionService` by consistently using database-side `func.now()` for update timestamps.
17+
318
## [1.1.5](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.5) (2026-05-19)
419

520
### Features
@@ -23,8 +38,6 @@
2338

2439
* Tools: Removed default `mempalace_tool` exports from `trpc_agent_sdk.tools` to avoid forcing MemPalace optional dependencies during base package import.
2540

26-
27-
2841
## [1.1.3](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.3) (2026-05-12)
2942

3043
### Features

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
def test_version():
1212
"""Test the version module."""
13-
assert __version__ == '1.1.5'
13+
assert __version__ == '1.1.6'

trpc_agent_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
This module defines the version information for TRPC Agent
1010
"""
1111

12-
__version__ = '1.1.5'
12+
__version__ = '1.1.6'

0 commit comments

Comments
 (0)