From ea60898e77e0b03e67dda05499d7918ca187a8b0 Mon Sep 17 00:00:00 2001 From: patrick-chinchill Date: Mon, 6 Apr 2026 19:58:43 -0700 Subject: [PATCH] =?UTF-8?q?chore:=20bump=20to=200.0.1a5=20=E2=80=94=20port?= =?UTF-8?q?=20fidelity=20release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++------ README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 30 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d33199..7d5840d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,33 @@ # Changelog +## 0.0.1a5 (2026-04-07) + +Port fidelity release — 10 critical/high bugs fixed from systematic TS comparison. + +### Critical fixes +- Slack: multi-workspace token now persists into async tasks (ContextVar fix) +- Discord: slash command deferred responses now resolve correctly +- Discord: file attachments no longer silently dropped +- WhatsApp: media downloads work again (auth header restored) +- Chat: `on_lock_conflict="force"` now works + +### High fixes +- Discord: emoji normalized through resolver (reaction matching works) +- Teams: webhook options passed to reaction events +- Google Chat: subscription errors propagate to concurrent waiters +- Linear: fetch_thread metadata includes both key casings +- Streaming markdown `_remend` rewritten with proper delimiter tracking + +### Other improvements +- CLAUDE.md agent guidance file +- Parser: spaced thematic breaks (`* * *`) and trailing `#` stripping +- BaseFormatConverter: card fallback text generation +- All PR review comments addressed + ## 0.0.1a4 (2026-04-06) -Initial alpha release. +Security hardening + launch documentation. + +## 0.0.1a3 (2026-04-06) -- Core SDK: Chat orchestrator, Thread, Channel, Message, Cards, Modals, Emoji -- 8 adapters: Slack, Discord, Teams, Telegram, WhatsApp, Google Chat, GitHub, Linear -- 3 state backends: Memory, Redis, PostgreSQL -- 2,477 tests passing, 79% coverage -- Security hardened: JWT verification, SSRF protection, timing-safe comparisons +Initial alpha release — 8 adapters, 3 state backends, 2,467 tests. diff --git a/README.md b/README.md index 5627ad9..04c1db2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Multi-platform async chat SDK for Python. Port of [Vercel Chat](https://github.com/vercel/chat). -> **Status: Alpha (0.0.1a4)** — API may change. Not yet tested in production. +> **Status: Alpha (0.0.1a5)** — API may change. Not yet tested in production. ## Why chat-sdk? diff --git a/pyproject.toml b/pyproject.toml index 1539d13..65b4752 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "chat-sdk" -version = "0.0.1a4" +version = "0.0.1a5" description = "Multi-platform async chat SDK for Python — port of Vercel Chat" readme = "README.md" license = {text = "MIT"}