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
14 changes: 9 additions & 5 deletions src/schemas/json/host.json
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@
"type": "object",
"properties": {
"extensionBundle": {
"description": "Configuration settings for extension bundle",
"description": "Configuration settings for extension bundle - a predefined set of compatible binding extensions to a function app",
"type": "object",
"properties": {
"id": {
Expand All @@ -627,14 +627,18 @@
"version": {
"description": "The version of the extension bundle.",
"type": "string",
"examples": ["[1.*, 2.0.0)", "[2.*, 3.0.0)"],
"default": "[2.*, 3.0.0)"
"examples": ["[4.*, 5.0.0)"],
"default": "[4.*, 5.0.0)"
}
},
"examples": [
{
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[2.*, 3.0.0)"
"version": "[4.*, 5.0.0)"
},
{
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
"version": "[4.*, 5.0.0)"
}
],
"additionalProperties": false
Expand Down Expand Up @@ -1521,7 +1525,7 @@
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[2.*, 3.0.0)"
"version": "[4.*, 5.0.0)"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion src/test/host/host.v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[1.*, 2.0.0)"
"version": "[4.*, 5.0.0)"
},
"extensions": {
"blobs": {
Expand Down