Skip to content

Commit

Permalink
Generate new Oryx runtime images (#2416)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaraksh1 authored Apr 29, 2024
1 parent 4376132 commit e43058c
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build/__dotNetCoreRunTimeVersions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.

DOT_NET_CORE_RUNTIME_BASE_TAG='20240313.1'
DOT_NET_CORE_RUNTIME_BASE_TAG='20240429.2'
NET_CORE_APP_10='1.0.16'
NET_CORE_APP_11='1.1.13'
NET_CORE_APP_20='2.0.9'
Expand Down
2 changes: 1 addition & 1 deletion build/__nodeVersions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.

NODE_RUNTIME_BASE_TAG='20240429.5'
NODE_RUNTIME_BASE_TAG='20240429.6'
YARN_VERSION='1.22.15'
YARN_MINOR_VERSION='1.22'
YARN_MAJOR_VERSION='1'
Expand Down
4 changes: 2 additions & 2 deletions build/__phpVersions.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.

PHP_RUNTIME_BASE_TAG='20240319.1'
PHP_FPM_RUNTIME_BASE_TAG='20240319.1'
PHP_RUNTIME_BASE_TAG='20240429.2'
PHP_FPM_RUNTIME_BASE_TAG='20240429.2'
COMPOSER_DEFAULT_VERSION='2.6.2'
COMPOSER_SETUP_SHA384='e21205b207c3ff031906575712edab6f13eb0b361f2085f1f1237b7126d785e826a450292b6cfd1d64d92e6563bbde02'
COMPOSER1_9_VERSION='1.9.3'
Expand Down
2 changes: 1 addition & 1 deletion build/__pythonVersions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file was auto-generated from 'constants.yaml'. Changes may be overridden.

PYTHON_RUNTIME_BASE_TAG='20240227.1'
PYTHON_RUNTIME_BASE_TAG='20240429.1'
PIP_VERSION='21.2.4'
PYTHON27_VERSION='2.7.18'
PYTHON36_VERSION='3.6.15'
Expand Down
10 changes: 5 additions & 5 deletions build/constants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
file-name-prefix: __
- name: dot-net-core-run-time-versions
constants:
dot-net-core-runtime-base-tag: 20240313.1
dot-net-core-runtime-base-tag: 20240429.2
net-core-app-10: 1.0.16
net-core-app-11: 1.1.13
net-core-app-20: 2.0.9
Expand Down Expand Up @@ -149,7 +149,7 @@
file-name-prefix: __
- name: python-versions
constants:
python-runtime-base-tag: 20240227.1
python-runtime-base-tag: 20240429.1
pip-version: 21.2.4
python27-version: 2.7.18
python36-version: 3.6.15
Expand Down Expand Up @@ -185,8 +185,8 @@
file-name-prefix: __
- name: php-versions
constants:
php-runtime-base-tag: 20240319.1
php-fpm-runtime-base-tag: 20240319.1
php-runtime-base-tag: 20240429.2
php-fpm-runtime-base-tag: 20240429.2
composer-default-version: 2.6.2
composer-setup-sha384: e21205b207c3ff031906575712edab6f13eb0b361f2085f1f1237b7126d785e826a450292b6cfd1d64d92e6563bbde02
composer1-9-version: 1.9.3
Expand Down Expand Up @@ -319,7 +319,7 @@
directory: src/startupscriptgenerator/src/common/consts
- name: node-versions
constants:
node-runtime-base-tag: 20240429.5
node-runtime-base-tag: 20240429.6
yarn-version: 1.22.15
yarn-minor-version: 1.22
yarn-major-version: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Microsoft.Oryx.BuildScriptGenerator.DotNetCore
{
public static class DotNetCoreRunTimeVersions
{
public const string DotNetCoreRuntimeBaseTag = "20240313.1";
public const string DotNetCoreRuntimeBaseTag = "20240429.2";
public const string NetCoreApp10 = "1.0.16";
public const string NetCoreApp11 = "1.1.13";
public const string NetCoreApp20 = "2.0.9";
Expand Down
2 changes: 1 addition & 1 deletion src/BuildScriptGenerator/Node/NodeVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Node
{
public static class NodeVersions
{
public const string NodeRuntimeBaseTag = "20240429.5";
public const string NodeRuntimeBaseTag = "20240429.6";
public const string YarnVersion = "1.22.15";
public const string YarnMinorVersion = "1.22";
public const string YarnMajorVersion = "1";
Expand Down
4 changes: 2 additions & 2 deletions src/BuildScriptGenerator/PhpVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Common
{
public static class PhpVersions
{
public const string PhpRuntimeBaseTag = "20240319.1";
public const string PhpFpmRuntimeBaseTag = "20240319.1";
public const string PhpRuntimeBaseTag = "20240429.2";
public const string PhpFpmRuntimeBaseTag = "20240429.2";
public const string ComposerDefaultVersion = "2.6.2";
public const string ComposerSetupSha384 = "e21205b207c3ff031906575712edab6f13eb0b361f2085f1f1237b7126d785e826a450292b6cfd1d64d92e6563bbde02";
public const string Composer19Version = "1.9.3";
Expand Down
2 changes: 1 addition & 1 deletion src/BuildScriptGenerator/PythonVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Microsoft.Oryx.BuildScriptGenerator.Common
{
public static class PythonVersions
{
public const string PythonRuntimeBaseTag = "20240227.1";
public const string PythonRuntimeBaseTag = "20240429.1";
public const string PipVersion = "21.2.4";
public const string Python27Version = "2.7.18";
public const string Python36Version = "3.6.15";
Expand Down

0 comments on commit e43058c

Please sign in to comment.