Changelog

Track every release — features, improvements, and fixes.

Release v0.5.88August 18, 2026
0.5.88Published on August 18, 2026
Download

Release v0.5.88

New Features

  • Dolt Version Control WorkbenchAdded 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 BackupConfigure 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 SelectionSupports explicitly selecting tables to participate in structure comparison, combinable with existing regex filters to avoid loading unrelated table metadata. (contributed by @0verme)
  • Redis Key RenameSupports 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 PrivilegesWhen 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 CancellationCompatible 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 CompletionAdded 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 QueryAdded "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 EditingAdded 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 CompletionAutomatic 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 SelectorEnhanced vendor grouping and model hierarchy to reduce visual confusion between selection state and group state.
  • AI Assistant Table ScrollbarMarkdown table scrollbars now adapt to light and dark themes, maintaining consistency with the overall application style. (contributed by @Abeautifulsnow)
  • Sidebar Multi-Selection PerformanceNode 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 PageSponsor cards are now displayed in a two-column layout, improving page space utilization and browsing efficiency.
  • Official Website DynamoDB InformationAdded DynamoDB database support metadata and official website icon.

Bug Fixes

  • DamengFalls 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 ModeRestored recognition and display filtering of system schemas, preventing system objects from being incorrectly hidden or regular objects from being misidentified.
  • TDengine JDBCTable data preview SQL now explicitly includes the selected database, avoiding querying the wrong table when the WebSocket execution context is not active.
  • VastbaseResolves 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 QuerySafely rewrites derived table projections for queries with duplicate output column names, preventing pagination total count statistics from failing due to column name conflicts.
  • KingbaseData 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 MigrationRemoves 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 DDLRecursively includes existing child partition definitions when generating the partitioned parent table structure. (contributed by @q396921921)
  • PostgreSQL Table Structure ExportIncludes partition definitions when exporting database or table structures, avoiding restoring only the partitioned parent table.
  • MongoDB Infinite ScrollSubsequent 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 ConnectionUI 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 ConfirmationDeploy and cancel buttons remain fully visible even when destructive operation prompts are long. (contributed by @q396921921)
  • Settings Application Failure PromptErrors 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 SeparatorsCorrectly parses valid thousands separators when importing Excel/CSV data into numeric columns. (contributed by @0verme)
  • Object Browser SearchSearch no longer matches type labels such as `TABLE` and `VIEW`, preventing short keywords from incorrectly matching all objects. (contributed by @0verme)
  • Data Comparison Key InferenceNo 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 ViewportClicking 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 CommentsColumn comments are now correctly displayed in grouped query results. (contributed by @0verme)
  • Data Grid Database-Computed ValuesAfter 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 CopyAutomatically removes duplicate tuples when copying multi-column `IN` conditions.
  • GaussDB Multi-Host ConfigurationDelete button in multi-host connections is now aligned with the input box height, fixing layout misalignment. (contributed by @AndrewDi)
  • AI Session SwitchingCancels 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 PlaybackIncremental streaming responses now retain the full accumulated reasoning text; tool call playback no longer shows only the last segment.
  • Editor Global Shortcut KeysGlobal 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 SwitchingClears 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 CompatibilityRemoved 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
Download

Release v0.5.87

New Features

  • Amazon DynamoDBAdded native connection, table and index browsing, querying, editing, and export support. (contributed by @zipg)
  • PostgreSQL Concurrent IndexesThe table structure editor supports creating new indexes concurrently for non-partitioned tables, reducing write blocking during index creation. (contributed by @0verme)
  • Connection Group Batch DeletionSupports 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 ParallelismConnection configuration can set the `query_dop` parallelism hint for COUNT queries. (contributed by @AndrewDi)

