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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to `@inceptionstack/roundhouse` are documented here.

## [0.5.36] — 2026-05-16

### Fixed
- **Inline keyboards restored for `/model` and `/topic`** (v0.5.35 regression). The Rich UI Surface refactor extracted `adapter.telegramFetch` as a plain reference, which loses `this` — the underlying `@chat-adapter/telegram` method needs `this.apiBaseUrl` and `this.botToken`. Detached calls threw silently; postRich's catch swallowed and fell back to text. Fix: invoke as `tgAdapter.telegramFetch(...)`. Mutation-tested regression with a `FakeTelegramAdapter` that detects detached calls (`vi.fn()` mocks couldn't catch this).

## [0.5.35] — 2026-05-16

### Rich UI Surface
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inceptionstack/roundhouse",
"version": "0.5.35",
"version": "0.5.36",
"type": "module",
"description": "Multi-platform chat gateway that routes messages through a configured AI agent",
"license": "MIT",
Expand Down
Loading