Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for node.js version 18.18.2 #2201

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion build/constants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@
node12-version: 12.22.12
node14-version: 14.21.3
node16-version: 16.20.2
node18-version: 18.17.1
node18-version: 18.18.2
node-app-insights-sdk-version: 1.8.7
pm2-version: 4.5.6
npm-version: 9.6.4
Expand Down
1 change: 1 addition & 0 deletions doc/supportedPlatformVersions.md
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,7 @@
- 18.16.0
- 18.16.1
- 18.17.1
- 18.18.2

### buster

Expand Down
3 changes: 2 additions & 1 deletion platforms/nodejs/versions/bullseye/versionsToBuild.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@
18.15.0
18.16.0
18.16.1
18.17.1
18.17.1
18.18.2
2 changes: 1 addition & 1 deletion src/BuildScriptGenerator/Node/NodeVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static class NodeVersions
public const string Node12Version = "12.22.12";
public const string Node14Version = "14.21.3";
public const string Node16Version = "16.20.2";
public const string Node18Version = "18.17.1";
public const string Node18Version = "18.18.2";
public const string NodeAppInsightsSdkVersion = "1.8.7";
public const string Pm2Version = "4.5.6";
public const string NpmVersion = "9.6.4";
Expand Down