Update to Node 16 and npm versions (#1181)

* Update to Node 16 and npm versions

* Update yarn version

* Update node runtime base tag

* Remove extra versions
This commit is contained in:
william-msft 2021-12-11 18:53:16 -08:00 коммит произвёл GitHub
Родитель 1bfaa95edd
Коммит 18f5453f9b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 14 добавлений и 12 удалений

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

@ -1,7 +1,7 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.
NODE_RUNTIME_BASE_TAG='20210902.2'
YARN_VERSION='1.22.10'
NODE_RUNTIME_BASE_TAG='20211208.1'
YARN_VERSION='1.22.15'
YARN_MINOR_VERSION='1.17'
YARN_MAJOR_VERSION='1'
NODE6_VERSION='6.17.1'
@ -9,7 +9,7 @@ NODE8_VERSION='8.17.0'
NODE10_VERSION='10.23.0'
NODE12_VERSION='12.22.6'
NODE14_VERSION='14.17.6'
NODE16_VERSION='16.8.0'
NODE16_VERSION='16.13.1'
NODE_APP_INSIGHTS_SDK_VERSION='1.8.7'
PM2_VERSION='4.5.6'
NPM_VERSION='6.14.15'
NPM_VERSION='8.1.2'

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

@ -189,8 +189,8 @@
directory: src/startupscriptgenerator/src/common/consts
- name: node-versions
constants:
node-runtime-base-tag: 20210902.2
yarn-version: 1.22.10
node-runtime-base-tag: 20211208.1
yarn-version: 1.22.15
yarn-minor-version: 1.17
yarn-major-version: 1
node6-version: 6.17.1
@ -198,10 +198,10 @@
node10-version: 10.23.0
node12-version: 12.22.6
node14-version: 14.17.6
node16-version: 16.8.0
node16-version: 16.13.1
node-app-insights-sdk-version: 1.8.7
pm2-version: 4.5.6
npm-version: 6.14.15
npm-version: 8.1.2
outputs:
- type: shell
directory: build

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

@ -170,6 +170,7 @@
- 15.2.0
- 15.2.1
- 15.3.0
- 16.13.1
### php

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

@ -24,3 +24,4 @@
16.5.0
16.6.1
16.8.0
16.13.1

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

@ -4,8 +4,8 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
{
public static class NodeVersions
{
public const string NodeRuntimeBaseTag = "20210902.2";
public const string YarnVersion = "1.22.10";
public const string NodeRuntimeBaseTag = "20211208.1";
public const string YarnVersion = "1.22.15";
public const string YarnMinorVersion = "1.17";
public const string YarnMajorVersion = "1";
public const string Node6Version = "6.17.1";
@ -13,9 +13,9 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
public const string Node10Version = "10.23.0";
public const string Node12Version = "12.22.6";
public const string Node14Version = "14.17.6";
public const string Node16Version = "16.8.0";
public const string Node16Version = "16.13.1";
public const string NodeAppInsightsSdkVersion = "1.8.7";
public const string Pm2Version = "4.5.6";
public const string NpmVersion = "6.14.15";
public const string NpmVersion = "8.1.2";
}
}