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 <root@Akshay-D22.fareast.corp.microsoft.com>
This commit is contained in:
kumaraksh1 2024-01-20 15:05:20 +05:30 коммит произвёл GitHub
Родитель b73f6e4985
Коммит 9948d91c8c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
6 изменённых файлов: 17 добавлений и 11 удалений

Просмотреть файл

@ -1,6 +1,6 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.
NODE_RUNTIME_BASE_TAG='20231025.7'
NODE_RUNTIME_BASE_TAG='20240116.2'
YARN_VERSION='1.22.15'
YARN_MINOR_VERSION='1.17'
YARN_MAJOR_VERSION='1'
@ -10,8 +10,8 @@ NODE10_VERSION='10.23.0'
NODE12_VERSION='12.22.12'
NODE14_VERSION='14.21.3'
NODE16_VERSION='16.20.2'
NODE18_VERSION='18.17.1'
NODE20_VERSION='20.9.0'
NODE18_VERSION='18.19.0'
NODE20_VERSION='20.11.0'
NODE_APP_INSIGHTS_SDK_VERSION='1.8.7'
PM2_VERSION='4.5.6'
NPM_VERSION='9.6.4'

Просмотреть файл

@ -305,7 +305,7 @@
directory: src/startupscriptgenerator/src/common/consts
- name: node-versions
constants:
node-runtime-base-tag: 20231025.7
node-runtime-base-tag: 20240116.2
yarn-version: 1.22.15
yarn-minor-version: 1.17
yarn-major-version: 1
@ -315,8 +315,8 @@
node12-version: 12.22.12
node14-version: 14.21.3
node16-version: 16.20.2
node18-version: 18.17.1
node20-version: 20.9.0
node18-version: 18.19.0
node20-version: 20.11.0
node-app-insights-sdk-version: 1.8.7
pm2-version: 4.5.6
npm-version: 9.6.4

Просмотреть файл

@ -558,6 +558,7 @@
### bookworm
- 20.9.0
- 20.11.0
### bullseye
@ -603,7 +604,9 @@
- 18.16.0
- 18.16.1
- 18.17.1
- 18.19.0
- 20.9.0
- 20.11.0
### buster

Просмотреть файл

@ -1 +1,2 @@
20.9.0
20.9.0
20.11.0

Просмотреть файл

@ -43,5 +43,7 @@
18.16.0
18.16.1
18.17.1
18.19.0
20.9.0
20.9.0
20.11.0

Просмотреть файл

@ -6,7 +6,7 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
{
public static class NodeVersions
{
public const string NodeRuntimeBaseTag = "20231025.7";
public const string NodeRuntimeBaseTag = "20240116.2";
public const string YarnVersion = "1.22.15";
public const string YarnMinorVersion = "1.17";
public const string YarnMajorVersion = "1";
@ -16,8 +16,8 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
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 Node20Version = "20.9.0";
public const string Node18Version = "18.19.0";
public const string Node20Version = "20.11.0";
public const string NodeAppInsightsSdkVersion = "1.8.7";
public const string Pm2Version = "4.5.6";
public const string NpmVersion = "9.6.4";