Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion eng/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 0.9.2 (2025-10-15)

### Fixed

Comment thread
vcolin7 marked this conversation as resolved.
- Fixed retained-buffer leaks across services (Kusto, EventGrid, AppLens, Speech, Cosmos, Foundry, NetworkResourceProvider) and tool loaders (BaseToolLoader, ServerToolLoader, NamespaceToolLoader, SingleProxyToolLoader) by disposing `JsonDocument`/`HttpResponseMessage` instances and cloning returned `JsonElements`. ([#817](https://github.com/microsoft/mcp/pull/817))

## 0.9.1 (2025-10-14)

### Fixed
Expand All @@ -8,7 +14,7 @@

### Changed

- MCP server start options are now included in logs. ([#794](https://github.com/microsoft/mcp/pull/794))
- MCP server start options are now included in telemetry logs. ([#794](https://github.com/microsoft/mcp/pull/794))
- Updated the description of the following Workbook commands to decrease ambiguity and increase selection accuracy by LLMs: [[#787](https://github.com/microsoft/mcp/pull/787)]
- `azmcp_workbook_show`
- `azmcp_workbook_update`
Expand Down
15 changes: 10 additions & 5 deletions servers/Azure.Mcp.Server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,26 @@

The Azure MCP Server updates automatically by default whenever a new release comes out 🚀. We ship updates twice a week on Tuesdays and Thursdays 😊

## 0.9.2 (Unreleased)
## 0.9.3 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
- fix `azmcp_sql_db_rename`'s new database name binding bug [[#615](https://github.com/microsoft/mcp/issues/615)]
- Fixed retained-buffer leaks across services (Kusto, EventGrid, AppLens, Speech, Cosmos, Foundry, NetworkResourceProvider) and tool loaders (BaseToolLoader, ServerToolLoader, NamespaceToolLoader, SingleProxyToolLoader) by disposing JsonDocument/HttpResponseMessage instances and cloning returned JsonElements. ([#817](https://github.com/microsoft/mcp/pull/817))

### Other Changes

- Updated the description of the following Communications commands to decrease ambiguity and increase selection accuracy by LLMs: [[#804](https://github.com/microsoft/mcp/pull/804)]
- `azmcp_communication_email_send`
- `azmcp_communication_sms_send`

## 0.9.2 (2025-10-15)

### Bugs Fixed

- Fixed retained-buffer leaks across services (Kusto, EventGrid, AppLens, Speech, Cosmos, Foundry, NetworkResourceProvider) and tool loaders (BaseToolLoader, ServerToolLoader, NamespaceToolLoader, SingleProxyToolLoader) by disposing `JsonDocument`/`HttpResponseMessage` instances and cloning returned `JsonElements`. ([#817](https://github.com/microsoft/mcp/pull/817))

## 0.9.1 (2025-10-14)

### Bugs Fixed
Expand All @@ -25,7 +30,7 @@ The Azure MCP Server updates automatically by default whenever a new release com

### Other Changes

- MCP server start options are now included in logs. ([#794](https://github.com/microsoft/mcp/pull/794))
- MCP server start options are now included in telemetry logs. ([#794](https://github.com/microsoft/mcp/pull/794))
- Updated the description of the following Workbook commands to decrease ambiguity and increase selection accuracy by LLMs: [[#787](https://github.com/microsoft/mcp/pull/787)]
- `azmcp_workbook_show`
- `azmcp_workbook_update`
Expand Down Expand Up @@ -1069,4 +1074,4 @@ AOT- Added a verb to the namespace name for bestpractices [[#109](https://github
- See https://github.com/Azure/azure-mcp/releases/tag/0.0.10

### Other Changes
- See blog post for details https://devblogs.microsoft.com/azure-sdk/introducing-the-azure-mcp-server/
- See blog post for details https://devblogs.microsoft.com/azure-sdk/introducing-the-azure-mcp-server/
2 changes: 1 addition & 1 deletion servers/Azure.Mcp.Server/src/Azure.Mcp.Server.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>0.9.2</Version>
<Version>0.9.3</Version>
<CliName>azmcp</CliName>
<AssemblyTitle>Azure MCP Server</AssemblyTitle>
<Description>Azure MCP Server - Model Context Protocol implementation for Azure</Description>
Expand Down