Skip to content

Commit 86f8667

Browse files
Merge pull request #304140 from ggailey777/madhura-node
[Functions] Madhura PRs for Node and Python version info
2 parents 9c638c0 + 1d2662d commit 86f8667

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
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

includes/functions-supported-languages.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The following table shows the language versions supported for Node.js functions.
9292

9393
| Supported version | Support level | Expected end-of-support date |
9494
| ---- | ---- |--- |
95-
| [Node.js 22](https://endoflife.date/nodejs) | GA (Linux) <br> Preview (Windows) | April 30, 2027 |
95+
| [Node.js 22](https://endoflife.date/nodejs) | GA | April 30, 2027 |
9696
| [Node.js 20](https://endoflife.date/nodejs) | GA | April 30, 2026 |
9797

9898
TypeScript is supported through transpiling to JavaScript. For more information, see the [Azure Functions Node.js developer guide](../articles/azure-functions/functions-reference-node.md#supported-versions).
@@ -117,9 +117,6 @@ The following table shows the language versions supported for Python functions.
117117
| Python 3.10 | GA | October 2026 |
118118
| Python 3.9 | GA | October 2025 |
119119

120-
> [!IMPORTANT]
121-
> Python 3.13 is currently supported on the Flex Consumption, Premium, and Dedicated plans. Python 3.13 support on the Consumption plan is pending.
122-
123120
For more information, see [Azure Functions Python developer guide](../articles/azure-functions/functions-reference-python.md).
124121
::: zone-end
125122

0 commit comments

Comments
 (0)