Skip to content

Commit b75c97e

Browse files
committed
update docs to reference bundles v4
1 parent 60bdeca commit b75c97e

File tree

5 files changed

+25
-8
lines changed

5 files changed

+25
-8
lines changed

articles/azure-functions/functions-bindings-register.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The following table lists the currently available version ranges of the default
4545

4646

4747
> [!NOTE]
48-
> Even though host.json supports custom ranges for `version`, you should use a version range value from this table, such as `[3.3.0, 4.0.0)`.
48+
> Even though host.json supports custom ranges for `version`, you should use a version range value from this table, such as `[4.0.0, 5.0.0)`.
4949
5050
## Explicitly install extensions
5151

articles/azure-functions/functions-host-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The following sample *host.json* file for version 2.x+ has all possible options
5252
},
5353
"extensionBundle": {
5454
"id": "Microsoft.Azure.Functions.ExtensionBundle",
55-
"version": "[1.*, 2.0.0)"
55+
"version": "[4.0.0, 5.0.0)"
5656
},
5757
"functions": [ "QueueProcessor", "GitHubWebHook" ],
5858
"functionTimeout": "00:05:00",

articles/azure-functions/functions-versions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.custom:
77
- devx-track-js
88
- devx-track-python
99
- ignite-2023
10-
ms.date: 09/01/2023
10+
ms.date: 02/26/2024
1111
zone_pivot_groups: programming-languages-set-functions
1212
---
1313

@@ -82,7 +82,7 @@ For C# script, update the extension bundle reference in the host.json as follows
8282
"version": "2.0",
8383
"extensionBundle": {
8484
"id": "Microsoft.Azure.Functions.ExtensionBundle",
85-
"version": "[2.*, 3.0.0)"
85+
"version": "[4.0.0, 5.0.0)"
8686
}
8787
}
8888
```
@@ -98,7 +98,7 @@ If you receive a warning about your extension bundle version not meeting a minim
9898
"version": "2.0",
9999
"extensionBundle": {
100100
"id": "Microsoft.Azure.Functions.ExtensionBundle",
101-
"version": "[2.*, 3.0.0)"
101+
"version": "[4.0.0, 5.0.0)"
102102
}
103103
}
104104
```
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
author: lilyjma
3+
ms.service: azure-functions
4+
ms.topic: include
5+
ms.date: 02/24/2024
6+
ms.author: jiayma
7+
---
8+
9+
```json
10+
{
11+
"version": "2.0",
12+
"extensionBundle": {
13+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
14+
"version": "[4.0.0, 5.0.0)"
15+
}
16+
}
17+
```

includes/functions-extension-bundles-json.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
author: ggailey777
33
ms.service: azure-functions
44
ms.topic: include
5-
ms.date: 07/11/2023
5+
ms.date: 02/26/2024
66
ms.author: glenga
77
---
88

9-
[!INCLUDE [functions-extension-bundles-json-v3](./functions-extension-bundles-json-v3.md)]
9+
[!INCLUDE [functions-extension-bundles-json-v4](./functions-extension-bundles-json-v4.md)]
1010

1111
The following properties are available in `extensionBundle`:
1212

1313
| Property | Description |
1414
| -------- | ----------- |
1515
| **`id`** | The namespace for Microsoft Azure Functions extension bundles. |
16-
| **`version`** | The version range of the bundle to install. The Functions runtime always picks the maximum permissible version defined by the version range or interval. For example, a `version` value range of `[3.3.0, 4.0.0)` allows all bundle versions from 3.3.0 up to but not including 4.0.0. For more information, see the [interval notation for specifying version ranges](/nuget/reference/package-versioning#version-ranges). |
16+
| **`version`** | The version range of the bundle to install. The Functions runtime always picks the maximum permissible version defined by the version range or interval. For example, a `version` value range of `[4.0.0, 5.0.0)` allows all bundle versions from 4.0.0 up to but not including 5.0.0. For more information, see the [interval notation for specifying version ranges](/nuget/reference/package-versioning#version-ranges). |

0 commit comments

Comments
 (0)