| Commit message (Expand) | Author | Age |
| * | 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 |
| * | Remove the HTML client, and expose a JSON API. | Owen Jacobson | 2024-09-20 |
| * | Expire messages after 90 days. | Owen Jacobson | 2024-09-20 |
| * | Express record dependencies through types. | Owen Jacobson | 2024-09-17 |
| * | Consolidate most repository types into a repo module. | Owen Jacobson | 2024-09-16 |
| * | Revoking a nonexistent token should fail | Owen Jacobson | 2024-09-16 |
| * | Annotate channel events with channel ID at the router, not intrinsically. | Owen Jacobson | 2024-09-15 |
| * | Consolidate channel events into a single stream endpoint. | Owen Jacobson | 2024-09-15 |
| * | Placeholder UX, probably | Owen Jacobson | 2024-09-14 |
| * | Support Last-Event-Id as a method of resuming channel events after a disconnect | Owen Jacobson | 2024-09-13 |
| * | Generate the required structure for broadcasting from a join, not from O(n) q... | Owen Jacobson | 2024-09-13 |
| * | Embed the sender's whole login (id and name) in messages, drop the redundant ... | Owen Jacobson | 2024-09-13 |
| * | Transmit messages via `/:chan/send` and `/:chan/events`. | Owen Jacobson | 2024-09-13 |