Skip to content

Releases: thunderclient/thunder-client-support

v2.38.3

29 Oct 18:18
092b1bd

Choose a tag to compare

New Features

  • Added support for importing Postman Global Environment

v2.38.2

21 Oct 20:15
092b1bd

Choose a tag to compare

Bug Fixes

  • Fixed collection setting view issue #1724

v2.38.1

20 Oct 02:30
092b1bd

Choose a tag to compare

AI Feature Update

  • We are temporarily disabling AI features based on feedback. We will provide an update soon.

v2.38.0

17 Oct 06:34
092b1bd

Choose a tag to compare

Generative AI (Beta)

We’re excited to announce the Generative AI feature — now available in beta!
You can use AI prompts to automatically generate test scripts, helping you speed up your testing workflow and reduce manual effort. #492

test-scripts-ai

v2.37.8

23 Sep 18:26
092b1bd

Choose a tag to compare

New Features

  • Improved performance when loading secrets from Azure Key Vault and AWS Secrets Manager.

v2.37.7

04 Sep 17:22
092b1bd

Choose a tag to compare

New Features

  • Added support for importing Hoppscotch collections

v2.37.0

27 Jul 08:25
35d1106

Choose a tag to compare

New Features

  • Launched MCP Server to support AI integration #1696
  • Added support for testing gRPC Requests (Beta feature) #12
  • Support to import Insomnia v5 exports #1698
  • HTTP method icons are now shown in open tabs for better clarity #1120

Bug Fixes

  • Docs Tab: documentation with markdown support #1594
  • v2.37.4: FIX - NTLM doesn't work #1502, #1514, #1490

Thunder Client MCP Server

The Thunder Client MCP server enables customers to integrate with AI tools to create requests and collections. It is compatible with various AI development environments, including Cline, Continue.dev, and GitHub Copilot.

Use Cases:

  • Use AI to analyze your current project and automatically generate API requests in Thunder Client, with the appropriate collection and folder created as needed.
  • Add new requests to a specific collection in Thunder Client.
  • Dynamically create a request, including the body and headers, using an AI prompt.

Open Source

gPRC Request (Beta)

  • You can now test gRPC requests using the Thunder Client extension. This feature is currently in beta.
grpc-request

Method Icons for Open Tabs

  • To enhance usability, Thunder Client now displays HTTP method icons (e.g., GET, POST, PUT) in open tabs.
method-icon-for-tabs

v2.36.0

14 Jul 11:35
35d1106

Choose a tag to compare

Changes to the Free Version Starting August 3rd, 2025

  • The free version will no longer support collections starting August 3rd, 2025. A paid plan will be required to use the collections feature.

v2.35.3

01 Jul 17:12
35d1106

Choose a tag to compare

New Features

  • Override global test definition #1697

v2.35.2

16 Jun 10:28
35d1106

Choose a tag to compare

New Features

  • Option to use draft 2019-09 in Ajv #1685
  • Alternative to pm.variables.replaceIn() #1695

Example to use draft 2019

var Ajv2019 = require("ajv/dist/2019");
const ajv = new Ajv2019()

Replace Variables in pre-req script

const finalUrl = tc.replaceVars(tc.request.url);
 
console.log(finalUrl);