Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade MG version to 3.2.4 #22

Merged
merged 1 commit into from
Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to Docker resources for WSO2 API Microgateway will be docume

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [v3.2.4.1] - 2022-06-10

### Changed

- Upgrade to API Microgateway 3.2.4 (refer to [issue](https://github.com/wso2/docker-mg/issues/18))

## [v3.2.3.1] - 2021-07-15

### Changed
Expand Down Expand Up @@ -45,3 +51,4 @@ For detailed information on the tasks carried out during this release, please se
[v3.2.1.1]: https://github.com/wso2/docker-mg/compare/v3.2.0...v3.2.1.1
[v3.2.1.2]: https://github.com/wso2/docker-mg/compare/v3.2.1.1...v3.2.1.2
[v3.2.3.1]: https://github.com/wso2/docker-mg/compare/v3.2.1.2...v3.2.3.1
[v3.2.4.1]: https://github.com/wso2/docker-mg/compare/v3.2.3.1...v3.2.4.1
4 changes: 2 additions & 2 deletions dockerfiles/alpine/mg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
FROM alpine:3.11

LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \
com.wso2.docker.source="https://github.com/wso2/docker-mg/releases/tag/v3.2.3.1"
com.wso2.docker.source="https://github.com/wso2/docker-mg/releases/tag/v3.2.4.1"

ENV LANG=C.UTF-8

Expand All @@ -33,7 +33,7 @@ ARG JRE_HOME=/opt/java/openjdk

# build arguments for WSO2 product installation
ARG MGW_SERVER_NAME=wso2am-micro-gw-linux
ARG MGW_SERVER_VERSION=3.2.3
ARG MGW_SERVER_VERSION=3.2.4
ARG MGW_SERVER=${MGW_SERVER_NAME}-${MGW_SERVER_VERSION}
ARG MGW_RUNTIME_HOME=${USER_HOME}/wso2
ARG MGW_SERVER_DIST_URL=https://github.com/wso2/product-microgateway/releases/download/v${MGW_SERVER_VERSION}/${MGW_SERVER}.zip
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/alpine/mg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This section defines the step-by-step instructions to build an [Alpine](https://
1. Navigate to `/dockerfiles/alpine/mg` directory.
2. Build the Docker image using the following command.

```docker build --no-cache=true -t wso2/wso2micro-gw:3.2.3 .```
```docker build --no-cache=true -t wso2/wso2micro-gw:3.2.4 .```

> By default, the Docker image will prepackage the General Availability (GA) release version of the relevant WSO2 product.

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/mg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# set base Docker image to AdoptOpenJDK Ubuntu Docker image
FROM ubuntu:20.04
LABEL maintainer="WSO2 Docker Maintainers <[email protected]>" \
com.wso2.docker.source="https://github.com/wso2/docker-mg/releases/tag/v3.2.3.1"
com.wso2.docker.source="https://github.com/wso2/docker-mg/releases/tag/v3.2.4.1"

ENV LANG=C.UTF-8

Expand All @@ -34,7 +34,7 @@ ARG JRE_HOME=/opt/java/openjdk

# build arguments for WSO2 product installation
ARG MGW_SERVER_NAME=wso2am-micro-gw-linux
ARG MGW_SERVER_VERSION=3.2.3
ARG MGW_SERVER_VERSION=3.2.4
ARG MGW_SERVER=${MGW_SERVER_NAME}-${MGW_SERVER_VERSION}
ARG MGW_RUNTIME_HOME=${USER_HOME}/wso2
ARG MGW_SERVER_DIST_URL=https://github.com/wso2/product-microgateway/releases/download/v${MGW_SERVER_VERSION}/${MGW_SERVER}.zip
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ubuntu/mg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This section defines the step-by-step instructions to build an [Ubuntu](https://
1. Navigate to `/dockerfiles/ubuntu/mg` directory.
2. Build the Docker image using the following command.

```docker build --no-cache=true -t wso2/wso2micro-gw:3.2.3-ubuntu .```
```docker build --no-cache=true -t wso2/wso2micro-gw:3.2.4-ubuntu .```

> By default, the Docker image will prepackage the General Availability (GA) release version of the relevant WSO2 product.

Expand Down