Improvements

  • Meilisearch Reverse ProxySupports configuring the proxy base path via a full HTTP(S) URL, correctly handling protocol, port, and secure requests. (contributed by @eryajf)
  • MCP Web TLSRemote web backends support self-signed certificates and custom CA trust configuration. (contributed by @azens)
  • MongoDB Editor CompletionCollection methods can be completed after typing `db.<collection>.`. (contributed by @jthanh8144)
  • Sidebar Connection MenuMoved "Close Database Connection" to the top of the right-click menu for quick disconnection. (contributed by @bigFish0124)
  • SQL FormattingMySQL 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 InfoThe official website, README, and Docker documentation have been updated to reflect support for 80+ databases.

Fixes

  • HiveSupports pasting JDBC URLs and is compatible with HTTP `noSasl` connections. (contributed by @zipg)
  • MySQL Cloud Columnstore Large FieldsLarge 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 DDLPreserves `serial` column semantics when copying table structures.
  • SAP HANA Table OperationsRestores operations such as renaming, truncating, and dropping tables within a schema scope.
  • StarRocks External DatabasesEmpty external databases can now load table lists correctly. (contributed by @zipg)
  • Oracle Table Structure ExportRemoves physical storage attributes when exporting table DDL to improve cross-environment portability. (contributed by @zipg)
  • SQL Server Activity TrackingEnables `ARITHABORT` before reading activity tracking to avoid related query failures.
  • Kafka Legacy BrokersUses compatible request versions when sending messages to older Kafka brokers.
  • Data Grid PaginationPreserves the user-set page size when narrowing the fetch range for the last time.
  • Data Grid Filter Drag-and-DropRestores drag-and-drop for filter conditions on desktop and optimizes condition layout. (contributed by @zipg)
  • Data Grid SQL CopyPrefers 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 ExtractionCorrectly identifies and extracts uppercase JSON field names.
  • Scheduled Backup DirectoryCreates 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 DraftConfirms before closing the settings window with unapplied changes to avoid silently discarding configuration. (contributed by @q396921921)
  • Query Timeout ActionsAvoids displaying the timeout settings button repeatedly in error messages. (contributed by @zipg)
  • WebDAV Sync PathCollection paths now correctly use a trailing separator to avoid directory sync request errors.

Installation

  • Windows Installer LanguageAdded Simplified Chinese and Traditional Chinese, along with administrator privilege prompts. (contributed by @zipg)
  • Installer Download LinksOfficial website installer links remain valid during version release switching.
Release v0.5.86August 16, 2026
0.5.86Published on August 16, 2026
Download

Release v0.5.86

New Features

  • Apache KyuubiAdded native connection, metadata browsing, and query support. (contributed by @zipg)
  • Nacos Access ControlAdded access control support in connection configuration, allowing authentication information to connect to protected Nacos services. (contributed by @eryajf)
  • Cross-Database Object CommentsDisplay comment information in object browsing and metadata for more databases. (contributed by @q396921921)
  • Oracle Table ConstraintsDisplay Oracle table constraint information in the table structure editor. (contributed by @q396921921)
  • Foreign Key Reference ValuesThe data grid can display reference values corresponding to foreign key fields, making it easier to understand related data directly. (contributed by @zipg)
  • SQL Block CommentsAdded SQL block comment operation in the editor. (contributed by @q396921921)
  • Table Structure Column CopySupport copying column definitions between different data tables. (contributed by @eryajf)
  • Custom UI Color SchemeSupport creating and using custom UI palettes. (contributed by @domye)
  • MQTT Message Flow ControlAdded pause and resume operations for message flows. (contributed by @q396921921)
  • Pi MCP ConfigurationAdded MCP configuration support for Pi client in settings. (contributed by @domye)

Improvements

  • Query Timeout GuidanceAdded settings entry on the query timeout error page to directly adjust related timeout configurations. (contributed by @zipg)
  • Data Transfer Object SearchObject search prioritizes prefix match results for faster location of target tables. (contributed by @q396921921)
  • Official Website Database Support InformationCentrally maintain the supported database list, icons, and connection configuration validation on the official website, reducing page information inconsistency. (contributed by @eryajf)
  • Password Saving DescriptionThe connection dialog uses a compact question mark tooltip to display password saving behavior, with corresponding descriptions based on checkbox state.

