Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [1.1.9](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.9) (2026-06-18)

### Features

* Model: Added `http_client_factory` support to `OpenAIModel`, allowing callers to inject a custom `httpx.AsyncClient` factory to control HTTP connection lifecycle and pool settings such as keepalive expiry (#83).

### Bug Fixes

* Telemetry: Switched `agent_run` and `invocation` spans back to `start_as_current_span` so child spans such as `call_llm` inherit the correct parent context, restoring complete trace attributes (including system instructions and tools) in Langfuse reporting.

## [1.1.8](https://github.com/trpc-group/trpc-agent-python/releases/tag/v1.1.8) (2026-06-12)

### Features
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

def test_version():
"""Test the version module."""
assert __version__ == '1.1.8'
assert __version__ == '1.1.9'
2 changes: 1 addition & 1 deletion trpc_agent_sdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
This module defines the version information for TRPC Agent
"""

__version__ = '1.1.8'
__version__ = '1.1.9'
Loading