Skip to content

Commit fd3e206

Browse files
committed
docs(changelog): note the data grid, editor, and filter UX fixes
1 parent 6be25e5 commit fd3e206

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Fixed
1515

1616
- Switching schemas on an Oracle connection no longer hangs on an infinite loading spinner. Oracle now switches by schema like BigQuery, the sidebar lists every schema with its tables loading on expand, Oracle queries respect the query timeout setting and reconnect automatically after a timeout, and a schema load that fails shows an error with a Retry button instead of spinning forever. Works with an already-installed Oracle plugin; updating the plugin adds the query timeout enforcement. (#1807)
17+
- Resizing a data grid column no longer triggers a sort. Dragging a column edge only resizes it; clicking the header still sorts.
18+
- Hidden columns stay hidden. The columns you choose to show are remembered per table across sessions, and resizing a column no longer brings the hidden ones back. Column widths and order are remembered per table too, now kept separately for each connection, database, and schema so two tables with the same name no longer overwrite each other's layout. A Reset Columns button in the Columns popover puts widths, order, and visibility back to defaults. Existing saved column widths reset once as part of this change.
19+
- Query and filter errors now appear in a scrollable banner you can read, select, and copy, with a Fix with AI button, instead of a small dialog that cut the message off.
20+
- The filter autocomplete no longer pops up on empty input, and pressing Escape to close it no longer also closes the filter bar.
21+
- The editor autocomplete popup no longer draws over the status bar or the Columns and Add buttons, and clicking outside it now dismisses it. This fixes the bottom-right buttons and the editor mouse going dead after the popup had appeared.
1722

1823
## [0.55.0] - 2026-07-04
1924

docs/features/data-grid.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ This filter runs on the rows already loaded, so it covers the current page only.
5050

5151
### Resize and Hide
5252

53-
Drag a column border to resize, or double-click it to fit the content. Widths are saved per table.
53+
Drag a column border to resize, or double-click it to fit the content. Dragging the border only resizes; it never triggers a sort.
5454

5555
Hide columns from the columns button in the status bar or the header menu. A hidden column isn't fetched, so hiding a large column makes the table load faster. The primary key is always fetched, so editing still works.
5656

57+
Column widths, order, and which columns are hidden are remembered per table and restored the next time you open it. Each table keeps its own layout per connection, database, and schema, so two tables with the same name in different databases don't share one. Click **Reset Columns** in the columns popover to put everything back to defaults.
58+
5759
### Display Format
5860

5961
UUIDs and Unix timestamps render in a readable form when the column type and name match (for example a `BINARY(16)` column named `uuid`, or a `BIGINT` named `created_at`). Right-click a header and choose **Display As** to set the format per column. Toggle the automatic behavior in **Settings > Editor > Smart value detection**.

docs/features/filtering.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ created_at > NOW() - INTERVAL 7 DAY
3333
price * quantity > 1000
3434
```
3535

36-
As you type, autocomplete suggests the table's columns and SQL keywords at every position in the expression, including after AND and OR. Use the arrow keys to pick a suggestion and Tab or Return to insert it.
36+
As you type, autocomplete suggests the table's columns and SQL keywords at every position in the expression, including after AND and OR. Use the arrow keys to pick a suggestion and Tab or Return to insert it. Suggestions only appear once you start a word, not on an empty field or after a space. Press Escape to dismiss the suggestions; the filter bar stays open.
3737

3838
To switch a row to column mode, select a column from the picker.
3939

0 commit comments

Comments
 (0)