Skip to content

Commit 9948d91

Browse files
kumaraksh1root
andauthored
Add Support for NODE|20.11.0 and NODE|18.19.0 (#2338)
* Add support for NODE|18.19.0 and NODE|20.11.0 * update tag * fix the patch version * update base tag * add apt-utils package --------- Co-authored-by: root <[email protected]>
1 parent b73f6e4 commit 9948d91

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

build/__nodeVersions.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.
22

3-
NODE_RUNTIME_BASE_TAG='20231025.7'
3+
NODE_RUNTIME_BASE_TAG='20240116.2'
44
YARN_VERSION='1.22.15'
55
YARN_MINOR_VERSION='1.17'
66
YARN_MAJOR_VERSION='1'
@@ -10,8 +10,8 @@ NODE10_VERSION='10.23.0'
1010
NODE12_VERSION='12.22.12'
1111
NODE14_VERSION='14.21.3'
1212
NODE16_VERSION='16.20.2'
13-
NODE18_VERSION='18.17.1'
14-
NODE20_VERSION='20.9.0'
13+
NODE18_VERSION='18.19.0'
14+
NODE20_VERSION='20.11.0'
1515
NODE_APP_INSIGHTS_SDK_VERSION='1.8.7'
1616
PM2_VERSION='4.5.6'
1717
NPM_VERSION='9.6.4'

build/constants.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@
305305
directory: src/startupscriptgenerator/src/common/consts
306306
- name: node-versions
307307
constants:
308-
node-runtime-base-tag: 20231025.7
308+
node-runtime-base-tag: 20240116.2
309309
yarn-version: 1.22.15
310310
yarn-minor-version: 1.17
311311
yarn-major-version: 1
@@ -315,8 +315,8 @@
315315
node12-version: 12.22.12
316316
node14-version: 14.21.3
317317
node16-version: 16.20.2
318-
node18-version: 18.17.1
319-
node20-version: 20.9.0
318+
node18-version: 18.19.0
319+
node20-version: 20.11.0
320320
node-app-insights-sdk-version: 1.8.7
321321
pm2-version: 4.5.6
322322
npm-version: 9.6.4

doc/supportedPlatformVersions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,7 @@
558558
### bookworm
559559

560560
- 20.9.0
561+
- 20.11.0
561562

562563
### bullseye
563564

@@ -603,7 +604,9 @@
603604
- 18.16.0
604605
- 18.16.1
605606
- 18.17.1
607+
- 18.19.0
606608
- 20.9.0
609+
- 20.11.0
607610

608611
### buster
609612

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
20.9.0
1+
20.9.0
2+
20.11.0

platforms/nodejs/versions/bullseye/versionsToBuild.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,7 @@
4343
18.16.0
4444
18.16.1
4545
18.17.1
46+
18.19.0
4647

47-
20.9.0
48+
20.9.0
49+
20.11.0

src/BuildScriptGenerator/Node/NodeVersions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
66
{
77
public static class NodeVersions
88
{
9-
public const string NodeRuntimeBaseTag = "20231025.7";
9+
public const string NodeRuntimeBaseTag = "20240116.2";
1010
public const string YarnVersion = "1.22.15";
1111
public const string YarnMinorVersion = "1.17";
1212
public const string YarnMajorVersion = "1";
@@ -16,8 +16,8 @@ public static class NodeVersions
1616
public const string Node12Version = "12.22.12";
1717
public const string Node14Version = "14.21.3";
1818
public const string Node16Version = "16.20.2";
19-
public const string Node18Version = "18.17.1";
20-
public const string Node20Version = "20.9.0";
19+
public const string Node18Version = "18.19.0";
20+
public const string Node20Version = "20.11.0";
2121
public const string NodeAppInsightsSdkVersion = "1.8.7";
2222
public const string Pm2Version = "4.5.6";
2323
public const string NpmVersion = "9.6.4";

0 commit comments

Comments
 (0)