π¦ ferox v0.2.9
Released: 2026-06-23
β¨ What's New
πΎ Saved Queries (Snippets)
Save any SQL you use often and recall it instantly.
- Press Ctrl+Shift+S (or the πΎ Save button) to save the current editor contents under a name
- A searchable snippets panel lists every saved query
- Right-click a snippet β π Load into editor or π Delete
- Saving over an existing name shows an overwrite warning
- Snippets persist to a TOML file, so they survive restarts
β¨οΈ Autocomplete Without Expanding Schemas
The SQL editor now autocompletes table and column names immediately after connecting β no need to click a schema open first.
- On connect, ferox preloads tables and column names for every user schema (one
LoadTables+ one column query per schema, on the DB thread β the UI never blocks) - Type
SELECT * FROM uβ¦anduserscompletes right away - A per-connection completion cache seeds every query tab, including tabs opened after the schema was already loaded
π DB-Side Column Statistics
The column Statistics panel now computes against the full table on the database, not just the rows already fetched into memory.
- Respects the active browse
WHEREfilter - Shows a loading indicator while the query runs
- A source note clarifies that the numbers come from the database
π Fixes
| # | Description |
|---|---|
| 1 | Autocomplete data did not reach tabs opened after the schema had already loaded β a per-connection completion cache now seeds any new/empty query tab, so autocomplete works in every tab regardless of when it was opened |
β‘ Performance
- Completion seeding is guarded by a cheap empty-check per tab β table/column lists are cloned into a panel only once, when it is first populated, not every frame
- Schema preloading runs entirely on the DB thread via async
information_schemaqueries β the UI thread is never blocked
π§ Changed
- Crate renamed to
ferox-pgfor crates.io publishing; added package metadata (description, license, repository, keywords, categories)