Skip to content

Commit 3cbc737

Browse files
Merge pull request #250313 from lilyjma/patch-15
Update durable-functions-versions.md
2 parents 2f2af98 + db4e504 commit 3cbc737

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

articles/azure-functions/durable/durable-functions-versions.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,32 +50,31 @@ Durable Functions 2.x is available starting in version 2.x of the [Azure Functio
5050

5151
Python support in Durable Functions requires Durable Functions 2.x or greater.
5252

53-
To update the extension bundle version in your project, open host.json and update the `extensionBundle` section to use version 3.x (`[3.*, 4.0.0)`).
53+
To update the extension bundle version in your project, open host.json and update the `extensionBundle` section to use version 4.x (`[4.*, 5.0.0)`).
5454

5555
```json
5656
{
5757
"version": "2.0",
5858
"extensionBundle": {
5959
"id": "Microsoft.Azure.Functions.ExtensionBundle",
60-
"version": "[3.*, 4.0.0)"
60+
"version": "[4.*, 5.0.0)"
6161
}
6262
}
6363
```
6464

6565
> [!NOTE]
6666
> If Visual Studio Code is not displaying the correct templates after you change the extension bundle version, reload the window by running the *Developer: Reload Window* command (<kbd>Ctrl+R</kbd> on Windows and Linux, <kbd>Command+R</kbd> on macOS).
6767
68-
#### Java (preview)
69-
70-
Durable Functions 2.x is available starting in version 4.x of the [Azure Functions extension bundle](../functions-bindings-register.md#extension-bundles). You must use the Azure Functions 3.0 runtime or greater to execute Java functions.
68+
#### Java
7169

72-
To update the extension bundle version in your project, open host.json and update the `extensionBundle` section to use version 4.x (`[4.*, 5.0.0)`). Because Java support is currently in preview, you must also use the `Microsoft.Azure.Functions.ExtensionBundle.Preview` bundle, which is different from product-ready bundles.
70+
Durable Functions 2.x is available starting in version 4.x of the [Azure Functions extension bundle](../functions-bindings-register.md#extension-bundles). You must use the Azure Functions 4.0 runtime to execute Java functions.
7371

72+
To update the extension bundle version in your project, open host.json and update the `extensionBundle` section to use version 4.x (`[4.*, 5.0.0)`).
7473
```json
7574
{
7675
"version": "2.0",
7776
"extensionBundle": {
78-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
77+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
7978
"version": "[4.*, 5.0.0)"
8079
}
8180
}

0 commit comments

Comments
 (0)