| Commit message (Expand) | Author | Age |
| * | 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 |
| * | 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 |
| * | Organizational pass on endpoints and routes. | Owen Jacobson | 2024-10-16 |
| * | Return a distinct error when an invite username is in use. | Owen Jacobson | 2024-10-11 |
| * | Return an instance of the client when opening a channel URL directly. | Owen Jacobson | 2024-10-10 |
| * | Provide a view of logins to clients. | Owen Jacobson | 2024-10-09 |
| * | Separate `/api/boot` into its own module. | Owen Jacobson | 2024-10-05 |
| * | Clean up naming and semantics of history accessors. | Owen Jacobson | 2024-10-04 |
| * | Stray warnings | Owen Jacobson | 2024-10-03 |
| * | 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 |
| * | Package up common event fields as Instant | Owen Jacobson | 2024-10-02 |
| * | Retire top-level `repo`. | Owen Jacobson | 2024-10-02 |
| * | 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 |
| * | Shut down the `/api/events` stream when the user logs out or their token expi... | Owen Jacobson | 2024-09-29 |
| * | Expire channels, too. | Owen Jacobson | 2024-09-28 |
| * | Send created events when channels are added. | Owen Jacobson | 2024-09-28 |
| * | Make `/api/events` a firehose endpoint. | Owen Jacobson | 2024-09-27 |
| * | More reorganizing. | Owen Jacobson | 2024-09-25 |
| * | Code organization changes considered during implementation of vector-of-seque... | Owen Jacobson | 2024-09-25 |
| * | Redundant code missed in previous commit. | Owen Jacobson | 2024-09-25 |
| * | Use a vector of sequence numbers, not timestamps, to restart /api/events stre... | Owen Jacobson | 2024-09-25 |
| * | Write tests. | Owen Jacobson | 2024-09-20 |
| * | Push the handling of the `Last-Event-Id` _format_ inside of `channels::app`. | Owen Jacobson | 2024-09-20 |
| * | Push events into a module structure consistent with the rest of the project. | Owen Jacobson | 2024-09-20 |
| * | Remove the HTML client, and expose a JSON API. | Owen Jacobson | 2024-09-20 |
| * | Expire messages after 90 days. | Owen Jacobson | 2024-09-20 |
| * | Somewhere along the line this lifetime bound became redundant. | Owen Jacobson | 2024-09-18 |
| * | Most pass-through errors do not need additional message text | Owen Jacobson | 2024-09-18 |
| * | Make BoxedError an implementation detail of InternalError. | Owen Jacobson | 2024-09-18 |
| * | App methods now return errors that allow not-found cases to be distinguished. | Owen Jacobson | 2024-09-18 |
| * | Express record dependencies through types. | Owen Jacobson | 2024-09-17 |
| * | Consolidate most repository types into a repo module. | Owen Jacobson | 2024-09-16 |
| * | Move channel list into the `app.channels()` namespace. | Owen Jacobson | 2024-09-15 |
| * | Consolidate channel events into a single stream endpoint. | Owen Jacobson | 2024-09-15 |
| * | 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 |
| * | Tolerate panics in channel::app where they can only be triggered by implement... | Owen Jacobson | 2024-09-13 |
| * | Suggested fixes from Clippy, via nursery and pedantic sets. | 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 |
| * | Push most endpoint and extractor logic into functoins of `App`. | Owen Jacobson | 2024-09-12 |