| Commit message (Expand) | Author | Age |
| * | Generate, store, and deliver a VAPID key. | Owen Jacobson | 2025-08-30 |
| * | Store `User` instances using their events. | Owen Jacobson | 2025-08-26 |
| * | Store `Message` instances using their events. | Owen Jacobson | 2025-08-26 |
| * | Store `Conversation` instances using their events. | Owen Jacobson | 2025-08-26 |
| * | Split `user` into a chat-facing entity and an authentication-facing entity. | Owen Jacobson | 2025-08-26 |
| * | Generate tokens in memory and then store them. | Owen Jacobson | 2025-08-26 |
| * | Split the `user` table into an authentication portion and a chat portion. | Owen Jacobson | 2025-08-26 |
| * | Rename "channel" to "conversation" within the server. | Owen Jacobson | 2025-07-03 |
| * | Rename "channel" to "conversation" in the database. | Owen Jacobson | 2025-07-03 |
| * | Rename the `login` module to `user`. | Owen Jacobson | 2025-03-23 |
| * | Rename `user` to `login` at the database. | Owen Jacobson | 2025-03-23 |
| * | Track an index-friendly sequence range for both channels and messages. | Owen Jacobson | 2024-10-30 |
| * | Resume points are no longer optional. | Owen Jacobson | 2024-10-30 |
| * | Remove `hi-recanonicalize`. | Owen Jacobson | 2024-10-30 |
| * | Add `change password` UI + API. | Owen Jacobson | 2024-10-29 |
| * | Update stored sqlx queries | Owen Jacobson | 2024-10-29 |
| * | Update saved SQL | Owen Jacobson | 2024-10-26 |
| * | To make it easier to correlate deletes to the event stream, have deletes retu... | Owen Jacobson | 2024-10-25 |
| * | Make sure (most) queries avoid table scans. | Owen Jacobson | 2024-10-23 |
| * | Remove tabs in Rust files. | Owen Jacobson | 2024-10-22 |
| * | Provide `hi-recanonicalize` to recover from canonicalized-name problems. | Owen Jacobson | 2024-10-22 |
| * | Canonicalize login and channel names. | Owen Jacobson | 2024-10-22 |
| * | Unicode normalization on input. | Owen Jacobson | 2024-10-21 |
| * | Merge branch 'wip/retain-deleted' | Owen Jacobson | 2024-10-18 |
| |\ |
|
| | * | Switch to blanking tombstoned data with null, not empty string. | Owen Jacobson | 2024-10-18 |
| | * | Retain deleted messages and channels temporarily, to preserve events for replay. | Owen Jacobson | 2024-10-17 |
| * | | Get loaded data using `export let data`, instead of fishing around in $page. | Owen Jacobson | 2024-10-17 |
| |/ |
|
| * | Create APIs for inviting users. | Owen Jacobson | 2024-10-11 |
| * | Provide a separate "initial setup" endpoint that creates a user. | Owen Jacobson | 2024-10-11 |
| * | Fix invalid migration. | Owen Jacobson | 2024-10-10 |
| * | Return a flat message list on boot, not nested lists by channel. | Owen Jacobson | 2024-10-09 |
| * | Provide a view of logins to clients. | Owen Jacobson | 2024-10-09 |
| * | Simplify channel IDs in events. Remove redundant ones. | Owen Jacobson | 2024-10-09 |
| * | Use sqlx's API, not SQL groveling, to find unwanted migrations. | Owen Jacobson | 2024-10-05 |
| * | Start fresh with database migrations. | Owen Jacobson | 2024-10-04 |
| * | List messages per channel. | Owen Jacobson | 2024-10-03 |
| * | Add endpoints for deleting channels and messages. | Owen Jacobson | 2024-10-03 |
| * | Represent channels and messages using a split "History" and "Snapshot" model. | Owen Jacobson | 2024-10-03 |
| * | First pass on reorganizing the backend. | Owen Jacobson | 2024-10-02 |
| * | Provide a resume point to bridge clients from state snapshots to the event se... | Owen Jacobson | 2024-10-01 |
| * | Track event sequences globally, not per channel. | Owen Jacobson | 2024-10-01 |
| * | Prevent racing between `limit_stream` and logging out. | Owen Jacobson | 2024-10-01 |
| * | Reimplement the logout machinery in terms of token IDs, not token secrets. | Owen Jacobson | 2024-09-29 |
| * | Shut down the `/api/events` stream when the user logs out or their token expi... | Owen Jacobson | 2024-09-29 |
| * | Wrap credential and credential-holding types to prevent `Debug` leaks. | Owen Jacobson | 2024-09-28 |
| * | Expire channels, too. | Owen Jacobson | 2024-09-28 |
| * | Delete expired messages out of band. | Owen Jacobson | 2024-09-28 |
| * | Assign sequence numbers from a counter, not by scanning messages | Owen Jacobson | 2024-09-28 |
| * | Send created events when channels are added. | Owen Jacobson | 2024-09-28 |
| * | Use a vector of sequence numbers, not timestamps, to restart /api/events stre... | Owen Jacobson | 2024-09-25 |