From 8319df59b8f1ffaf650f72329c3c59ae473632fe Mon Sep 17 00:00:00 2001 From: Yoshani Date: Tue, 31 Jan 2023 10:59:52 +0530 Subject: [PATCH 1/3] Upgrade jdk version --- dockerfiles/alpine/is/Dockerfile | 6 +++--- dockerfiles/centos/is/Dockerfile | 6 +++--- dockerfiles/ubuntu/is/Dockerfile | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/dockerfiles/alpine/is/Dockerfile b/dockerfiles/alpine/is/Dockerfile index 5441ca05..3e72ad6f 100755 --- a/dockerfiles/alpine/is/Dockerfile +++ b/dockerfiles/alpine/is/Dockerfile @@ -26,7 +26,7 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' RUN apk add --no-cache tzdata musl-locales musl-locales-lang \ && rm -rf /var/cache/apk/* -ENV JAVA_VERSION jdk8u322-b06 +ENV JAVA_VERSION jdk8u362-b09 RUN apk --no-progress --purge --no-cache upgrade \ && apk --no-progress --purge --no-cache add --upgrade \ @@ -47,8 +47,8 @@ RUN set -eux; \ ARCH="$(apk --print-arch)"; \ case "${ARCH}" in \ amd64|x86_64) \ - ESUM='3d62362a78c9412766471b05253507a4cfc212daea5cdf122860173ce902400e'; \ - BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u322b06.tar.gz'; \ + ESUM='389c0d2ea59742103f46f1dd6d2c83e43e9f935f3f0485b1f9e74ac4e8c5ce47'; \ + BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jdk_x64_alpine-linux_hotspot_8u362b09.tar.gz'; \ ;; \ *) \ echo "Unsupported arch: ${ARCH}"; \ diff --git a/dockerfiles/centos/is/Dockerfile b/dockerfiles/centos/is/Dockerfile index 84242af4..ebec5073 100755 --- a/dockerfiles/centos/is/Dockerfile +++ b/dockerfiles/centos/is/Dockerfile @@ -26,15 +26,15 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' RUN yum install -y tzdata openssl curl ca-certificates fontconfig gzip tar \ && yum clean all -ENV JAVA_VERSION jdk8u322-b06 +ENV JAVA_VERSION jdk8u362-b09 # Install JDK8. RUN set -eux; \ ARCH="$(objdump="$(command -v objdump)" && objdump --file-headers "$objdump" | awk -F '[:,]+[[:space:]]+' '$1 == "architecture" { print $2 }')"; \ case "${ARCH}" in \ amd64|i386:x86-64) \ - ESUM='3d62362a78c9412766471b05253507a4cfc212daea5cdf122860173ce902400e'; \ - BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u322b06.tar.gz'; \ + ESUM='1486a792fb224611ce0cd0e83d4aacd3503b56698549f8e9a9f0a6ebb83bdba1'; \ + BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jdk_x64_linux_hotspot_8u362b09.tar.gz'; \ ;; \ *) \ echo "Unsupported arch: ${ARCH}"; \ diff --git a/dockerfiles/ubuntu/is/Dockerfile b/dockerfiles/ubuntu/is/Dockerfile index 94c115ca..039c7bd8 100755 --- a/dockerfiles/ubuntu/is/Dockerfile +++ b/dockerfiles/ubuntu/is/Dockerfile @@ -31,15 +31,15 @@ RUN apt-get update \ && locale-gen en_US.UTF-8 \ && rm -rf /var/lib/apt/lists/* -ENV JAVA_VERSION jdk8u322-b06 +ENV JAVA_VERSION jdk8u362-b09 # Install JDK8. RUN set -eux; \ ARCH="$(dpkg --print-architecture)"; \ case "${ARCH}" in \ amd64|x86_64) \ - ESUM='3d62362a78c9412766471b05253507a4cfc212daea5cdf122860173ce902400e'; \ - BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u322b06.tar.gz'; \ + ESUM='1486a792fb224611ce0cd0e83d4aacd3503b56698549f8e9a9f0a6ebb83bdba1'; \ + BINARY_URL='https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jdk_x64_linux_hotspot_8u362b09.tar.gz'; \ ;; \ *) \ echo "Unsupported arch: ${ARCH}"; \ From ba14f31edfe2f50070d2d2508ffacac2ebfec417 Mon Sep 17 00:00:00 2001 From: Yoshani Date: Tue, 31 Jan 2023 11:00:06 +0530 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7ab471a..ce30d5f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project 5.9.x per each release will be documented in The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +## [v5.9.0.7] - 2023-01-31 + +### Changed +- Update jdk8u322-b06 to jdk8u362-b09 + ## [v5.9.0.6] - 2022-07-01 ### Changed From 9e4d5073678cd3ab64c72b166b8caa4fed2d24bf Mon Sep 17 00:00:00 2001 From: Yoshani Date: Tue, 31 Jan 2023 13:35:04 +0530 Subject: [PATCH 3/3] Update tag --- dockerfiles/alpine/is/Dockerfile | 2 +- dockerfiles/centos/is/Dockerfile | 2 +- dockerfiles/ubuntu/is/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/alpine/is/Dockerfile b/dockerfiles/alpine/is/Dockerfile index 3e72ad6f..4c383dc2 100755 --- a/dockerfiles/alpine/is/Dockerfile +++ b/dockerfiles/alpine/is/Dockerfile @@ -19,7 +19,7 @@ # Set base Docker image to Alpine Docker image. FROM alpine:3.15.0 LABEL maintainer="WSO2 Docker Maintainers " \ - com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.9.0.6" + com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.9.0.7" ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' # Install JDK Dependencies. diff --git a/dockerfiles/centos/is/Dockerfile b/dockerfiles/centos/is/Dockerfile index ebec5073..da9e0436 100755 --- a/dockerfiles/centos/is/Dockerfile +++ b/dockerfiles/centos/is/Dockerfile @@ -19,7 +19,7 @@ # Set base Docker image to CentOS Docker image. FROM centos:7 LABEL maintainer="WSO2 Docker Maintainers " \ - com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.9.0.6" + com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.9.0.7" ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' # Install JDK Dependencies. diff --git a/dockerfiles/ubuntu/is/Dockerfile b/dockerfiles/ubuntu/is/Dockerfile index 039c7bd8..b8c7c0e6 100755 --- a/dockerfiles/ubuntu/is/Dockerfile +++ b/dockerfiles/ubuntu/is/Dockerfile @@ -20,7 +20,7 @@ FROM ubuntu:20.04 LABEL maintainer="WSO2 Docker Maintainers " \ - com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.9.0.6" + com.wso2.docker.source="https://github.com/wso2/docker-is/releases/tag/v5.9.0.7" ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'