Changelog
Track every release — features, improvements, and fixes.
Release v0.5.88August 18, 2026
0.5.88Published on August 18, 2026
DownloadRelease v0.5.88
New Features
- Dolt Version Control Workbench,Added branch and tag management, commit graph, version diff, workspace staging/commit/revert, and confirmation for high-risk operations such as merge, rollback, and reset. (contributed by @hanxuanyu)
- One-Time Database Backup,Configure and execute a backup immediately without creating a plan first; execution results are written to the existing backup history. (contributed by @0verme)
- Schema Comparison Table Selection,Supports explicitly selecting tables to participate in structure comparison, combinable with existing regex filters to avoid loading unrelated table metadata. (contributed by @0verme)
- Redis Key Rename,Supports safe key renaming, preventing overwriting existing target keys, and synchronously updates the list, selection state, and completion cache. (contributed by @eryajf)
- MySQL User Table-Level Privileges,When creating a new user, permissions can be configured for specific tables instead of only granting privileges at the entire database level. (contributed by @zipg)
- Agent Driver Installation Cancellation,Compatible driver downloads for new connections, batch upgrades in the driver store, and individual upgrades can all be cancelled; slow downloads no longer lock up the installation process. (contributed by @Abeautifulsnow)
- SQL Editor Manual Completion,Added a configurable completion shortcut key, defaulting to `Alt+/`, while retaining the existing `Ctrl+Space` and automatic completion behavior. (contributed by @Abeautifulsnow)
- Sidebar Table-Level New Query,Added "New Query" to the right-click menu of tables and views, which directly generates the corresponding `SELECT *` query. (contributed by @antwa)
- Data Grid JSON Value Editing,Added a "Compact JSON" action to the value editor, allowing multi-line JSON to be quickly converted to a single line. (contributed by @mr-dadong)
Improvements
- SQL Editor Large File Completion,Automatic completion now only scans the current statement window near the cursor, avoiding full-text traversal on every keystroke in large SQL files. (contributed by @q396921921)
- AI Model Selector,Enhanced vendor grouping and model hierarchy to reduce visual confusion between selection state and group state.
- AI Assistant Table Scrollbar,Markdown table scrollbars now adapt to light and dark themes, maintaining consistency with the overall application style. (contributed by @Abeautifulsnow)
- Sidebar Multi-Selection Performance,Node validation is now performed asynchronously only when multi-selection cleanup is needed, avoiding blocking caused by synchronous selection trimming during connection tree updates.
- Official Website Sponsorship Page,Sponsor cards are now displayed in a two-column layout, improving page space utilization and browsing efficiency.
- Official Website DynamoDB Information,Added DynamoDB database support metadata and official website icon.
Bug Fixes
- Dameng,Falls back to reading object source code and table DDL from system catalogs when `DBMS_METADATA` is not installed, not authorized, or unavailable, avoiding direct errors. (contributed by @GIWTO)
- OceanBase Oracle Mode,Restored recognition and display filtering of system schemas, preventing system objects from being incorrectly hidden or regular objects from being misidentified.
- TDengine JDBC,Table data preview SQL now explicitly includes the selected database, avoiding querying the wrong table when the WebSocket execution context is not active.
- Vastbase,Resolves the actual schema hit by the query according to `search_path`, ensuring result set edits are written back to the correct table. (contributed by @zipg)
- MySQL Count Query,Safely rewrites derived table projections for queries with duplicate output column names, preventing pagination total count statistics from failing due to column name conflicts.
- Kingbase,Data grid SQL copying and single-table SQL export now follow the identifier quoting returned by the connection, compatible with MySQL mode and schemas containing hyphens. (contributed by @dienaso)
- Oracle Data Migration,Removes Oracle's `CHAR`/`BYTE` length units when converting character types such as `VARCHAR2` and `CHAR`, generating DDL executable on the target database. (contributed by @0verme)
- PostgreSQL Partitioned Table DDL,Recursively includes existing child partition definitions when generating the partitioned parent table structure. (contributed by @q396921921)
- PostgreSQL Table Structure Export,Includes partition definitions when exporting database or table structures, avoiding restoring only the partitioned parent table.
- MongoDB Infinite Scroll,Subsequent pagination results are now appended rather than replacing already loaded documents; scrolling back and forth no longer loses the previous segment of data. (contributed by @q396921921)
- Custom JDBC Tunnel Connection,UI connections now reuse the local endpoint returned by transport layers such as SSH and SOCKS5, no longer bypassing the tunnel to connect directly to the original address. (contributed by @wyeye)
- Schema Comparison Deployment Confirmation,Deploy and cancel buttons remain fully visible even when destructive operation prompts are long. (contributed by @q396921921)
- Settings Application Failure Prompt,Errors are now displayed when saving settings fails, and the window remains retryable; "Apply and Close" no longer becomes unresponsive. (contributed by @0verme)
- Numeric Import with Thousands Separators,Correctly parses valid thousands separators when importing Excel/CSV data into numeric columns. (contributed by @0verme)
- Object Browser Search,Search no longer matches type labels such as `TABLE` and `VIEW`, preventing short keywords from incorrectly matching all objects. (contributed by @0verme)
- Data Comparison Key Inference,No longer risks using the first column when no reliable primary key exists, and displays the source, key column, and value in duplicate key errors. (contributed by @0verme)
- Data Grid Single-Statement Execution Viewport,Clicking the row number slot to execute SQL now preserves the current scroll position instead of jumping back to the old cursor row. (contributed by @mr-dadong)
- Data Grid Grouped Column Comments,Column comments are now correctly displayed in grouped query results. (contributed by @0verme)
- Data Grid Database-Computed Values,After saving SQL row edits, database results are re-read to immediately display new values generated by triggers or `ON UPDATE`. (contributed by @q396921921)
- Data Grid SQL IN Copy,Automatically removes duplicate tuples when copying multi-column `IN` conditions.
- GaussDB Multi-Host Configuration,Delete button in multi-host connections is now aligned with the input box height, fixing layout misalignment. (contributed by @AndrewDi)
- AI Session Switching,Cancels in-progress requests before clearing, creating, deleting, or switching sessions, preventing the input area from remaining disabled for extended periods. (contributed by @q396921921)
- MiniMax Reasoning Playback,Incremental streaming responses now retain the full accumulated reasoning text; tool call playback no longer shows only the last segment.
- Editor Global Shortcut Keys,Global sidebar shortcuts and others can now override CodeMirror built-in bindings, restoring shortcut key behavior when the editor is focused. (contributed by @q396921921)
- Connection Type Switching,Clears parsed legacy fields such as host, password, SSL, and connection string when switching database types for a new connection. (contributed by @zipg)
Installation
- macOS 12 Compatibility,Removed regex and style syntax unsupported by the older WKWebView, and fixed the data transfer dialog layout. (contributed by @wzlstudy)
Release v0.5.87August 18, 2026
0.5.87Published on August 18, 2026
DownloadRelease v0.5.87
New Features
- Amazon DynamoDB,Added native connection, table and index browsing, querying, editing, and export support. (contributed by @zipg)
- PostgreSQL Concurrent Indexes,The table structure editor supports creating new indexes concurrently for non-partitioned tables, reducing write blocking during index creation. (contributed by @0verme)
- Connection Group Batch Deletion,Supports multi-selection and recursive deletion of connection groups, with the option to keep or also delete connections within the groups. (contributed by @eryajf)
- GaussDB Count Parallelism,Connection configuration can set the `query_dop` parallelism hint for COUNT queries. (contributed by @AndrewDi)
Improvements
- Meilisearch Reverse Proxy,Supports configuring the proxy base path via a full HTTP(S) URL, correctly handling protocol, port, and secure requests. (contributed by @eryajf)
- MCP Web TLS,Remote web backends support self-signed certificates and custom CA trust configuration. (contributed by @azens)
- MongoDB Editor Completion,Collection methods can be completed after typing `db.<collection>.`. (contributed by @jthanh8144)
- Sidebar Connection Menu,Moved "Close Database Connection" to the top of the right-click menu for quick disconnection. (contributed by @bigFish0124)
- SQL Formatting,MySQL and SQLite `LIKE` now follow the keyword case setting, and new lines after complete SQL statements no longer inherit incorrect indentation. (contributed by @zipg)
- Official Website Database Support Info,The official website, README, and Docker documentation have been updated to reflect support for 80+ databases.
Fixes
- Hive,Supports pasting JDBC URLs and is compatible with HTTP `noSasl` connections. (contributed by @zipg)
- MySQL Cloud Columnstore Large Fields,Large fields in Tencent Cloud MySQL columnstore engine can now be previewed correctly. (contributed by @zipg)
- MySQL ShardingSphere Binary Values,`BINARY` and `VARBINARY` fields in ShardingSphere Proxy can now be viewed correctly using Hex. (contributed by @zipg)
- MySQL XA Recovery Results,`XA RECOVER` now correctly returns the query result set.
- PostgreSQL Copy Table DDL,Preserves `serial` column semantics when copying table structures.
- SAP HANA Table Operations,Restores operations such as renaming, truncating, and dropping tables within a schema scope.
- StarRocks External Databases,Empty external databases can now load table lists correctly. (contributed by @zipg)
- Oracle Table Structure Export,Removes physical storage attributes when exporting table DDL to improve cross-environment portability. (contributed by @zipg)
- SQL Server Activity Tracking,Enables `ARITHABORT` before reading activity tracking to avoid related query failures.
- Kafka Legacy Brokers,Uses compatible request versions when sending messages to older Kafka brokers.
- Data Grid Pagination,Preserves the user-set page size when narrowing the fetch range for the last time.
- Data Grid Filter Drag-and-Drop,Restores drag-and-drop for filter conditions on desktop and optimizes condition layout. (contributed by @zipg)
- Data Grid SQL Copy,Prefers the right-clicked cell when copying `SQL SELECT` or `WHERE`, and falls back to display column names when source column metadata is missing. (contributed by @eryajf)
- JSON Field Extraction,Correctly identifies and extracts uppercase JSON field names.
- Scheduled Backup Directory,Creates or validates the target directory before writing backups to avoid persistent failures after the directory is deleted or temporarily unavailable. (contributed by @q396921921)
- Editor Settings Draft,Confirms before closing the settings window with unapplied changes to avoid silently discarding configuration. (contributed by @q396921921)
- Query Timeout Actions,Avoids displaying the timeout settings button repeatedly in error messages. (contributed by @zipg)
- WebDAV Sync Path,Collection paths now correctly use a trailing separator to avoid directory sync request errors.
Installation
- Windows Installer Language,Added Simplified Chinese and Traditional Chinese, along with administrator privilege prompts. (contributed by @zipg)
- Installer Download Links,Official website installer links remain valid during version release switching.
Release v0.5.86August 16, 2026
0.5.86Published on August 16, 2026
DownloadRelease v0.5.86
New Features
- Apache Kyuubi,Added native connection, metadata browsing, and query support. (contributed by @zipg)
- Nacos Access Control,Added access control support in connection configuration, allowing authentication information to connect to protected Nacos services. (contributed by @eryajf)
- Cross-Database Object Comments,Display comment information in object browsing and metadata for more databases. (contributed by @q396921921)
- Oracle Table Constraints,Display Oracle table constraint information in the table structure editor. (contributed by @q396921921)
- Foreign Key Reference Values,The data grid can display reference values corresponding to foreign key fields, making it easier to understand related data directly. (contributed by @zipg)
- SQL Block Comments,Added SQL block comment operation in the editor. (contributed by @q396921921)
- Table Structure Column Copy,Support copying column definitions between different data tables. (contributed by @eryajf)
- Custom UI Color Scheme,Support creating and using custom UI palettes. (contributed by @domye)
- MQTT Message Flow Control,Added pause and resume operations for message flows. (contributed by @q396921921)
- Pi MCP Configuration,Added MCP configuration support for Pi client in settings. (contributed by @domye)
Improvements
- Query Timeout Guidance,Added settings entry on the query timeout error page to directly adjust related timeout configurations. (contributed by @zipg)
- Data Transfer Object Search,Object search prioritizes prefix match results for faster location of target tables. (contributed by @q396921921)
- Official Website Database Support Information,Centrally maintain the supported database list, icons, and connection configuration validation on the official website, reducing page information inconsistency. (contributed by @eryajf)
- Password Saving Description,The connection dialog uses a compact question mark tooltip to display password saving behavior, with corresponding descriptions based on checkbox state.
Fixes
- Nacos Configuration Editor Initialization,Build the syntax tree before editor rendering to avoid display anomalies when opening configuration for the first time. (contributed by @q396921921)
- Nacos Configuration Copy Target Group,Allow overwriting the target group when copying configurations. (contributed by @q396921921)
- Sidebar Global Search State,Show loading state during search and cancel expired search tasks when switching modes. (contributed by @q396921921 and @0verme) (#6190)
- MCP Read-Only SQL Determination,Unified read-only SQL classification for MCP tools to prevent write operations on restricted connections. (contributed by @q396921921)
- MCP Optional Parameter Schema,Publish optional fields as more compatible JSON Schema, fixing parameter parsing failures in some MCP clients. (contributed by @q396921921)
- Touch Tab Drag,Touch input no longer accidentally triggers tab drag-and-drop reordering. (contributed by @q396921921)
- SQL Server Query Duration,Query duration statistics now include lock wait time. (contributed by @q396921921)
- Redis Console Command Display,Display the actual executed Redis command before the response. (contributed by @q396921921)
- Redis JSON Tree Labels,JSON tree node labels remain horizontally displayed without abnormal line breaks. (contributed by @q396921921)
- Redis Auto Scan Budget,Respect the shared budget when automatically loading scan results to avoid excessive loading. (contributed by @q396921921)
- Xugu Public Synonym Order,Place public synonyms after Schema in the object tree. (contributed by @mapan0424)
- MongoDB Command Execution Status,Command execution summary correctly reflects the final success or failure status. (contributed by @q396921921)
- Data Transfer Overwrite Validation,Validate that the target object actually exists before overwriting to avoid incorrectly entering the overwrite flow. (contributed by @q396921921)
- CodeBuddy Login Status,Correctly handle CodeBuddy authentication status. (contributed by @q396921921)
- MySQL View Edit Draft,Preserve the SQL format of view edit drafts without unexpected compression. (contributed by @q396921921)
- WebKit Paste Cursor,Re-sync the editor cursor after pasting, fixing cursor position anomalies under WebKit. (contributed by @q396921921)
- Editor Ctrl+D Shortcut,Custom Ctrl+D bindings now take effect properly and are no longer overridden by default behavior. (contributed by @0verme)
- Table Structure Horizontal Scrollbar,The table structure page always retains a usable horizontal scrollbar. (contributed by @zipg)
- Transposed Grid Record Header,Record headers in transposed mode are restored to left alignment. (contributed by @eryajf)
- RabbitMQ Queue Message Entry,Correctly navigate to the corresponding message page from the queue object. (contributed by @q396921921)
- Oracle Explain Plan Placeholder,Correctly bind parameter placeholders in Explain Plan SQL. (contributed by @q396921921)
- Connection Import Layout,When importing connections, layout information is correctly applied even if the connection already exists. (contributed by @q396921921)
- SQL Completion Identifier Quoting,Apply identifier quoting according to database dialect and avoid MySQL adding unnecessary backticks to regular identifiers. (contributed by @zipg) (#6374, #6376)
- Expression Index Structure Sync,Generate sync SQL based on expression indexes only when the source is clear, avoiding incorrect DDL generation for PostgreSQL-family databases. (contributed by @q396921921)
- SQL Folder Sticky Header,Fixed folder titles penetrating other content when scrolling through file lists. (contributed by @zipg)
- Join Query Field Comments,Field comments are now correctly displayed in join query results. (contributed by @0verme)
- WebView Startup Monitoring,Extended startup monitoring timeout to reduce false positives and abnormal exits on slower devices. (contributed by @niubinJD)
- MySQL Stored Procedure Labels,Stored procedure labels are no longer mistakenly identified as SQL parameters. (contributed by @zipg)
Installation
- macOS Download Architecture Detection,The official website and documentation download entries can distinguish between Intel and Apple Silicon Macs and automatically recommend the correct installation package. (contributed by @eryajf)
Release v0.5.85August 15, 2026
0.5.85Published on August 15, 2026
DownloadRelease v0.5.85
New Features
- Data Grid Filter Views,Added quick, conditional, and text filter views, with support for persistence, drag-and-drop sorting, and SQL condition preview and copy. (contributed by @zipg) (#5016, #5087)
- Geometry Layer Preview,Preview spatial geometry data in the result grid, with configurable custom XYZ basemaps and overlay layers. (contributed by @amwps290)
- Data Transfer Tasks,Save transfer configurations as reusable tasks, manageable via folders, search, copy, move, and rename. (contributed by @lizzzzz777)
- Apache Impala,Added full Impala connection, metadata browsing, query, and data manipulation support. (contributed by @zipg)
- OpenTenBase,Added PostgreSQL-compatible OpenTenBase connection, metadata, and SQL dialect support.
- Dolt System Tables & Completion,Support browsing Dolt built-in system tables, with improved SQL completion and object navigation. (contributed by @hanxuanyu)
- GaussDB Target Server Type,Select the GaussDB target server type in connection configuration. (contributed by @AndrewDi)
- Session Passwords,Connections without saved passwords can securely reuse in-memory credentials during the current session, with the option to forget immediately after disconnection. (contributed by @Abeautifulsnow)
- Sidebar Display Settings,Support configuring object tree indentation and font size. (contributed by @domye)
- SQL Join Lines Shortcut,Added a configurable Join Lines editor shortcut. (contributed by @xiaou61)
- SQL Variable Substitution Toggle,Added a master switch for SQL variable and placeholder substitution in settings.
- Adjacent Data Tabs,Support opening new data tabs to the right of the current tab.
- JSON Camel Case Field Names,Convert underscore field names to camel case when copying query results as JSON.
- AI Message Copy,Added a quick copy action for AI conversation messages. (contributed by @CN-Scars)
- Manual Update Check,Added an entry in settings to manually check for DBX updates. (contributed by @xzxlove)
- MCP Server Uninstall,Uninstall the DBX MCP Server via detected npm or pnpm environments in settings. (contributed by @xzxlove)
- Remote MCP Web Configuration,Web mode supports system proxy and custom request headers. (contributed by @azens)
- Anonymous Issue Submission on Website,Submit issues or suggestions without a GitHub account, with AI-assisted organization and image attachments.
Improvements
- Dangerous Operation Prompts,Destructive actions in the sidebar and context menus now use more prominent warning colors. (contributed by @zipg)
- Saved SQL Write Performance,Avoid rewriting the entire directory when saving SQL, reducing I/O overhead in scenarios with many files.
- Dynamic Progress Numbers,Use monospaced digits to stabilize the real-time layout of download, import, export, and execution progress. (contributed by @difagume)
Fixes
- MongoDB Shell Database Commands,Correctly execute database list commands such as `show dbs` and `show databases`.
- MongoDB Shell Date Values,Correctly format Mongo Shell date values in the result grid. (contributed by @kir1ito)
- MongoDB Legacy Agent Fallback,Complete Agent installation before falling back to the legacy driver to avoid direct connection failure.
- IoTDB Table Export,Normalize projection columns in export queries to fix table data export failures.
- Oracle CLOB Reading,Load CLOBs lazily and safely to prevent a single large field exception from failing the entire query. (contributed by @zipg)
- Nacos Config List Scrollbar,Fixed flickering of dividers and scrollbars when resizing the window. (contributed by @q396921921)
- MySQL Completion Identifiers,Use backticks for reserved-word database and table names to prevent generated SQL from failing to execute. (contributed by @q396921921)
- MySQL Database List Timeout,Respect connection timeout settings when listing databases, improving scenarios with VPN and unreachable networks.
- MySQL Large Field Preview,Improved large field truncation, default queries, and detail previews to avoid incorrect display or excessive loading. (contributed by @zipg)
- Caché Total Row Count,Fixed failure to count total rows in JDBC query results.
- Elasticsearch Request Formatting,Correctly format Kibana Console-style REST requests. (contributed by @q396921921)
- PostgreSQL Array Preview,Preserve array field values to avoid incorrectly calling string functions on arrays during table preview.
- SQL Server Import Type Inference,Use SQL Server `float` type for decimal columns in Excel/CSV imports to avoid incompatible inferred results.
- SQL Server Multi-Target Result Focus,Prioritize focusing on actual data results when executing statements with multiple result sets across multiple targets. (contributed by @q396921921)
- TDSQL Same-Line Directives,Preserve TDSQL hints and proxy directives on the same line as SQL. (contributed by @xiaou61)
- Asterisk Expansion Identifier Quoting,Preserve column name quoting according to the current database dialect to avoid sending incorrect backticks to databases like Oracle.
- DDL Dialog Scroll Position,Maintain the original scroll position of the SQL editor after closing the view DDL dialog. (contributed by @q396921921)
- Editor Custom Background,Custom theme background colors now cover both the code area and the line number area.
- Completion Accept Shortcut,Whether the Tab key accepts completion strictly follows the current editor shortcut configuration. (contributed by @q396921921)
- Sidebar Search State,Clearing the search only restores the original group expansion state without opening unmodified object groups. (contributed by @q396921921)
- Copy SQL from Selected Cells,"Copy as SQL" now works correctly when right-clicking selected grid cells. (contributed by @q396921921)
- Data Grid Font Column Width,Re-measure table headers after the configured font loads to avoid column width inconsistencies with settings. (contributed by @q396921921)
- Data Grid Filter Initialization,Adjusted the initialization order of filter capabilities and preview listeners to avoid uninitialized reference errors when opening the grid.
- Data Transfer Scrollbar,Separated object list and dialog scrollbars to avoid overlap affecting operations. (contributed by @q396921921)
- DuckDB Parquet Preview,Restored drag-and-drop Parquet file preview and timely cleanup of temporary connections. (contributed by @kingcanfish)
- Kafka Message Page Scrolling,Restored vertical scrolling on the message tab to prevent incomplete content display. (contributed by @Lan-zk)
- Kafka Single Partition Adjustment,Partition count adjustment is now available for single-partition topics. (contributed by @q396921921)
- MCP Connection Selection Parameter,Published the connection selector as a string schema to fix parameter parsing failures in some clients.
Installation
- Offline Native Driver List,The offline download page now fully displays all native drivers. (contributed by @zipg)
- Offline JDBC Bundle,Completed managed JDBC drivers including PrestoSQL and Phoenix. (contributed by @zipg)
- Nix pnpm Dependencies,Updated pnpm dependency hashes to restore Nix desktop package builds. (contributed by @zipg)
Release v0.5.84August 14, 2026
0.5.84Published on August 14, 2026
DownloadRelease v0.5.84
New Features
- SQL Completion Column Sorting,Support configuring the sorting method for SQL completion candidate columns.
- Manage Saved SQL by Database,View and manage saved SQL by database directly in the sidebar. (contributed by @DASungta)
- AI History Search,Support searching AI conversation history. (contributed by @Lan-zk)
- MQTT Publish Panel,Support hiding the publish area and remembering the panel display state. (contributed by @Jinmoli)
- Redis Unicode JSON View,Added Unicode decoding view to the JSON editor. (contributed by @Abeautifulsnow)
- Read-only Result Text Selection,Support selecting and copying text in read-only result cells. (contributed by @zipg)
- Elasticsearch Connectivity Check Toggle,Support disabling connectivity checks in connection configuration. (contributed by @JcEvoX)
- Recently Opened Connections,Added recent connections entry on the welcome page.
- MySQL Object Path Copy,Support copying the display path of MySQL objects in the sidebar.
- DDL Line Break Preference,Support remembering the auto-wrap setting for generated DDL.
- Sidebar Regex Search,Support batch matching database objects using regular expressions. (contributed by @Lan-zk)
- MySQL User Host Modification,User management supports modifying account Host.
- Copy Results as SELECT,Support copying selected result data as SELECT statements.
- MySQL Auto-increment Counter,Added entry to adjust the auto-increment counter in table operations.
- SQL Editor Right-click Actions,Added comment, format, and compress SQL actions to the right-click menu. (contributed by @gggaiitx)
- MongoDB Index Editing,Support safely editing MongoDB indexes. (contributed by @kir1ito)
- ZooKeeper Native Proxy,Replaced the ZooKeeper Java Agent with a native Go implementation.
- Single-click Database Object Browsing,Clicking a database directly expands and browses its objects. (contributed by @lizzzzz777)
Improvements
- Schema Diff Safety Review,Added identification, prompting, and pre-execution review for destructive DDL. (contributed by @DASungta)
- Query Timeout Prompt,Directly display the entry to adjust timeout settings in structured timeout errors. (contributed by @zipg)
- Large Field First-screen Performance,Limit table preview by byte budget to reduce first-screen time and memory usage for large fields. (contributed by @zipg)
- Transposed Field Metadata,Support displaying field types and comments in transposed tables according to settings.
- Connection Search Scope,Connection search supports matching host addresses and usernames. (contributed by @xzxlove)
- JDBC Cursor Strategy,No longer force Connector/J to use cursor fetching. (contributed by @wbean)
- JRE Uninstall Detection,Only Java drivers block JRE uninstallation; native drivers allow normal uninstallation. (contributed by @onenewcode)
- Kafka Message Browsing,Optimized message query and Topic navigation experience. (contributed by @onceMisery)
- Large Field Diagnostics Performance,Optimized merge overhead for long-value metadata in large result sets. (contributed by @zipg)
- Multi-select Object Operations,Database browser supports Ctrl/Cmd/Shift-click multi-selection of tables. (contributed by @q396921921)
- Connection Import Documentation,Fixed and optimized the display of connection import step titles.
- Document Database Comments,Preserve database column comments in document data.
Fixes
- PostgreSQL 9.x Data Transfer,Compatible with legacy routine catalogs and completed the PostgreSQL 9.x table transfer flow.
- Kingbase MySQL Compatibility Mode,Correctly use backticks to quote identifiers when creating queries and generating DDL. (contributed by @dienaso)
- Grid Column Drag Scrolling,Fixed the issue where column headers could not be dragged long distances to the first or last column when a horizontal scrollbar exists. (contributed by @hanxuanyu)
- Table Navigation Hover Tooltip,Fixed the issue where the field tooltip does not disappear after Ctrl/Cmd-clicking a table name to open data. (contributed by @q396921921) (#5836)
- SQL Preview Line Breaks,Fixed the issue where long SQL preview text exceeds panel boundaries. (contributed by @q396921921)
- MySQL Routine Time,Correctly display creation and update times for stored procedures and functions.
- Oracle Timestamp Export,Generate explicit timestamp literals during export.
- Web Export File Names,Fixed the issue where Web/Docker export file names were replaced by UUIDs. (contributed by @DASungta)
- Oracle Constant Column Query,Configure default row prefetching to avoid triggering TTC read errors. (contributed by @zipg)
- MCP Package Registry,MCP installation and startup respect the user-configured package registry.
- Object List After Search,Restore the complete database object list after clearing sidebar search.
- SSH Reconnection Error,Display the real error reason when tunnel reconnection fails. (contributed by @q396921921)
- LIMIT Pagination Boundary,Correctly identify the result limit of LIMIT/OFFSET queries to avoid showing invalid next pages. (contributed by @q396921921)
- PostgreSQL reg Types,Correctly display regtype, regproc, and similar types as text. (contributed by @onenewcode)
- Computed Column Read-only State,Computed columns in query results remain independently read-only without affecting other editable columns.
- PostgreSQL X.509 v1 Certificates,Support connecting with X.509 v1 client certificates.
- TiDB ADMIN SHOW,Correctly display ADMIN SHOW query results.
- Result Column Comments,Correctly parse query result column comments via source field metadata.
- Data Transfer Table List,Correctly load transferable tables for supported database types.
- MySQL DDL Chinese Comments,Fixed garbled Chinese comments in encoded DDL. (contributed by @zipg)
- Generated SQL Template Line Breaks,Fixed the issue where right-click generated SQL templates exceed the preview area. (contributed by @q396921921)
- Code Completion After Line Break,No longer incorrectly re-triggers completion prompts after pressing Enter. (contributed by @zipg)
- Multi-line Selection Search,Ctrl/Cmd+F/H can fill the search box with the full selection containing line breaks. (contributed by @q396921921)
- r-nacos Configuration Details,Safely load JSON configuration content via the console API. (contributed by @onenewcode)
- NUMBER Data Generation,Correctly identify NUMBER columns as numeric types.
- SQL Server Message Results,Keep data results interactive when queries also return messages.
- Search Ancestor Nodes,Preserve necessary ancestor objects when sidebar search matches child objects.
- Sync Connection Password Recovery,Improved password recovery logic for sync connections. (contributed by @xzxlove)
- MySQL Nested Routine Blocks,Correctly preserve nested CASE and other code blocks in stored procedures. (contributed by @zipg)
- Caché Grid Pagination,Fixed data grid pagination when connecting to Caché via JDBC.
- DISTINCT Result Insertion,Allow inserting into bound DISTINCT query results.
- JDBC CLOB Reading,Correctly read and display CLOB content from character streams. (contributed by @echocde)
- Optional AI Configuration Startup,A single optional AI configuration error no longer prevents application startup.
- Background Update Download,Continue downloading in the background after accidentally closing the update dialog, without losing progress. (contributed by @q396921921)
- AI Connection Test Configuration,Use the current model configuration from the form when performing connection tests. (contributed by @zipg)
- GaussDB M-mode Boolean Values,Preserve multi-bit values and correctly display boolean columns. (contributed by @AndrewDi)
- GaussDB M-mode View DDL,Use schema instead of database to fetch view DDL. (contributed by @AndrewDi)
- MySQL Default Value Quoting,Safely add quotes to unquoted character default values in generated DDL. (contributed by @Dhevenddra)
- SQL Server TOP Pagination Sorting,Preserve user ORDER BY when paginating TOP queries. (contributed by @GIWTO)
- GBase 8s Table Export,Use Informix-compatible SQL to export table data.
- Executed Statement Viewport Positioning,Center the current SQL after execution to avoid sticking to the viewport edge. (contributed by @q396921921)
- MySQL BIT Boolean Columns,Correctly identify bit and bit(1) results as boolean columns. (contributed by @difagume)
- ChromaDB Cloud Connection Scope,Correctly use Cloud Tenant and Database when connecting.
- SQL Server KILL Statement,Correctly split and execute KILL statement targets.
- Credential-less URL Connection,Preserve saved username and password when the connection URL does not carry credentials.
- Large Field Detail Toggle,Correctly load full large field content after switching query results, no longer retaining old truncated previews. (contributed by @zipg)
- Kingbase search_path,Preserve user-set search_path during multi-statement execution.
- Firebird Stored Procedure Source,Correctly return stored procedure source code.
- Table Structure Charset Column Width,Charset and collation selection boxes correctly fill adjustable-width columns. (contributed by @q396921921)
- Selection After Column Reordering,Correctly preserve grid selection state after adjusting column order. (contributed by @hanxuanyu)
- MySQL Double-dash Comments,Only parse as MySQL line comments when whitespace follows `--`. (contributed by @q396921921)
- User Management Connection Test,Correctly pass the current connection context during Provider testing.
- DM Connection Initialization,Set boundary timeouts for connection initialization to avoid persistent blocking. (contributed by @zipg)
- MongoDB Legacy Driver Testing,Automatically install legacy drivers during connection tests and improve error messages. (contributed by @zipg)
- Drag Selection Jitter,Only expand cell selection after pointer movement reaches a threshold. (contributed by @q396921921)
- Execution Shortcut Hint,Editor displays the correct execution shortcut based on platform and current configuration. (contributed by @q396921921)
- Kafka Legacy Compatibility,Completed scenarios for missing legacy Topic metadata and configuration.
- ZooKeeper Large Child Node List,Safely handle responses containing a large number of child nodes.
- Gemini MCP Schema,Publish Gemini-compatible tool schemas for optional array parameters.
Loading more versions…