Skip to content

Commit 5ebfb81

Browse files
Merge pull request #280777 from ggailey777/patch-3
[Functions] Clarify the `FUNCTIONS_EXTENSION_VERSION` setting
2 parents 86510ec + e87b86a commit 5ebfb81

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/azure-functions/functions-app-settings.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ The value is set by the runtime based on the language stack and deployment statu
385385

386386
## FUNCTIONS\_EXTENSION\_VERSION
387387

388-
The version of the Functions runtime that hosts your function app. A tilde (`~`) with major version means use the latest version of that major version (for example, `~3`). When new versions for the same major version are available, they're automatically installed in the function app. To pin the app to a specific version, use the full version number (for example, `3.0.12345`). Default is `~3`. A value of `~1` pins your app to version 1.x of the runtime. For more information, see [Azure Functions runtime versions overview](functions-versions.md). A value of `~4` means that your app runs on version 4.x of the runtime.
388+
The version of the Functions runtime that hosts your function app. A tilde (`~`) with major version means use the latest version of that major version (for example, `~4`). When new minor versions of the same major version are available, they're automatically installed in the function app.
389389

390390
|Key|Sample value|
391391
|---|------------|
@@ -396,10 +396,11 @@ The following major runtime version values are supported:
396396
| Value | Runtime target | Comment |
397397
| ------ | -------- | --- |
398398
| `~4` | 4.x | Recommended |
399-
| `~3` | 3.x | No longer supported |
400-
| `~2` | 2.x | No longer supported |
401399
| `~1` | 1.x | Support ends September 14, 2026 |
402400

401+
A value of `~4` means that your app runs on version 4.x of the runtime. A value of `~1` pins your app to version 1.x of the runtime. Runtime versions 2.x and 3.x are no longer supported. For more information, see [Azure Functions runtime versions overview](functions-versions.md).
402+
If requested by support to pin your app to a specific minor version, use the full version number (for example, `4.0.12345`). For more information, see [How to target Azure Functions runtime versions](set-runtime-version.md).
403+
403404
## FUNCTIONS\_INPROC\_NET8\_ENABLED
404405

405406
Indicates whether to an app can use .NET 8 on the in-process model. To use .NET 8 on the in-process model, this value must be set to `1`. See [Updating to target .NET 8](./functions-dotnet-class-library.md#updating-to-target-net-8) for complete instructions, including other required configuration values.

0 commit comments

Comments
 (0)