Skip to content

Commit def32d4

Browse files
committed
Merge remote-tracking branch 'madhura/patch-61' into madhura-node
2 parents c55d309 + e2d891d commit def32d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/functions-reference-node.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The following table shows each version of the Node.js programming model along wi
3434

3535
| [Programming Model Version](https://www.npmjs.com/package/@azure/functions?activeTab=versions) | Support Level | [Functions Runtime Version](./functions-versions.md) | [Node.js Version](https://github.com/nodejs/release#release-schedule) | Description |
3636
|------------------------------------------------------------------------------------------------|---------------|------------------------------------------------------|-----------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
37-
| 4.x | GA | 4.25+ | 20.x, 18.x | Supports a flexible file structure and code-centric approach to triggers and bindings. |
37+
| 4.x | GA | 4.25+ | 22.x 20.x, 18.x | Supports a flexible file structure and code-centric approach to triggers and bindings. |
3838
| 3.x | GA | 4.x | 20.x, 18.x, 16.x, 14.x | Requires a specific file structure with your triggers and bindings declared in a "function.json" file |
3939
| 2.x | n/a | 3.x | 14.x, 12.x, 10.x | Reached end of support on December 13, 2022. See [Functions Versions](./functions-versions.md) for more info. |
4040
| 1.x | n/a | 2.x | 10.x, 8.x | Reached end of support on December 13, 2022. See [Functions Versions](./functions-versions.md) for more info. |
@@ -1866,7 +1866,7 @@ az functionapp config appsettings set --settings WEBSITE_NODE_DEFAULT_VERSION=~
18661866
--name <FUNCTION_APP_NAME> --resource-group <RESOURCE_GROUP_NAME>
18671867
```
18681868

1869-
This sets the [`WEBSITE_NODE_DEFAULT_VERSION` application setting](./functions-app-settings.md#website_node_default_version) the supported LTS version of `~20`.
1869+
This sets the [`WEBSITE_NODE_DEFAULT_VERSION` application setting](./functions-app-settings.md#website_node_default_version) the supported LTS version of `~22`.
18701870

18711871
# [Azure portal](#tab/azure-portal/windows)
18721872

@@ -1879,7 +1879,7 @@ Use the following steps to change the Node.js version:
18791879
Run the Azure CLI [`az functionapp config set`](/cli/azure/functionapp/config#az-functionapp-config-set) command to update the Node.js version for your function app running on Linux:
18801880

18811881
```azurecli-interactive
1882-
az functionapp config set --linux-fx-version "node|20" --name "<FUNCTION_APP_NAME>" \
1882+
az functionapp config set --linux-fx-version "node|22" --name "<FUNCTION_APP_NAME>" \
18831883
--resource-group "<RESOURCE_GROUP_NAME>"
18841884
```
18851885

0 commit comments

Comments
 (0)