Update NodeLtsVersions node version to fix pipeline failure (#1337)

* Update NodeLtsVersions node version to fix pipeline failure

* Add full support for Node 14.19.1

* Update node runtime tag

* Fix golang startupscriptgenerator error

* Update the version of golang viper package
This commit is contained in:
william-msft 2022-04-14 09:18:48 -07:00 коммит произвёл GitHub
Родитель 608d8a1ed1
Коммит 039c636b25
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 24 добавлений и 6 удалений

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

@ -1,6 +1,6 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.
NODE_RUNTIME_BASE_TAG='20220128.5'
NODE_RUNTIME_BASE_TAG='20220412.2'
YARN_VERSION='1.22.15'
YARN_MINOR_VERSION='1.17'
YARN_MAJOR_VERSION='1'
@ -8,7 +8,7 @@ NODE6_VERSION='6.17.1'
NODE8_VERSION='8.17.0'
NODE10_VERSION='10.23.0'
NODE12_VERSION='12.22.6'
NODE14_VERSION='14.18.3'
NODE14_VERSION='14.19.1'
NODE16_VERSION='16.13.1'
NODE_APP_INSIGHTS_SDK_VERSION='1.8.7'
PM2_VERSION='4.5.6'

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

@ -201,7 +201,7 @@
directory: src/startupscriptgenerator/src/common/consts
- name: node-versions
constants:
node-runtime-base-tag: 20220128.5
node-runtime-base-tag: 20220412.2
yarn-version: 1.22.15
yarn-minor-version: 1.17
yarn-major-version: 1
@ -209,7 +209,7 @@
node8-version: 8.17.0
node10-version: 10.23.0
node12-version: 12.22.6
node14-version: 14.18.3
node14-version: 14.19.1
node16-version: 16.13.1
node-app-insights-sdk-version: 1.8.7
pm2-version: 4.5.6

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

@ -168,6 +168,8 @@
- 14.14.0
- 14.15.0
- 14.15.1
- 14.18.3
- 14.19.1
- 15.0.0
- 15.0.1
- 15.1.0

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

@ -16,6 +16,7 @@
14.17.4
14.17.6
14.18.3
14.19.1
15.0.0
15.0.1

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

@ -4,7 +4,7 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
{
public static class NodeVersions
{
public const string NodeRuntimeBaseTag = "20220128.5";
public const string NodeRuntimeBaseTag = "20220412.2";
public const string YarnVersion = "1.22.15";
public const string YarnMinorVersion = "1.17";
public const string YarnMajorVersion = "1";
@ -12,7 +12,7 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
public const string Node8Version = "8.17.0";
public const string Node10Version = "10.23.0";
public const string Node12Version = "12.22.6";
public const string Node14Version = "14.18.3";
public const string Node14Version = "14.19.1";
public const string Node16Version = "16.13.1";
public const string NodeAppInsightsSdkVersion = "1.8.7";
public const string Pm2Version = "4.5.6";

15
src/startupscriptgenerator/src/common/Gopkg.lock сгенерированный
Просмотреть файл

@ -60,6 +60,21 @@
revision = "f58768cc1a7a7e77a3bd49e98cdd21419399b6a3"
version = "v1.2.0"
[[projects]]
digest = "1:f8ae93995f7b68f2aeba036bd6c9e0881c8c6edd67d6120f092eafa4c5a040f0"
name = "github.com/spf13/viper"
packages = [
".",
"internal/encoding",
"internal/encoding/hcl",
"internal/encoding/json",
"internal/encoding/toml",
"internal/encoding/yaml",
]
pruneopts = "UT"
revision = "f646c50b184a0bec644dd1147d6b0e57be17c7aa"
version = "v1.10.1"
[[projects]]
digest = "1:972c2427413d41a1e06ca4897e8528e5a1622894050e2f527b38ddf0f343f759"
name = "github.com/stretchr/testify"