Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The format is based on Keep a Changelog, and this project currently tracks chang

### Fixed

- Bound the `mcp` dependency to `<2.0.0`. MCP SDK 2.0 removed `mcp.server.fastmcp`, which the test suite relies on, so unrestricted `mcp>=1.0.0` resolution can install an incompatible version and break tests.
- Codex subscription requests now pass reasoning effort separately, enabling `gpt-5.5` with `xhigh` effort instead of treating `gpt-5.5 xhigh` as an unsupported model name.
- Telegram channel now delivers replies again under `ohmo init --no-interactive` and other configs that do not write a `reply_to_message` field. `TelegramConfig` declares `reply_to_message: bool = True` so the attribute access in `TelegramChannel.send` no longer raises `AttributeError` and outbound progress/tool-hint/final messages are sent as expected. See issue #243.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies = [
"pydantic>=2.0.0",
"httpx>=0.27.0",
"websockets>=12.0",
"mcp>=1.0.0",
"mcp>=1.0.0,<2.0.0",
"pyperclip>=1.9.0",
"pyyaml>=6.0",
"questionary>=2.0.1",
Expand Down