Update to 3.9.23 (Erlang/OTP 25.1.1)
This commit is contained in:
parent
d3f7e66707
commit
a0a5a54941
|
|
@ -28,10 +28,10 @@ ENV OPENSSL_SOURCE_SHA256="d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51
|
|||
# https://www.openssl.org/community/omc.html
|
||||
ENV OPENSSL_PGP_KEY_IDS="0x8657ABB260F056B1E5190839D9C4D26D0E604491 0x5B2545DAB21995F4088CEFAA36CEE4DEB00CFE33 0xED230BEC4D4F2518B9D7DF41F0DB4D21C1D35231 0xC1F33DD8CE1D4CC613AF14DA9195C48241FBF7DD 0x7953AC1FBC3DC8B3B292393ED5E9E43F7DF9EE8C 0xE5E52560DD91C556DDBDA5D02064C53641C25E5D"
|
||||
|
||||
ENV OTP_VERSION 24.3.4.5
|
||||
ENV OTP_VERSION 25.1.1
|
||||
# TODO add PGP checking when the feature will be added to Erlang/OTP's build system
|
||||
# https://erlang.org/pipermail/erlang-questions/2019-January/097067.html
|
||||
ENV OTP_SOURCE_SHA256="0b57d49e62958350676e8f32a39008d420dca4bc20f2d7e38c0671ab2ba62f14"
|
||||
ENV OTP_SOURCE_SHA256="42840c32e13a27bdb2c376d69aa22466513d441bfe5eb882de23baf8218308d3"
|
||||
|
||||
# Install dependencies required to build Erlang/OTP from source
|
||||
# https://erlang.org/doc/installation_guide/INSTALL.html
|
||||
|
|
@ -192,7 +192,7 @@ RUN set -eux; \
|
|||
ln -sf "$RABBITMQ_DATA_DIR/.erlang.cookie" /root/.erlang.cookie
|
||||
|
||||
# Use the latest stable RabbitMQ release (https://www.rabbitmq.com/download.html)
|
||||
ENV RABBITMQ_VERSION 3.9.22
|
||||
ENV RABBITMQ_VERSION 3.9.23
|
||||
# https://www.rabbitmq.com/signatures.html#importing-gpg
|
||||
ENV RABBITMQ_PGP_KEY_ID="0x0A9AF2115F4687BD29803A206B73A36E6026DFCA"
|
||||
ENV RABBITMQ_HOME=/opt/rabbitmq
|
||||
|
|
|
|||
|
|
@ -31,10 +31,10 @@ ENV OPENSSL_SOURCE_SHA256="d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51
|
|||
# https://www.openssl.org/community/omc.html
|
||||
ENV OPENSSL_PGP_KEY_IDS="0x8657ABB260F056B1E5190839D9C4D26D0E604491 0x5B2545DAB21995F4088CEFAA36CEE4DEB00CFE33 0xED230BEC4D4F2518B9D7DF41F0DB4D21C1D35231 0xC1F33DD8CE1D4CC613AF14DA9195C48241FBF7DD 0x7953AC1FBC3DC8B3B292393ED5E9E43F7DF9EE8C 0xE5E52560DD91C556DDBDA5D02064C53641C25E5D"
|
||||
|
||||
ENV OTP_VERSION 24.3.4.5
|
||||
ENV OTP_VERSION 25.1.1
|
||||
# TODO add PGP checking when the feature will be added to Erlang/OTP's build system
|
||||
# https://erlang.org/pipermail/erlang-questions/2019-January/097067.html
|
||||
ENV OTP_SOURCE_SHA256="0b57d49e62958350676e8f32a39008d420dca4bc20f2d7e38c0671ab2ba62f14"
|
||||
ENV OTP_SOURCE_SHA256="42840c32e13a27bdb2c376d69aa22466513d441bfe5eb882de23baf8218308d3"
|
||||
|
||||
# Install dependencies required to build Erlang/OTP from source
|
||||
# https://erlang.org/doc/installation_guide/INSTALL.html
|
||||
|
|
@ -203,7 +203,7 @@ RUN set -eux; \
|
|||
ln -sf "$RABBITMQ_DATA_DIR/.erlang.cookie" /root/.erlang.cookie
|
||||
|
||||
# Use the latest stable RabbitMQ release (https://www.rabbitmq.com/download.html)
|
||||
ENV RABBITMQ_VERSION 3.9.22
|
||||
ENV RABBITMQ_VERSION 3.9.23
|
||||
# https://www.rabbitmq.com/signatures.html#importing-gpg
|
||||
ENV RABBITMQ_PGP_KEY_ID="0x0A9AF2115F4687BD29803A206B73A36E6026DFCA"
|
||||
ENV RABBITMQ_HOME=/opt/rabbitmq
|
||||
|
|
|
|||
|
|
@ -29,10 +29,10 @@
|
|||
"version": "1.1.1q"
|
||||
},
|
||||
"otp": {
|
||||
"sha256": "0b57d49e62958350676e8f32a39008d420dca4bc20f2d7e38c0671ab2ba62f14",
|
||||
"version": "24.3.4.5"
|
||||
"sha256": "42840c32e13a27bdb2c376d69aa22466513d441bfe5eb882de23baf8218308d3",
|
||||
"version": "25.1.1"
|
||||
},
|
||||
"version": "3.9.22"
|
||||
"version": "3.9.23"
|
||||
},
|
||||
"3.9-rc": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ set -Eeuo pipefail
|
|||
|
||||
# https://www.rabbitmq.com/which-erlang.html ("Maximum supported Erlang/OTP")
|
||||
declare -A otpMajors=(
|
||||
[3.9]='24'
|
||||
[3.9]='25'
|
||||
[3.10]='25'
|
||||
[3.11]='25'
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue