Changelog

Track every release — features, improvements, and fixes.

0.5.15Published on May 20, 2026
Download

Release v0.5.15

New Features

  • Offline Driver ImportSupport importing JDBC drivers offline via ZIP packages or local JAR files, convenient for environments without internet access

Improvements

  • Data Grid Experience OptimizationImproved cell detail editor (including inline date-time editing), Enter key editing and keyboard navigation, column width adjustment in transposed view, and record switching, among other interactive enhancements (contributed by @yavon007)

Fixes

  • MCP Database ContextFixed an issue where MCP requests did not correctly pass the current database context to the backend
  • SQL Server Transaction SyntaxFixed an issue where SQL Server explicit transactions used `BEGIN` instead of `BEGIN TRANSACTION`, causing execution failures
  • Agent Large Response CrashLimited the single-line read size for Agent to prevent memory overflow crashes caused by oversized responses
  • MySQL TLS ConnectionFixed an issue where MySQL TLS connections did not automatically fall back to non-SSL retries after an unexpected closure
  • Plugin Process StabilityStrengthened IO handling in the plugin process to improve connection stability
  • Elasticsearch Aggregation QueryFixed an issue where Elasticsearch aggregation query results could not be correctly parsed into table format (closes #344)
  • MySQL Metadata CollationFixed an issue in MariaDB where inconsistent collation in the `information_schema` table caused metadata query failures (contributed by @yavon007)
  • Driver Download VerificationRemoved unnecessary SHA-256 verification during driver downloads to prevent verification failures from blocking installation
0.5.14Published on May 19, 2026
Download

Release v0.5.14

New Features

  • Batch Insert RowsWhen inserting multiple rows of data at once in the data grid, they are merged into a single INSERT statement for execution, improving batch operation efficiency.
  • MySQL DELIMITER SyntaxThe SQL editor supports MySQL's DELIMITER syntax, correctly splitting multi-statement scripts such as stored procedures.
  • Database Export SearchThe export dialog now includes a table search filter feature for quickly locating target tables.
  • Date-Time EditorCells of date, time, and timestamp types in the data grid use a dedicated editor for more intuitive input.
  • DuckDB Create DatabaseSupports directly creating DuckDB database files in the connection form.
  • In-Memory DatabaseSQLite and DuckDB support in-memory mode connections (`:memory:`).
  • DDL Capability MatrixThe table structure editor automatically enables/disables DDL operations based on the database type.
  • SQL Auto-Completion OptimizationImproved the interface interaction experience for SQL editor auto-completion.
  • Save Page SizeThe setting for rows per page in query results will be persisted.
  • Oracle Query OptimizationUses direct SQL instead of JDBC metadata API to accelerate Oracle metadata queries.

Improvements

  • Agent Protocol RefactoringComprehensive refactoring of the Agent-driven communication protocol, adding a compatibility handshake mechanism and capability matrix to enhance driver compatibility.

Fixes

  • OceanBase CompatibilityFixed the issue where COLLATE inconsistency in OceanBase (MySQL compatibility mode) caused metadata query failures.
  • SQL Server ORDER BYFixed the issue where ORDER BY was not correctly removed when wrapping queries in SQL Server.
  • ClickHouse MetadataFixed the schema metadata database parsing error for ClickHouse.
  • MongoDB Authentication DatabaseFixed the issue where MongoDB could not configure the authentication database (authSource).
  • Thinking Model TimeoutExtended the timeout duration and token budget for AI thinking models.
  • IME EnterFixed the issue where pressing Enter while using input method editors (e.g., Chinese) incorrectly triggered sending.
  • Data Grid StateCorrectly discards uncommitted edits when switching result sets.
  • Format Button OverlapWidened the header control width to prevent the format button from being obscured.
  • Page Row CountFixed the issue where the data grid did not correctly adhere to the page size limit.
  • Databases Without CatalogFixed the issue where the schema tree in the sidebar could not be displayed for databases that do not support catalogs.
  • Object SearchFixed the issue of unnecessary schema prefixes in object search results.
  • Web CopyFixed the issue where the copy function was unavailable in some browsers on the web version.
  • Table Structure EditorFixed multiple issues including the table structure editor not loading correctly when opened, ClickHouse column editing, and object schema loss.
  • DuckDB Time DisplayFixed the display format for date-time types in DuckDB.
  • DuckDB Connection TestFixed the issue of repeatedly creating connection pools during connection testing.
  • JDBC CompatibilityCaught exceptions from older JDBC drivers that do not support getSchema/getCatalog.
  • Driver ValidationEnhanced file integrity validation when downloading drivers.
  • Connection EditingFixed the issue where data was not correctly populated when opening the edit dialog for a saved connection.
  • Proxy SettingsFixed the issue where the Agent unexpectedly inherited system proxy settings, causing connection failures.
0.5.13Published on May 18, 2026
Download

Release v0.5.13

New Features

  • Redis Search by ValueSupports searching Redis keys by key value content, with real-time streaming of search results
  • Oracle Service Name/SID ConnectionOracle connections now support selecting Service Name or SID mode
  • Agent Database ConfigurationAdded Agent database configuration file to simplify Agent-driven database management
  • JDBC Plugin Update NotificationDisplays update prompts when a new version of the JDBC driver is available
  • Default Dark ThemeApplication now defaults to dark theme
  • SQL Export and Tray UpdateSupports SQL export functionality, optimized system tray behavior
  • Web Driver ManagementWeb version now supports driver management

Improvements

  • Startup Performance OptimizationDelayed loading of dialogs and load data at startup to improve application launch speed
  • Driver Store AppearanceOptimized interface style and tab experience for the driver store

Fixes

  • SQL Server SELECT INTOFixed parsing and handling of SELECT INTO statements in SQL Server
  • Object Count DeduplicationFixed duplicate display of object counts in sidebar tree nodes
  • Table Metadata ExpansionFixed inability to expand metadata groups for tables in the sidebar
  • Keep Expanded After RenameFixed loss of expanded state after renaming objects in the sidebar
  • Stored Procedure RenameFixed rename editing functionality for routines such as stored procedures
  • Hostname Connection ProbingFixed unnecessary TCP probing for hostname-type connections
  • MySQL SHOW CommandFixed execution of MySQL administrative SHOW commands via text protocol
  • Group Action ButtonsFixed issue where group action buttons in the sidebar were not displayed when no connections existed
  • Group Rename FocusFixed input box losing focus when renaming groups in the sidebar
0.5.12Published on May 18, 2026
Download

Release v0.5.12

New Features

  • YashanDB Database SupportAdded built-in driver for YashanDB, supporting connection, query, and data editing
  • DuckDB File SupportData tables now support directly opening and querying DuckDB database files
  • Image PreviewPreview image URLs in data cell details, with a standalone image preview viewer
  • Column Visibility FilterAdded column visibility filtering in data tables to quickly show or hide specific columns
  • Column Value Type FilterData tables now support filtering by column data type
  • Driver Installation QueueAgent driver installation supports queuing to avoid conflicts when multiple drivers are installed simultaneously
  • HighGo Database IconAdded a dedicated connection icon for HighGo database
  • RedisJSON PreviewSupports previewing JSON data in Redis

Improvements

  • AI Message Rendering PerformanceCached rendered AI message fragments to improve chat interface responsiveness
  • System Object ProtectionPrevented editing the source code of system objects to avoid database anomalies caused by misoperation

Fixes

  • SQL Server Query ResultsFixed an issue where large result sets were not properly streamed before truncation
  • SQL Server Pagination CompatibilityFixed incompatibility with older SQL Server pagination syntax
  • Data Save OperationOptimized the visibility and label text of the data table save operation button
  • Non-Transactional Data EditingFixed an issue where databases that do not support transactions (e.g., YashanDB) could not save edits
  • Dialog Close LagFixed lag when closing the dialog overlay
  • Window Restore AnomalyFixed issues where the window restored off-screen or could not be maximized on startup
  • Sidebar NavigationFixed issues where tree nodes did not scroll into view after expansion and the "View Source Code" action was missing
  • F5 Data RefreshFixed an issue where the F5 shortcut key did not refresh data
  • Oracle Agent NetworkFixed Java NIO network compatibility issues with the Oracle Agent driver
  • Object Browser StabilityFixed issues with object name normalization, unstable row IDs, and abnormal handling of stored procedure renaming
  • JDBC CompatibilityFixed compatibility issues with unqualified sort column names and metadata retrieval for databases without a Catalog
  • GitHub DownloadRemoved the GitHub proxy fallback mechanism to improve download stability
0.5.11Published on May 17, 2026
Download

Release v0.5.11

New Features

  • NPM Command Line PackageAdded `dbx` Node.js npm package, supporting installation and management of DBX via command line
  • Custom Column FormattingData tables now support custom column formatters for flexible control over data display
  • Transposed Table ViewAdded transposed view for data tables, allowing data browsing with rows and columns swapped
  • Multi-Row Column Comment EditingTable structure editor now supports multi-line editing of column comments
  • AI Vendor PresetsAdded preset configurations for common vendors in AI settings, enabling quick integration with mainstream AI services
  • Direct SQL File OpeningSupports opening and editing .sql files directly in the editor for execution
  • Driver Update ReminderAutomatically prompts for updates when a new version of the Agent driver is available, with a badge showing the number of pending updates

Improvements

  • Automatic Metadata Cache RefreshAutomatically refreshes expired Schema metadata cache to ensure information is always accurate

Fixes

  • Window Restore Size AnomalyFixed an issue where the window size could exceed the screen boundaries when restoring
  • SQL Server Table Structure LoadingFixed an issue where table structure metadata was not correctly loaded in SQL Server connections
  • Paginated Data ExportFixed incomplete export of paginated table data
  • PostgreSQL DDL Column CommentsFixed missing column comments when generating DDL for PostgreSQL
  • PostgreSQL Sidebar NavigationFixed an issue where the Schema browser was incorrectly opened from a PostgreSQL database node
  • AI Agent Execution IntentFixed an issue where the AI agent's recognition scope for execution intent was not broad enough
  • Data Refresh After Row DeletionFixed an issue where data tables did not automatically refresh after deleting a row
  • Portable Data Directory SupportFixed an incorrect data directory path in portable mode
Loading more versions…