Fixes

  • Nacos Configuration Editor InitializationBuild the syntax tree before editor rendering to avoid display anomalies when opening configuration for the first time. (contributed by @q396921921)
  • Nacos Configuration Copy Target GroupAllow overwriting the target group when copying configurations. (contributed by @q396921921)
  • Sidebar Global Search StateShow loading state during search and cancel expired search tasks when switching modes. (contributed by @q396921921 and @0verme) (#6190)
  • MCP Read-Only SQL DeterminationUnified read-only SQL classification for MCP tools to prevent write operations on restricted connections. (contributed by @q396921921)
  • MCP Optional Parameter SchemaPublish optional fields as more compatible JSON Schema, fixing parameter parsing failures in some MCP clients. (contributed by @q396921921)
  • Touch Tab DragTouch input no longer accidentally triggers tab drag-and-drop reordering. (contributed by @q396921921)
  • SQL Server Query DurationQuery duration statistics now include lock wait time. (contributed by @q396921921)
  • Redis Console Command DisplayDisplay the actual executed Redis command before the response. (contributed by @q396921921)
  • Redis JSON Tree LabelsJSON tree node labels remain horizontally displayed without abnormal line breaks. (contributed by @q396921921)
  • Redis Auto Scan BudgetRespect the shared budget when automatically loading scan results to avoid excessive loading. (contributed by @q396921921)
  • Xugu Public Synonym OrderPlace public synonyms after Schema in the object tree. (contributed by @mapan0424)
  • MongoDB Command Execution StatusCommand execution summary correctly reflects the final success or failure status. (contributed by @q396921921)
  • Data Transfer Overwrite ValidationValidate that the target object actually exists before overwriting to avoid incorrectly entering the overwrite flow. (contributed by @q396921921)
  • CodeBuddy Login StatusCorrectly handle CodeBuddy authentication status. (contributed by @q396921921)
  • MySQL View Edit DraftPreserve the SQL format of view edit drafts without unexpected compression. (contributed by @q396921921)
  • WebKit Paste CursorRe-sync the editor cursor after pasting, fixing cursor position anomalies under WebKit. (contributed by @q396921921)
  • Editor Ctrl+D ShortcutCustom Ctrl+D bindings now take effect properly and are no longer overridden by default behavior. (contributed by @0verme)
  • Table Structure Horizontal ScrollbarThe table structure page always retains a usable horizontal scrollbar. (contributed by @zipg)
  • Transposed Grid Record HeaderRecord headers in transposed mode are restored to left alignment. (contributed by @eryajf)
  • RabbitMQ Queue Message EntryCorrectly navigate to the corresponding message page from the queue object. (contributed by @q396921921)
  • Oracle Explain Plan PlaceholderCorrectly bind parameter placeholders in Explain Plan SQL. (contributed by @q396921921)
  • Connection Import LayoutWhen importing connections, layout information is correctly applied even if the connection already exists. (contributed by @q396921921)
  • SQL Completion Identifier QuotingApply identifier quoting according to database dialect and avoid MySQL adding unnecessary backticks to regular identifiers. (contributed by @zipg) (#6374, #6376)
  • Expression Index Structure SyncGenerate 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 HeaderFixed folder titles penetrating other content when scrolling through file lists. (contributed by @zipg)
  • Join Query Field CommentsField comments are now correctly displayed in join query results. (contributed by @0verme)
  • WebView Startup MonitoringExtended startup monitoring timeout to reduce false positives and abnormal exits on slower devices. (contributed by @niubinJD)
  • MySQL Stored Procedure LabelsStored procedure labels are no longer mistakenly identified as SQL parameters. (contributed by @zipg)

Installation

  • macOS Download Architecture DetectionThe 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
Download

Release v0.5.85

New Features

  • Data Grid Filter ViewsAdded 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 PreviewPreview spatial geometry data in the result grid, with configurable custom XYZ basemaps and overlay layers. (contributed by @amwps290)
  • Data Transfer TasksSave transfer configurations as reusable tasks, manageable via folders, search, copy, move, and rename. (contributed by @lizzzzz777)
  • Apache ImpalaAdded full Impala connection, metadata browsing, query, and data manipulation support. (contributed by @zipg)
  • OpenTenBaseAdded PostgreSQL-compatible OpenTenBase connection, metadata, and SQL dialect support.
  • Dolt System Tables & CompletionSupport browsing Dolt built-in system tables, with improved SQL completion and object navigation. (contributed by @hanxuanyu)
  • GaussDB Target Server TypeSelect the GaussDB target server type in connection configuration. (contributed by @AndrewDi)
  • Session PasswordsConnections 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 SettingsSupport configuring object tree indentation and font size. (contributed by @domye)
  • SQL Join Lines ShortcutAdded a configurable Join Lines editor shortcut. (contributed by @xiaou61)
  • SQL Variable Substitution ToggleAdded a master switch for SQL variable and placeholder substitution in settings.
  • Adjacent Data TabsSupport opening new data tabs to the right of the current tab.
  • JSON Camel Case Field NamesConvert underscore field names to camel case when copying query results as JSON.
  • AI Message CopyAdded a quick copy action for AI conversation messages. (contributed by @CN-Scars)
  • Manual Update CheckAdded an entry in settings to manually check for DBX updates. (contributed by @xzxlove)
  • MCP Server UninstallUninstall the DBX MCP Server via detected npm or pnpm environments in settings. (contributed by @xzxlove)
  • Remote MCP Web ConfigurationWeb mode supports system proxy and custom request headers. (contributed by @azens)
  • Anonymous Issue Submission on WebsiteSubmit issues or suggestions without a GitHub account, with AI-assisted organization and image attachments.

Improvements

  • Dangerous Operation PromptsDestructive actions in the sidebar and context menus now use more prominent warning colors. (contributed by @zipg)
  • Saved SQL Write PerformanceAvoid rewriting the entire directory when saving SQL, reducing I/O overhead in scenarios with many files.
  • Dynamic Progress NumbersUse monospaced digits to stabilize the real-time layout of download, import, export, and execution progress. (contributed by @difagume)

Fixes

  • MongoDB Shell Database CommandsCorrectly execute database list commands such as `show dbs` and `show databases`.
  • MongoDB Shell Date ValuesCorrectly format Mongo Shell date values in the result grid. (contributed by @kir1ito)
  • MongoDB Legacy Agent FallbackComplete Agent installation before falling back to the legacy driver to avoid direct connection failure.
  • IoTDB Table ExportNormalize projection columns in export queries to fix table data export failures.
  • Oracle CLOB ReadingLoad CLOBs lazily and safely to prevent a single large field exception from failing the entire query. (contributed by @zipg)
  • Nacos Config List ScrollbarFixed flickering of dividers and scrollbars when resizing the window. (contributed by @q396921921)
  • MySQL Completion IdentifiersUse backticks for reserved-word database and table names to prevent generated SQL from failing to execute. (contributed by @q396921921)
  • MySQL Database List TimeoutRespect connection timeout settings when listing databases, improving scenarios with VPN and unreachable networks.
  • MySQL Large Field PreviewImproved large field truncation, default queries, and detail previews to avoid incorrect display or excessive loading. (contributed by @zipg)
  • Caché Total Row CountFixed failure to count total rows in JDBC query results.
  • Elasticsearch Request FormattingCorrectly format Kibana Console-style REST requests. (contributed by @q396921921)
  • PostgreSQL Array PreviewPreserve array field values to avoid incorrectly calling string functions on arrays during table preview.
  • SQL Server Import Type InferenceUse SQL Server `float` type for decimal columns in Excel/CSV imports to avoid incompatible inferred results.
  • SQL Server Multi-Target Result FocusPrioritize focusing on actual data results when executing statements with multiple result sets across multiple targets. (contributed by @q396921921)
  • TDSQL Same-Line DirectivesPreserve TDSQL hints and proxy directives on the same line as SQL. (contributed by @xiaou61)
  • Asterisk Expansion Identifier QuotingPreserve column name quoting according to the current database dialect to avoid sending incorrect backticks to databases like Oracle.
  • DDL Dialog Scroll PositionMaintain the original scroll position of the SQL editor after closing the view DDL dialog. (contributed by @q396921921)
  • Editor Custom BackgroundCustom theme background colors now cover both the code area and the line number area.
  • Completion Accept ShortcutWhether the Tab key accepts completion strictly follows the current editor shortcut configuration. (contributed by @q396921921)
  • Sidebar Search StateClearing 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 WidthRe-measure table headers after the configured font loads to avoid column width inconsistencies with settings. (contributed by @q396921921)
  • Data Grid Filter InitializationAdjusted the initialization order of filter capabilities and preview listeners to avoid uninitialized reference errors when opening the grid.
  • Data Transfer ScrollbarSeparated object list and dialog scrollbars to avoid overlap affecting operations. (contributed by @q396921921)
  • DuckDB Parquet PreviewRestored drag-and-drop Parquet file preview and timely cleanup of temporary connections. (contributed by @kingcanfish)
  • Kafka Message Page ScrollingRestored vertical scrolling on the message tab to prevent incomplete content display. (contributed by @Lan-zk)
  • Kafka Single Partition AdjustmentPartition count adjustment is now available for single-partition topics. (contributed by @q396921921)
  • MCP Connection Selection ParameterPublished the connection selector as a string schema to fix parameter parsing failures in some clients.

Installation

  • Offline Native Driver ListThe offline download page now fully displays all native drivers. (contributed by @zipg)
  • Offline JDBC BundleCompleted managed JDBC drivers including PrestoSQL and Phoenix. (contributed by @zipg)
  • Nix pnpm DependenciesUpdated 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
Download

Release v0.5.84

New Features

  • SQL Completion Column SortingSupport configuring the sorting method for SQL completion candidate columns.
  • Manage Saved SQL by DatabaseView and manage saved SQL by database directly in the sidebar. (contributed by @DASungta)
  • AI History SearchSupport searching AI conversation history. (contributed by @Lan-zk)
  • MQTT Publish PanelSupport hiding the publish area and remembering the panel display state. (contributed by @Jinmoli)
  • Redis Unicode JSON ViewAdded Unicode decoding view to the JSON editor. (contributed by @Abeautifulsnow)
  • Read-only Result Text SelectionSupport selecting and copying text in read-only result cells. (contributed by @zipg)
  • Elasticsearch Connectivity Check ToggleSupport disabling connectivity checks in connection configuration. (contributed by @JcEvoX)
  • Recently Opened ConnectionsAdded recent connections entry on the welcome page.
  • MySQL Object Path CopySupport copying the display path of MySQL objects in the sidebar.
  • DDL Line Break PreferenceSupport remembering the auto-wrap setting for generated DDL.
  • Sidebar Regex SearchSupport batch matching database objects using regular expressions. (contributed by @Lan-zk)
  • MySQL User Host ModificationUser management supports modifying account Host.
  • Copy Results as SELECTSupport copying selected result data as SELECT statements.
  • MySQL Auto-increment CounterAdded entry to adjust the auto-increment counter in table operations.
  • SQL Editor Right-click ActionsAdded comment, format, and compress SQL actions to the right-click menu. (contributed by @gggaiitx)
  • MongoDB Index EditingSupport safely editing MongoDB indexes. (contributed by @kir1ito)
  • ZooKeeper Native ProxyReplaced the ZooKeeper Java Agent with a native Go implementation.
  • Single-click Database Object BrowsingClicking a database directly expands and browses its objects. (contributed by @lizzzzz777)

Improvements

  • Schema Diff Safety ReviewAdded identification, prompting, and pre-execution review for destructive DDL. (contributed by @DASungta)
  • Query Timeout PromptDirectly display the entry to adjust timeout settings in structured timeout errors. (contributed by @zipg)
  • Large Field First-screen PerformanceLimit table preview by byte budget to reduce first-screen time and memory usage for large fields. (contributed by @zipg)
  • Transposed Field MetadataSupport displaying field types and comments in transposed tables according to settings.
  • Connection Search ScopeConnection search supports matching host addresses and usernames. (contributed by @xzxlove)
  • JDBC Cursor StrategyNo longer force Connector/J to use cursor fetching. (contributed by @wbean)
  • JRE Uninstall DetectionOnly Java drivers block JRE uninstallation; native drivers allow normal uninstallation. (contributed by @onenewcode)
  • Kafka Message BrowsingOptimized message query and Topic navigation experience. (contributed by @onceMisery)
  • Large Field Diagnostics PerformanceOptimized merge overhead for long-value metadata in large result sets. (contributed by @zipg)
  • Multi-select Object OperationsDatabase browser supports Ctrl/Cmd/Shift-click multi-selection of tables. (contributed by @q396921921)
  • Connection Import DocumentationFixed and optimized the display of connection import step titles.
  • Document Database CommentsPreserve database column comments in document data.

Fixes

  • PostgreSQL 9.x Data TransferCompatible with legacy routine catalogs and completed the PostgreSQL 9.x table transfer flow.
  • Kingbase MySQL Compatibility ModeCorrectly use backticks to quote identifiers when creating queries and generating DDL. (contributed by @dienaso)
  • Grid Column Drag ScrollingFixed 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 TooltipFixed 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 BreaksFixed the issue where long SQL preview text exceeds panel boundaries. (contributed by @q396921921)
  • MySQL Routine TimeCorrectly display creation and update times for stored procedures and functions.
  • Oracle Timestamp ExportGenerate explicit timestamp literals during export.
  • Web Export File NamesFixed the issue where Web/Docker export file names were replaced by UUIDs. (contributed by @DASungta)
  • Oracle Constant Column QueryConfigure default row prefetching to avoid triggering TTC read errors. (contributed by @zipg)
  • MCP Package RegistryMCP installation and startup respect the user-configured package registry.
  • Object List After SearchRestore the complete database object list after clearing sidebar search.
  • SSH Reconnection ErrorDisplay the real error reason when tunnel reconnection fails. (contributed by @q396921921)
  • LIMIT Pagination BoundaryCorrectly identify the result limit of LIMIT/OFFSET queries to avoid showing invalid next pages. (contributed by @q396921921)
  • PostgreSQL reg TypesCorrectly display regtype, regproc, and similar types as text. (contributed by @onenewcode)
  • Computed Column Read-only StateComputed columns in query results remain independently read-only without affecting other editable columns.
  • PostgreSQL X.509 v1 CertificatesSupport connecting with X.509 v1 client certificates.
  • TiDB ADMIN SHOWCorrectly display ADMIN SHOW query results.
  • Result Column CommentsCorrectly parse query result column comments via source field metadata.
  • Data Transfer Table ListCorrectly load transferable tables for supported database types.
  • MySQL DDL Chinese CommentsFixed garbled Chinese comments in encoded DDL. (contributed by @zipg)
  • Generated SQL Template Line BreaksFixed the issue where right-click generated SQL templates exceed the preview area. (contributed by @q396921921)
  • Code Completion After Line BreakNo longer incorrectly re-triggers completion prompts after pressing Enter. (contributed by @zipg)
  • Multi-line Selection SearchCtrl/Cmd+F/H can fill the search box with the full selection containing line breaks. (contributed by @q396921921)
  • r-nacos Configuration DetailsSafely load JSON configuration content via the console API. (contributed by @onenewcode)
  • NUMBER Data GenerationCorrectly identify NUMBER columns as numeric types.
  • SQL Server Message ResultsKeep data results interactive when queries also return messages.
  • Search Ancestor NodesPreserve necessary ancestor objects when sidebar search matches child objects.
  • Sync Connection Password RecoveryImproved password recovery logic for sync connections. (contributed by @xzxlove)
  • MySQL Nested Routine BlocksCorrectly preserve nested CASE and other code blocks in stored procedures. (contributed by @zipg)
  • Caché Grid PaginationFixed data grid pagination when connecting to Caché via JDBC.
  • DISTINCT Result InsertionAllow inserting into bound DISTINCT query results.
  • JDBC CLOB ReadingCorrectly read and display CLOB content from character streams. (contributed by @echocde)
  • Optional AI Configuration StartupA single optional AI configuration error no longer prevents application startup.
  • Background Update DownloadContinue downloading in the background after accidentally closing the update dialog, without losing progress. (contributed by @q396921921)
  • AI Connection Test ConfigurationUse the current model configuration from the form when performing connection tests. (contributed by @zipg)
  • GaussDB M-mode Boolean ValuesPreserve multi-bit values and correctly display boolean columns. (contributed by @AndrewDi)
  • GaussDB M-mode View DDLUse schema instead of database to fetch view DDL. (contributed by @AndrewDi)
  • MySQL Default Value QuotingSafely add quotes to unquoted character default values in generated DDL. (contributed by @Dhevenddra)
  • SQL Server TOP Pagination SortingPreserve user ORDER BY when paginating TOP queries. (contributed by @GIWTO)
  • GBase 8s Table ExportUse Informix-compatible SQL to export table data.
  • Executed Statement Viewport PositioningCenter the current SQL after execution to avoid sticking to the viewport edge. (contributed by @q396921921)
  • MySQL BIT Boolean ColumnsCorrectly identify bit and bit(1) results as boolean columns. (contributed by @difagume)
  • ChromaDB Cloud Connection ScopeCorrectly use Cloud Tenant and Database when connecting.
  • SQL Server KILL StatementCorrectly split and execute KILL statement targets.
  • Credential-less URL ConnectionPreserve saved username and password when the connection URL does not carry credentials.
  • Large Field Detail ToggleCorrectly load full large field content after switching query results, no longer retaining old truncated previews. (contributed by @zipg)
  • Kingbase search_pathPreserve user-set search_path during multi-statement execution.
  • Firebird Stored Procedure SourceCorrectly return stored procedure source code.
  • Table Structure Charset Column WidthCharset and collation selection boxes correctly fill adjustable-width columns. (contributed by @q396921921)
  • Selection After Column ReorderingCorrectly preserve grid selection state after adjusting column order. (contributed by @hanxuanyu)
  • MySQL Double-dash CommentsOnly parse as MySQL line comments when whitespace follows `--`. (contributed by @q396921921)
  • User Management Connection TestCorrectly pass the current connection context during Provider testing.
  • DM Connection InitializationSet boundary timeouts for connection initialization to avoid persistent blocking. (contributed by @zipg)
  • MongoDB Legacy Driver TestingAutomatically install legacy drivers during connection tests and improve error messages. (contributed by @zipg)
  • Drag Selection JitterOnly expand cell selection after pointer movement reaches a threshold. (contributed by @q396921921)
  • Execution Shortcut HintEditor displays the correct execution shortcut based on platform and current configuration. (contributed by @q396921921)
  • Kafka Legacy CompatibilityCompleted scenarios for missing legacy Topic metadata and configuration.
  • ZooKeeper Large Child Node ListSafely handle responses containing a large number of child nodes.
  • Gemini MCP SchemaPublish Gemini-compatible tool schemas for optional array parameters.
Loading more versions…