Skip to content

Commit 99331d6

Browse files
authored
Fix table and remove include
1 parent c6fb394 commit 99331d6

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

articles/azure-functions/extension-bundles.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,12 @@ You define an extension bundle reference in the `host.json` project file by addi
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-
3532
| Bundle version | Version in host.json | Support state<sup>*</sup> |
3633
| --- | --- | --- |
37-
| [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 |-->
38-
| [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 |-->
39-
| [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 |-->
40-
| [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 |-->
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 |
4138

4239
<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).
4340

@@ -57,7 +54,15 @@ It's important to keep your bundle version up-to-date so that your apps can cont
5754

5855
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:
5956

60-
[!INCLUDE [functions-extension-bundles-json](../../includes/functions-extension-bundles-json.md)]
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+
```
6166

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

0 commit comments

Comments
 (0)