Skip to content

Releases: emqx/MQTTX

v1.12.0

25 Jun 08:24
Compare
Choose a tag to compare

Release Note πŸŽ‰

πŸš€ v1.12.0 β€“ AI super‑powered, smoother desktop, smarter, native MCP integration, and plenty of polish

The Copilot gets a full upgrade with multi‑model support (Gemini 2.5, Claude‑4, GPT‑4.1, o3/o4‑mini, Azureβ€―OpenAI), richer schema & MCP tooling, and deeper reasoning. Desktop and Web jump to modern Node/Electron versions, and the CLI gains flexible payload generation – all wrapped in a host of UX refinements and bug fixes.

Features 🌈

  • Desktop:
    • Auto‑save & restore window position/size for a seamless comeback.
    • Active topic & payload search highlighting for quicker navigation.
    • Copilot 2.0
      • Plug‑and‑play with Geminiβ€―2.5β€―(Pro β€œthinking” mode), Claude‑4, GPT‑4.1, o3, o4‑mini & Azureβ€―OpenAI.
      • One‑click custom function & schema (Protobufβ€―/β€―Avro) generation.
      • Session management, enhanced reasoning, and MCP call detection with streaming results.
      • Native MCP integration β€“ stdio, HTTP SSE server support, call detection, result processing & streaming responses.
  • CLI:
    • -payload-size option for random message generation lets you stress‑test with precise loads.

Improvements πŸ’«

  • Desktop:
    • Electron bumped toβ€―v33, Node runtime toβ€―18 for performance & security.
    • DevTools toggle is enabled in development builds.
    • Copilot 2.0
      • Copilot codebase refactored for stronger type‑safety, cleaner component structure, and faster load times.
  • CLI:
    • Line‑mode publishing and bench/simulate client ID refinements.
  • Web:
    • Runtime aligned to Nodeβ€―18 for parity with Desktop.

Fixes πŸ› 

  • Desktop:
    • Resolved SQLite disconnect warnings on wake‑from‑sleep.
    • Prevented accidental drag on connection list rows.
    • Restored paste inside Monaco editor.
    • Refined native scrollbar styling on Windows.
    • Applied active search filters to live message stream.
    • Ensured search filters persist on incoming messages.
    • Copilot 2.0
      • Fixed loading state flicker, input focus loss, and preset prompt display glitches.
      • Removed obsolete files and tightened MCP availability checks.

What's Changed

New Contributors

Full Changelog: v1.11.1...v1.12.0

v1.12.0-beta.4

24 Jun 08:45
Compare
Choose a tag to compare
v1.12.0-beta.4 Pre-release
Pre-release

What's Changed

  • test(copilot): expand unit tests for AI model providers by @ysfscream in #1928
  • feat(copilot): o3 and o4-mini support by @ysfscream in #1930
  • refactor(background): enable devTools in BrowserWindow configuration by @ysfscream in #1935
  • ci: translate issue in Chinese into English by @Rory-Z in #1938
  • feat(cli): add payload size option for random message generation by @ysfscream in #1940
  • fix(connections): apply active search filters on incoming messages by @muzaffarmhd in #1939
  • fix(log): add no-drag region to select input on log page by @ysfscream in #1942
  • fix(log): add no-drag region to select input on log page by @ysfscream in #1943
  • feat(desktop): add highlighting on active topic and payload search by @muzaffarmhd in #1944
  • 1.12.0-beta.4 by @ysfscream in #1946

New Contributors

Full Changelog: v1.12.0-beta.3...v1.12.0-beta.4

v1.12.0-beta.3

16 Apr 05:41
Compare
Choose a tag to compare
v1.12.0-beta.3 Pre-release
Pre-release

Release Note πŸŽ‰

✨ v1.12.0-beta.3 has exciting new AI capabilities and important fixes! We've integrated Google Gemini and Azure OpenAI into MQTTX Copilot, alongside several desktop usability improvements.

