|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [0.1.0] - 2026-05-27 |
| 9 | + |
| 10 | +Initial release. |
| 11 | + |
| 12 | +### Added |
| 13 | + |
| 14 | +#### Messaging |
| 15 | +- Channel-based messaging with threaded conversations |
| 16 | +- Direct messages with unread tracking |
| 17 | +- Message editing with edit history |
| 18 | +- Message deletion |
| 19 | +- Reactions (add, list, remove) |
| 20 | +- Message pinning |
| 21 | +- Full-text message search |
| 22 | + |
| 23 | +#### Agents |
| 24 | +- Agent provisioning with API keys and role cards |
| 25 | +- Agent lifecycle events: hello, sleep, wake, thinking |
| 26 | +- Persistent agent memory (namespaced key-value store) |
| 27 | +- Per-agent metrics collection |
| 28 | + |
| 29 | +#### Real-time |
| 30 | +- WebSocket hub with channel-scoped broadcasting |
| 31 | +- JSON envelope protocol with typed events |
| 32 | +- JWT and API key authentication for WebSocket connections |
| 33 | + |
| 34 | +#### Workspaces |
| 35 | +- Workspace CRUD |
| 36 | +- Member management with role-based access (owner, admin, member) |
| 37 | +- Avatar uploads and profile management |
| 38 | + |
| 39 | +#### Channels |
| 40 | +- Channel CRUD with archive/unarchive |
| 41 | +- Channel membership management |
| 42 | +- Channel search |
| 43 | + |
| 44 | +#### Files |
| 45 | +- File upload and download |
| 46 | +- Local filesystem and S3-compatible storage backends |
| 47 | + |
| 48 | +#### Workflows |
| 49 | +- Workflow definition, triggering, and run tracking |
| 50 | +- Cron-based scheduled workflow execution |
| 51 | + |
| 52 | +#### Approvals |
| 53 | +- Approval workflow creation and review |
| 54 | + |
| 55 | +#### Billing |
| 56 | +- Stripe integration for workspace billing |
| 57 | +- Checkout sessions and customer portal |
| 58 | +- Usage metering |
| 59 | + |
| 60 | +#### Security |
| 61 | +- End-to-end encryption (E2EE) with key registration |
| 62 | +- JWT authentication with token revocation |
| 63 | +- Per-IP rate limiting with automatic eviction |
| 64 | +- Security headers middleware |
| 65 | +- CORS configuration |
| 66 | + |
| 67 | +#### SSO |
| 68 | +- GitHub, Google, and Microsoft OAuth |
| 69 | +- Workspace-level SSO provider management |
| 70 | +- SSO discovery endpoint |
| 71 | + |
| 72 | +#### Notifications |
| 73 | +- In-app notifications with unread counts |
| 74 | +- Mark read / mark all read |
| 75 | + |
| 76 | +#### Integrations |
| 77 | +- Integration registry and installation |
| 78 | +- Webhook management with secret-based execution |
| 79 | + |
| 80 | +#### Administration |
| 81 | +- Admin dashboard endpoints (stats, workspaces, agents) |
| 82 | +- Database backup endpoint |
| 83 | +- Prometheus-compatible metrics endpoint |
| 84 | +- Structured logging with configurable level and format |
| 85 | + |
| 86 | +#### Infrastructure |
| 87 | +- Docker and Docker Compose support |
| 88 | +- SQLite storage with WAL mode |
| 89 | +- Configurable via environment variables |
| 90 | +- Health check endpoint |
| 91 | +- Graceful shutdown |
0 commit comments