Skip to content

Commit 48f04ca

Browse files
Merge pull request #303910 from ggailey777/patch-4
[Functions][Bundles] Return version table, minus the date column
2 parents 1d1b9ab + 99331d6 commit 48f04ca

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

articles/azure-functions/extension-bundles.md

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure Functions Extension Bundles
33
description: Learn how to use extension bundles to make the correct set of Azure Functions trigger and binding extensions available in your non-.NET function code.
44
ms.topic: concept-article
5-
ms.date: 07/25/2025
5+
ms.date: 08/06/2025
66

77
#Customer intent: I want to understand how to correctly install extension bundles so that the functionality implemented in the extensions is available to my functions in my preferred development language.
88
---
@@ -25,18 +25,20 @@ You define an extension bundle reference in the `host.json` project file by addi
2525

2626
[!INCLUDE [functions-extension-bundles-json](../../includes/functions-extension-bundles-json.md)]
2727

28-
<!---## Supported extension bundles
28+
## Supported extension bundles
2929

3030
This table lists all `Microsoft.Azure.Functions.ExtensionBundle` bundle versions and the current [support state](#support-policy):
3131

32-
| Bundle version | Version in host.json | Support state | End-of-support date |
33-
| --- | --- | --- | --- |
34-
| [4.x](https://github.com/Azure/azure-functions-extension-bundles/blob/main/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json) | `[4.0.0, 5.0.0)` | Active | Not yet determined |
35-
| [3.x](https://github.com/Azure/azure-functions-extension-bundles/blob/main-v3/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json) | `[3.3.0, 4.0.0)` | Deprecated | May 30, 2026 |
36-
| [2.x](https://github.com/Azure/azure-functions-extension-bundles/blob/main-v2/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json) | `[2.*, 3.0.0)` | Deprecated | May 30, 2026 |
37-
| [1.x](https://github.com/Azure/azure-functions-extension-bundles/blob/v1.x/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json) | `[1.*, 2.0.0)` | Deprecated | May 30, 2026 |
32+
| Bundle version | Version in host.json | Support state<sup>*</sup> |
33+
| --- | --- | --- |
34+
| [4.x](https://github.com/Azure/azure-functions-extension-bundles/blob/main/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json) | `[4.0.0, 5.0.0)` | Active |
35+
| [3.x](https://github.com/Azure/azure-functions-extension-bundles/blob/main-v3/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json) | `[3.3.0, 4.0.0)` | Deprecated |
36+
| [2.x](https://github.com/Azure/azure-functions-extension-bundles/blob/main-v2/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json) | `[2.*, 3.0.0)` | Deprecated |
37+
| [1.x](https://github.com/Azure/azure-functions-extension-bundles/blob/v1.x/src/Microsoft.Azure.Functions.ExtensionBundle/extensions.json) | `[1.*, 2.0.0)` | Deprecated |
3838

39-
The default extension bundles are defined via version ranges. To see the `extensions.json` definition file that generates the current bundle version for a major extension, select the link in the table.-->
39+
<sup>*</sup> Deprecated bundle versions can use deprecated binding extension versions. For optimal supportability and reliability, you should [upgrade to bundle version 4.x](#upgrade-extension-bundles).
40+
41+
The default extension bundles are defined via version ranges. To see the `extensions.json` definition file that generates the current bundle version for a major extension, select the link in the table.
4042

4143
## Considerations for extension bundles
4244

@@ -50,7 +52,17 @@ Keep these considerations in mind when you work with extension bundles:
5052

5153
It's important to keep your bundle version up-to-date so that your apps can continue to be eligible for new features, security patches, and performance optimizations.
5254

53-
To upgrade your app to the most recent bundle, edit the host.json file in the root of your app project. Replace the value of `extensionBundle.version` with the most recent supported extension bundles version.
55+
To upgrade your app to the most recent bundle, edit the host.json file in the root of your app project. Set the value of `extensionBundle.version` to `[4.x,5.0.0)`, which should look like this in your host.json file:
56+
57+
```json
58+
{
59+
"version": "2.0",
60+
"extensionBundle": {
61+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
62+
"version": "[4.0.0, 5.0.0)"
63+
}
64+
}
65+
```
5466

5567
Keep these considerations in mind when upgrading the extension bundle version used by your app:
5668

0 commit comments

Comments
 (0)