Features 🌈

  • Copilot: Added support for Google Gemini models. (#1923)
  • Copilot: Introduced support for Azure OpenAI. (#1926)
    • Note on Azure OpenAI Integration: Integrating Azure OpenAI required some specific configurations due to its unique API structure compared to standard OpenAI.
      • The host field accepts a full URL or the Azure Resource Name.
      • The API Version must be specified by appending ?api-version=<your-api-version> (e.g., ?api-version=2025-01-01-preview) directly to the host URL/Resource Name in the settings. This parameter is not exposed as a separate configuration field to minimize changes to the current UI and database structure, which lacks a dedicated 'Provider' field.
      • Azure models often have a deployment- prefix. In Azure, a model corresponds to a deployment. This naming convention helps avoid conflicts with standard OpenAI model names within our current system.
      • These implementation details deviate from standard practices but allow Azure OpenAI support within the existing framework. Please take a look at the documentation for detailed setup instructions.

Improvements πŸ’«

  • Copilot: Updated the underlying AI SDK to support newer models like GPT-4.1 via the OpenAI integration. (#1925)
  • Copilot: Replaced the preset prompt hover text for better clarity when reverting changes. (#1924)
  • CI: Optimized the release process by skipping Docker/artifact uploads for pre-releases. (#1919)

Fixes πŸ› 

  • Desktop: Prevented accidental dragging of items in the connection list. (#1916)
  • Desktop: Resolved an issue where pasting content into the Monaco editor (used for message payloads) was not working correctly. (#1917)
image

What's Changed

Full Changelog: v1.12.0-beta.2...v1.12.0-beta.3

v1.12.0-beta.2

27 Mar 02:03
Compare
Choose a tag to compare
v1.12.0-beta.2 Pre-release
Pre-release

Release Note πŸŽ‰

πŸ€– MQTTX with major AI model upgrades and Model Context Protocol support (Beta)

This release significantly expands our AI model support by integrating leading LLMs, introduces beta Model Context Protocol (MCP) support, fixes critical API issues, and enhances user experience across all platforms.

Note: Electron has been significantly upgraded to v33.0.0 to utilize features from newer Node.js versions. Due to this major version jump, compatibility issues may occur on some systems. If you encounter any abnormal functionality or rendering problems, please submit an issue on GitHub. We recommend testing key features after upgrading to ensure everything works properly.

Features 🌈

  • Desktop: Save and restore window state for a better user experience
  • Desktop: Model Context Protocol Support (Beta):
    • Standardized integration between LLMs and data sources
    • SSE MCP servers support
    • Stdio MCP servers support
  • Desktop: Comprehensive AI model integration:
    • Claude 3.5 and 3.7 support
    • Grok 2 integration with readiness for Grok 3
    • DeepSeek models (R1, V3) support
    • Thinking Chain support for advanced reasoning with DeepSeek R1 and Claude 3.7
  • Desktop: Enhanced AI Copilot capabilities:
    • Custom function generation support
    • Schema generation (Protobuf and Avro)
    • Session management for AI interactions

Improvements πŸ’«

  • Desktop: Upgraded Node.js to version 18 for new features
  • Desktop: Updated Electron version to 33.0.0
  • Desktop: AI infrastructure improvements:
    • Fixed OpenAI API compatibility issues (#1856)
    • Implemented comprehensive API keys management
    • Optimized DeepSeek integration across multiple cloud platforms

Fixes πŸ› 

  • Desktop: Fixed SQLite disconnect warning issue
  • Desktop: Fixed i18n issues for better localization
  • Desktop: Fixed Copilot loading state issues
  • Desktop: Improved input focus and handling for preset prompts in Copilot

Preview πŸ–ΌοΈ

image

image

What's Changed

  • chore(pkg): update node engine versiont to 16 by @ysfscream in #1853
  • feat(desktop): save and restore window state by @ni00 in #1852
  • chore(web): update Node.js version to 18 by @Red-Asuka in #1875
  • chore(desktop): upgrade Node.js version to 18 by @Red-Asuka in #1876
  • refactor(copilot): integrate AI SDK for improved model handling by @Red-Asuka in #1877
  • fix(copilot): fix loading state by @Red-Asuka in #1879
  • feat(copilot): support generating custom functions by @Red-Asuka in #1880
  • style(copilot): update copilot button icon and enhance styling by @Red-Asuka in #1881
  • feat(copilot): support generating schema by @Red-Asuka in #1883
  • refactor(copilot): reorganize AI-related components and utilities by @ysfscream in #1882
  • refactor(copilot): improve type safety by @ysfscream in #1884
  • refactor(i18n): migrate Copilot translations to dedicated locale file by @ysfscream in #1885
  • fix(copilot): improve input focus and handling for preset prompts by @ysfscream in #1886
  • feat(copilot): add raw-loader and dynamic system prompt loading by @ysfscream in #1887
  • feat(copilot): improve preset prompt display behavior on input focus by @ysfscream in #1888
  • feat(copilot): support separate Protobuf and Avro schema generation prompts by @ysfscream in #1889
  • feat(copilot): introduce session management for AI interactions by @ysfscream in #1890
  • chore(pkg): bump electron version to 22.0.0 by @ysfscream in #1896
  • feat(copilot): MCP support by @ysfscream in #1894
  • fix(desktop): fix sqlite disconnect warning issue by @ysfscream in #1897
  • fix(desktop): fix i18n issues by @ysfscream in #1898
  • feat(copilot): sse mcp servers support by @ysfscream in #1899
  • fix(copilot): remove useless file by @ysfscream in #1901
  • refactor(copilot): add MCP call detection and display component by @ysfscream in #1902
  • refactor(copilot): integrate AI Agent for response handling by @ysfscream in #1903
  • refactor(copilot): remove MCP availability check and enhance AI streaming options by @ysfscream in #1904
  • feat(copilot): implement MCP result processing by @ysfscream in #1906
  • feat(copilot): enhance reasoning support by @ysfscream in #1907
  • chore: bump electron version to 33.0.0 by @ysfscream in #1909
  • fix(desktop): fix generate the latest.yaml issue on ci by @ysfscream in #1911
  • fix(ci): update artifact upload process to use gitHub release by @ysfscream in #1913

Full Changelog: v1.11.1...v1.12.0-beta.2

v1.12.0-beta.1

26 Mar 08:21
Compare
Choose a tag to compare
v1.12.0-beta.1 Pre-release
Pre-release

What's Changed

  • chore(pkg): update node engine version to 16 by @ysfscream in #1853
  • feat(desktop): save and restore window state by @ni00 in #1852
  • chore(web): update Node.js version to 18 by @Red-Asuka in #1875
  • chore(desktop): upgrade Node.js version to 18 by @Red-Asuka in #1876
  • refactor(copilot): integrate AI SDK for improved model handling by @Red-Asuka in #1877
  • fix(copilot): fix loading state by @Red-Asuka in #1879
  • feat(copilot): support generating custom functions by @Red-Asuka in #1880
  • style(copilot): update copilot button icon and enhance styling by @Red-Asuka in #1881
  • feat(copilot): support generating schema by @Red-Asuka in #1883
  • refactor(copilot): reorganize AI-related components and utilities by @ysfscream in #1882
  • refactor(copilot): improve type safety by @ysfscream in #1884
  • refactor(i18n): migrate Copilot translations to dedicated locale file by @ysfscream in #1885
  • fix(copilot): improve input focus and handling for preset prompts by @ysfscream in #1886
  • feat(copilot): add raw-loader and dynamic system prompt loading by @ysfscream in #1887
  • feat(copilot): improve preset prompt display behavior on input focus by @ysfscream in #1888
  • feat(copilot): support separate Protobuf and Avro schema generation prompts by @ysfscream in #1889
  • feat(copilot): introduce session management for AI interactions by @ysfscream in #1890
  • chore(pkg): bump electron version to 22.0.0 by @ysfscream in #1896
  • feat(copilot): MCP support by @ysfscream in #1894
  • fix(desktop): fix sqlite disconnect warning issue by @ysfscream in #1897
  • fix(desktop): fix i18n issues by @ysfscream in #1898
  • feat(copilot): sse mcp servers support by @ysfscream in #1899
  • fix(copilot): remove useless file by @ysfscream in #1901
  • refactor(copilot): add MCP call detection and display component by @ysfscream in #1902
  • refactor(copilot): integrate AI Agent for response handling by @ysfscream in #1903
  • refactor(copilot): remove MCP availability check and enhance AI streaming options by @ysfscream in #1904
  • feat(copilot): implement MCP result processing by @ysfscream in #1906
  • feat(copilot): enhance reasoning support by @ysfscream in #1907

Full Changelog: v1.11.1...v1.12.0-beta.1

v1.11.1

13 Dec 08:26
Compare
Choose a tag to compare

Release Note πŸŽ‰

πŸ“ˆ Enhanced visualization capabilities, improved stability, and ongoing refactoring towards 2.0 ➑️

Features 🌈

  • Desktop: Support manual sync from the connection list to the Topic Tree
  • Desktop: Add traffic rate monitoring support with real-time packet synchronization
  • Desktop: Show MQTT properties component on Topic Tree
  • Desktop: Add connection selector when left list is hidden
  • CLI: Add line mode option support

Improvements πŸ’«

  • Desktop: Add rate limiting for message send button
  • Desktop: Move traffic monitor to Viewer for better organization
  • CLI: Support custom client ID for bench and simulate commands
  • CLI: Add exit tips for connections

Fixes πŸ› 

  • Desktop: Fix message render loss issues
  • Desktop: Fix tooltip overflow in the Tree Visual component
  • Desktop: Fix unread message count initialization issue
  • Desktop: Optimize topic tree scrollbar corner style
  • Desktop: Optimize topic tooltip display timing
  • CLI: Fix issues with receiving certain binary file types
  • CLI: Fix multiple lines of publishing support on the pipeline
  • CLI: Fix option configuration override issue
  • CLI: Move @faker-js/faker to dependencies

Preview πŸ–ΌοΈ

image

What's Changed ♻️

New Contributors

Full Changelog: v1.11.0...v1.11.1

v1.11.0

22 Oct 10:19
Compare
Choose a tag to compare

Release Note πŸŽ‰

🌳 Introducing Topic Tree visualization - A new way to organize and visualize your MQTT topics hierarchically, making managing and monitoring your message flows easier.

πŸ“Š Added Avro Schema and Message Pack support, bringing more efficient ways to handle complex data with MQTTX.

Features 🌈

Note: Topic Tree visualization is currently in Beta. You may encounter some instability or incomplete features. We appreciate your feedback to help us improve this functionality.

  • Desktop: Topic Tree visualization
  • Desktop: Message Pack format support
  • Desktop: Avro data format support
  • Desktop: Ignore QoS 0 messages option
  • CLI: Message Pack format support
  • CLI: Avro Schema support
  • CLI: Custom WebSocket headers support
  • Desktop, CLI: Allow empty client ID

Improvements πŸ’«

  • Desktop: Enhanced MQTT wildcard topic matching for '#'.
  • Desktop: Better Avro format user experience
  • Desktop: Session expiry now defaults to 7200
  • Desktop: Synchronization between topic tree and massage table
  • Desktop: Persistence for topic tree data
  • CLI: Optimized configuration loading logic
  • CLI: Using built-in fetch instead of Axios
  • CLI: MQTT version notation changed from 5 to 5.0
  • Desktop, CLI, Web: Added .nvmrc file for Node.js version specification
  • Copilot: Changed to GPT-4o as the default model

Fixes πŸ› 

  • Desktop: Fixed connection name style issue
  • Desktop: Improved handling of '#' wildcard in topic filtering
  • Desktop: Enhanced file extension handling in scripts
  • Desktop: Fixed typos in various places
  • CLI: Removed bench sub-topics log

Preview πŸ–ΌοΈ

The data display comes from the public MQTT Broker: broker.emqx.io.

image image

What's Changed

New Contributors

Full Changelog: v1.10.1...v1.11.0

v1.10.1

16 Jul 06:40
Compare
Choose a tag to compare

Release Note πŸŽ‰

⏬ You can now install MQTTX CLI with one click through the Desktop.

Features 🌈

Improvements πŸ’«

  • Desktop:
    • Improved Desktop Backup Import
    • Show load data errors
    • Support rebuilding database when loading connection error
  • CLI:
    • Highlight subscription info on sub-output

Fixes πŸ› 

  • Desktop:
    • Fix issue with resubscribing
  • CLI:
    • Correct data conversion for publishing messages with format
  • Web:
    • Disable the WS protocol in the online version
    • Update migration announcement link
    • Update GTM configuration
    • Update online usage link

Preview πŸ–ΌοΈ

image

What's Changed

New Contributors

Full Changelog: v1.10.0...v1.10.1

v1.10.0

07 Jun 06:46
Compare
Choose a tag to compare

Release Note πŸŽ‰

πŸš€ This release introduces multiple enhancements, new features, and critical fixes across Desktop, CLI, and Web platforms.

Features 🌈

  • Desktop:
    • Added a database reset page to fix blank screens caused by corrupted files.
    • Added auto resubscription tips on the subscription dialog.
    • Handle large data in messages.
    • GPT-4o support for Copilot.
  • CLI:
    • Support for reading and writing messages from/to files.
    • Added delimiter option for sub-file write.
    • Bench pub supports split file content.
    • Support for text output.
    • Added support for init and load config file.
    • Config support for max reconnect times.
    • Improved check update with Ora.
  • Web:
    • Online address migration to β†’ http://mqtt-client.emqx.com/
    • Added support for BASE_URL configuration via env file.
    • Supported clearing historical data.
    • Data export and import features.

Improvements πŸ’«

  • Desktop:
  • CLI:
    • Improved logging format.
    • Upgraded node version to 18.
    • Refactored configs to options.
    • Grayed out output meta info.
    • Improved bench sub logs.
  • Web:
    • Added a Docker local deployment guide.
    • Modified web deploy configuration.
  • Desktop, CLI, Web:

Fixes πŸ› 

  • Desktop:
    • Fixed the bug of topic filtering.
    • Fixed some TypeScript errors.
    • Shared one message event.
    • Removed useless i18n.
  • CLI:
    • Fixed options handler for file write.
    • Fixed split option bugs and set a default value.
    • Fixed display issue with a split default value.
    • Fixed bench sub duplicate logs.
    • Fixed wrong prompt type on error.
    • Fixed sub-error logic with multiple topics.

Breaking Changes ⚠️

  • CLI: command changes: config -> options
Old Command New Command
mqttx conn -h broker.emqx.io -p 1883 --save mqttx conn -h broker.emqx.io -p 1883 --save-options
mqttx conn --config /Users/mqttx-cli-config.json mqttx conn --load-options /Users/mqttx-cli-options.json

Preview πŸ–ΌοΈ

Screen Recording 2024-05-22 at 16 35 41

What's Changed

New Contributors

Full Changelog: v1.9.10...v1.10.0

v1.9.10

03 Apr 07:49
Compare
Choose a tag to compare

Release Note πŸŽ‰

🚨 Important Upgrade Notice: Faker v8 Upgrade with Breaking Changes

Before upgrading to 1.9.10, note that it has to break changes with faker.js. Scripts using simulate may need modifications. For adaptation details, refer to the Faker.js Upgrade Guide.

Features 🌈

  • CLI: Added a message limit option to the simulate command.
  • Desktop,Web:
    • Remember the selected encode/decode type.
    • Added a save button for new or edit connections.
  • Desktop,CLI,Web
    • Display the reason and code for disconnection and subscription failure.

Improvements πŸ’«

  • CLI: Display enhancements for the sub command, including from topic and QoS.

Fixes πŸ› 

  • CLI: Fixed format of help information description.
  • Desktop,Web: Fixed validation when subscribing to multiple topics.

Preview πŸ–ΌοΈ

image

What's Changed

New Contributors

Full Changelog: v1.9.9...v1.9.10