Add support for Node 16.20.2 and 18.17.1 (#2116)

This commit is contained in:
Cormac McCarthy 2023-08-30 15:10:23 -07:00 коммит произвёл GitHub
Родитель 5bd3088141
Коммит 06110da712
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
10 изменённых файлов: 21 добавлений и 10 удалений

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

@ -1,6 +1,6 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.
NODE_RUNTIME_BASE_TAG='20230707.2'
NODE_RUNTIME_BASE_TAG='20230824.3'
YARN_VERSION='1.22.15'
YARN_MINOR_VERSION='1.17'
YARN_MAJOR_VERSION='1'
@ -9,8 +9,8 @@ NODE8_VERSION='8.17.0'
NODE10_VERSION='10.23.0'
NODE12_VERSION='12.22.12'
NODE14_VERSION='14.21.3'
NODE16_VERSION='16.20.1'
NODE18_VERSION='18.16.1'
NODE16_VERSION='16.20.2'
NODE18_VERSION='18.17.1'
NODE_APP_INSIGHTS_SDK_VERSION='1.8.7'
PM2_VERSION='4.5.6'
NPM_VERSION='9.6.4'

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

@ -281,7 +281,7 @@
directory: src/startupscriptgenerator/src/common/consts
- name: node-versions
constants:
node-runtime-base-tag: 20230707.2
node-runtime-base-tag: 20230824.3
yarn-version: 1.22.15
yarn-minor-version: 1.17
yarn-major-version: 1
@ -290,8 +290,8 @@
node10-version: 10.23.0
node12-version: 12.22.12
node14-version: 14.21.3
node16-version: 16.20.1
node18-version: 18.16.1
node16-version: 16.20.2
node18-version: 18.17.1
node-app-insights-sdk-version: 1.8.7
pm2-version: 4.5.6
npm-version: 9.6.4

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

@ -528,6 +528,7 @@
- 16.19.0
- 16.20.0
- 16.20.1
- 16.20.2
- 18.0.0
- 18.1.0
- 18.2.0
@ -537,6 +538,7 @@
- 18.15.0
- 18.16.0
- 18.16.1
- 18.17.1
### buster
@ -579,6 +581,7 @@
- 16.19.0
- 16.20.0
- 16.20.1
- 16.20.2
- 17.0.1
- 17.1.0
- 17.2.0
@ -628,6 +631,7 @@
- 16.19.0
- 16.20.0
- 16.20.1
- 16.20.2
- 17.0.1
- 17.1.0
- 17.2.0

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

@ -20,6 +20,7 @@ ARG DEBIAN_FLAVOR
ENV NODE_VERSION ${NODE14_VERSION}
ENV NPM_CONFIG_LOGLEVEL info
ARG BUILD_DIR=/tmp/oryx/build
ARG IMAGES_DIR=/tmp/oryx/images
RUN --mount=type=secret,id=oryx_sdk_storage_account_access_token \
set -e \

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

@ -20,6 +20,7 @@ ARG DEBIAN_FLAVOR
ENV NODE_VERSION ${NODE16_VERSION}
ENV NPM_CONFIG_LOGLEVEL info
ARG BUILD_DIR=/tmp/oryx/build
ARG IMAGES_DIR=/tmp/oryx/images
RUN --mount=type=secret,id=oryx_sdk_storage_account_access_token \
set -e \

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

@ -19,6 +19,7 @@ ARG NODE18_VERSION
ARG DEBIAN_FLAVOR
ENV NODE_VERSION ${NODE18_VERSION}
ENV NPM_CONFIG_LOGLEVEL info
ARG BUILD_DIR=/tmp/oryx/build
ARG IMAGES_DIR=/tmp/oryx/images
RUN --mount=type=secret,id=oryx_sdk_storage_account_access_token \
set -e \

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

@ -31,6 +31,7 @@
16.19.0
16.20.0
16.20.1
16.20.2
18.0.0
18.1.0
@ -40,4 +41,5 @@
18.14.0
18.15.0
18.16.0
18.16.1
18.16.1
18.17.1

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

@ -41,6 +41,7 @@
16.19.0
16.20.0
16.20.1
16.20.2
17.0.1
17.1.0

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

@ -41,6 +41,7 @@
16.19.0
16.20.0
16.20.1
16.20.2
17.0.1
17.1.0

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

@ -6,7 +6,7 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
{
public static class NodeVersions
{
public const string NodeRuntimeBaseTag = "20230707.2";
public const string NodeRuntimeBaseTag = "20230824.3";
public const string YarnVersion = "1.22.15";
public const string YarnMinorVersion = "1.17";
public const string YarnMajorVersion = "1";
@ -15,8 +15,8 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
public const string Node10Version = "10.23.0";
public const string Node12Version = "12.22.12";
public const string Node14Version = "14.21.3";
public const string Node16Version = "16.20.1";
public const string Node18Version = "18.16.1";
public const string Node16Version = "16.20.2";
public const string Node18Version = "18.17.1";
public const string NodeAppInsightsSdkVersion = "1.8.7";
public const string Pm2Version = "4.5.6";
public const string NpmVersion = "9.6.4";