Tags give the ability to mark specific points in history as being important
-
v0.5.7
eebdd590 · ·v0.5.7 — CI only: pipeline split, Codeberg mirror, archiving, mirror issue pull-back
-
-
v0.5.5
8f033d44 · ·v0.5.5 — Claude Code + Codex plugin manifests and Agent integrations README section
-
-
-
-
-
-
v0.4.3
5b457adb · ·v0.4.3 — re-tag current HEAD to publish the new agent skill to ClawHub. The prior release built fine; only the skill-publish job needed a fresh run to pick up the reusable-workflow fix (version-check no longer aborts on a new skill's 404).
-
-
v0.4.1
13bf9163 · ·v0.4.1 — fix Peer wrapper in cached entity refresh Cache refresh path was calling get_entity(bare_int) which telethon treats as PeerUser by default. For cached Channels/Chats that raised, triggered invalidate, and burned a ResolveUsername slot — the exact op cache was meant to avoid. Now wraps with the right Peer type.
-
v0.4.0
769f4ee3 · ·v0.4.0 — API normalization, response wrapper dropped, raw media streaming Breaking changes for HTTP clients: - 2xx responses return the resource directly; no `{"result": ...}` wrap - /api/files merged into POST /api/messages (use file_url) - /api/admin/* nested under /api/chats/{chat}/admin/* - /api/channels/linked → /api/chats/{chat}/linked - /api/dialogs/search → /api/dialogs?search= - send_file `caption` field renamed to `text` - /api/messages/{id}/media now streams raw bytes (use download_media MCP tool for base64) MCP tool surface unchanged except where field names were renamed for cross-tool consistency. -
v0.3.0
0d41908b · ·v0.3.0 — anti-flood throttling, entity cache, 20 new tools, observability Major feature release. Backwards compatible — all existing endpoints unchanged, new functionality opt-in via env vars with safe defaults. Highlights: - Per-method token buckets + per-chat send/read intervals + adaptive backoff on FLOOD_WAIT. Defaults sized to stay well under Telegram's observed soft limits without manual tuning. - Persistent entity cache survives container restarts — repeated resolveUsername calls become free cache hits. - 20 new tools including bulk_resolve, reactions, pins, polls, channel admin, account_health, throttle_status. - /metrics Prometheus exposition, /ws/updates websocket, outbound webhook via TELETHON_POST_TO_URL. - TELETHON_READ_ONLY and TELETHON_DRY_RUN safety switches. - 44-test unit suite that runs without Telegram (`make test-unit`).
-
v0.2.0
941165d2 · ·v0.2.0 — rename to telethon-plus / docker-telethon-plus All project references updated. Docker Hub target: psyb0t/telethon-plus.
-
v0.1.1
988513f4 · ·v0.1.1 — fix arm64 build Skip cryptg on aarch64 to unblock multi-arch Docker builds.
-
v0.1.0
c5867dc3 · ·v0.1.0 — initial release Telethon userbot wrapped behind a proper REST API and MCP endpoint. Features: - 15 REST endpoints covering messages, dialogs, files, group management - MCP streamable HTTP at /mcp/ — all tools available to AI agents - Bearer token auth via TELETHON_AUTH_KEY - Interactive login helper (docker run psyb0t/telethon login) - TELETHON_SESSION auto-written to .env via make login - 24 integration tests against real Telegram, no mocks