summaryrefslogtreecommitdiff
path: root/.sqlx
Commit message (Expand)AuthorAge
* Make sure (most) queries avoid table scans.Owen Jacobson2024-10-23
* Remove tabs in Rust files.Owen Jacobson2024-10-22
* Provide `hi-recanonicalize` to recover from canonicalized-name problems.Owen Jacobson2024-10-22
* Canonicalize login and channel names.Owen Jacobson2024-10-22
* Unicode normalization on input.Owen Jacobson2024-10-21
* Merge branch 'wip/retain-deleted'Owen Jacobson2024-10-18
|\
| * Switch to blanking tombstoned data with null, not empty string.Owen Jacobson2024-10-18
| * Retain deleted messages and channels temporarily, to preserve events for replay.Owen Jacobson2024-10-17
* | Get loaded data using `export let data`, instead of fishing around in $page.Owen Jacobson2024-10-17
|/
* Create APIs for inviting users.Owen Jacobson2024-10-11
* Provide a separate "initial setup" endpoint that creates a user.Owen Jacobson2024-10-11
* Fix invalid migration.Owen Jacobson2024-10-10
* Return a flat message list on boot, not nested lists by channel.Owen Jacobson2024-10-09
* Provide a view of logins to clients.Owen Jacobson2024-10-09
* Simplify channel IDs in events. Remove redundant ones.Owen Jacobson2024-10-09
* Use sqlx's API, not SQL groveling, to find unwanted migrations.Owen Jacobson2024-10-05
* Start fresh with database migrations.Owen Jacobson2024-10-04
* List messages per channel.Owen Jacobson2024-10-03
* Add endpoints for deleting channels and messages.Owen Jacobson2024-10-03
* Represent channels and messages using a split "History" and "Snapshot" model.Owen Jacobson2024-10-03
* First pass on reorganizing the backend.Owen Jacobson2024-10-02
* Provide a resume point to bridge clients from state snapshots to the event se...Owen Jacobson2024-10-01
* Track event sequences globally, not per channel.Owen Jacobson2024-10-01
* Prevent racing between `limit_stream` and logging out.Owen Jacobson2024-10-01
* Reimplement the logout machinery in terms of token IDs, not token secrets.Owen Jacobson2024-09-29
* Shut down the `/api/events` stream when the user logs out or their token expi...Owen Jacobson2024-09-29
* Wrap credential and credential-holding types to prevent `Debug` leaks.Owen Jacobson2024-09-28
* Expire channels, too.Owen Jacobson2024-09-28
* Delete expired messages out of band.Owen Jacobson2024-09-28
* Assign sequence numbers from a counter, not by scanning messagesOwen Jacobson2024-09-28
* Send created events when channels are added.Owen Jacobson2024-09-28
* Use a vector of sequence numbers, not timestamps, to restart /api/events stre...Owen Jacobson2024-09-25
* Remove the HTML client, and expose a JSON API.Owen Jacobson2024-09-20
* Expire messages after 90 days.Owen Jacobson2024-09-20
* Express record dependencies through types.Owen Jacobson2024-09-17
* Consolidate most repository types into a repo module.Owen Jacobson2024-09-16
* Revoking a nonexistent token should failOwen Jacobson2024-09-16
* Annotate channel events with channel ID at the router, not intrinsically.Owen Jacobson2024-09-15
* Consolidate channel events into a single stream endpoint.Owen Jacobson2024-09-15
* Placeholder UX, probablyOwen Jacobson2024-09-14
* Support Last-Event-Id as a method of resuming channel events after a disconnectOwen Jacobson2024-09-13
* Generate the required structure for broadcasting from a join, not from O(n) q...Owen Jacobson2024-09-13
* Embed the sender's whole login (id and name) in messages, drop the redundant ...Owen Jacobson2024-09-13
* Transmit messages via `/:chan/send` and `/:chan/events`.Owen Jacobson2024-09-13
* Push most endpoint and extractor logic into functoins of `App`.Owen Jacobson2024-09-12
* Expire tokens based on when they were last used, not based on when they were ...Owen Jacobson2024-09-11
* Remove the notion of "channel members."Owen Jacobson2024-09-11
* Support joining channels.Owen Jacobson2024-09-04
* Allow any login to create channels.Owen Jacobson2024-09-04
* Expire sessions after 90 days.Owen Jacobson2024-09-04