Skip to content

Commit 045c3bf

Browse files
authored
Merge pull request #3480 from chashikajw/prepae-for-release
Prepare for 3.2.9 release
2 parents 4e47259 + 67bb702 commit 045c3bf

File tree

14 files changed

+22
-22
lines changed

14 files changed

+22
-22
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Let's expose the publicly available [petstore service](https://petstore.swagger.
5959
<summary>Docker</summary>
6060
6161
```bash
62-
micro-gw build petstore --docker-image petstore:v1 --docker-base-image wso2/wso2micro-gw:3.2.8
62+
micro-gw build petstore --docker-image petstore:v1 --docker-base-image wso2/wso2micro-gw:3.2.9
6363
```
6464
</details>
6565

components/micro-gateway-cli/src/main/resources/templates/ballerinaToml.mustache

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
22
org-name= "wso2"
3-
version= "3.2.8"
3+
version= "3.2.9"
44

55
[dependencies]
6-
"wso2/gateway" = { path = "{{toolkitHome}}/lib/gateway-balo/gateway-2020r1-java8-3.2.8.balo"}
6+
"wso2/gateway" = { path = "{{toolkitHome}}/lib/gateway-balo/gateway-2020r1-java8-3.2.9.balo"}
77
{{#each dependencies}}
88
{{{.}}}
99
{{/each}}

components/micro-gateway-core/src/main/ballerina/Ballerina.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[project]
22
org-name= "wso2"
3-
version= "3.2.8"
3+
version= "3.2.9"
44

55
[platform]
66
target = "java8"
77

88
[[platform.libraries]]
9-
path = "../../../target/org.wso2.micro.gateway.core-3.2.8.jar"
9+
path = "../../../target/org.wso2.micro.gateway.core-3.2.9.jar"
1010

1111
[[platform.libraries]]
1212
path = "../../../target/lib/dependencies/org.everit.json.schema-1.5.0.wso2.v1.jar"

components/micro-gateway-core/src/main/ballerina/src/gateway/constants/constants.bal

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public const string SERVICE_ANN_NAME = "ServiceConfig";
3737
public const string API_ANN_NAME = "API";
3838
public const string FILTER_ANN_NAME = "Filters";
3939
public const string SKIP_FILTERS_ANN_NAME = "SkipFilters";
40-
public const string GATEWAY_ANN_PACKAGE = "wso2/gateway:3.2.8";
40+
public const string GATEWAY_ANN_PACKAGE = "wso2/gateway:3.2.9";
4141

4242
public const string BASIC_PREFIX_WITH_SPACE = "Basic ";
4343
public const string AUTHORIZATION_HEADER = "Authorization";

components/micro-gateway-core/src/main/java/org/wso2/micro/gateway/core/Constants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class Constants {
3535
/**
3636
* gateway package version.
3737
*/
38-
public static final String PACKAGE_VERSION = "3.2.8";
38+
public static final String PACKAGE_VERSION = "3.2.9";
3939

4040
public static final String GATEWAY_VERSION = "MGW_VERSION";
4141

components/micro-gateway-core/src/main/java/org/wso2/micro/gateway/core/jwt/generator/MGWJWTGeneratorInvoker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public static BMap<String, Object> getRetrievedClaims(BMap<String, Object> authC
106106
if (claimList == null) {
107107
return null;
108108
}
109-
BPackage packageId = new BPackage("wso2", "gateway", "3.2.8");
109+
BPackage packageId = new BPackage("wso2", "gateway", "3.2.9");
110110
BMap<String, Object> bMap = BValueCreator.createRecordValue(packageId, "RetrievedUserClaimsListDTO");
111111
bMap.put("count", claimList.size());
112112
BArray bArray = (BArray) bMap.get("list");

distribution/LICENSE-RUNTIME.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ below is and where the actual text of the license can be found.
1313

1414
Name Version License
1515
_________________________________________________________________________________________________________________________________________________
16-
org.wso2.micro.gateway.tools-3.2.8.jar bundle apache2
16+
org.wso2.micro.gateway.tools-3.2.9.jar bundle apache2
1717
jmx_prometheus_javaagent-0.18.0.jar jar apache2
1818

1919

distribution/LICENSE-TOOLKIT.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -275,17 +275,17 @@ json-smart-2.3.jar
275275
asm-1.0.2.jar jarinbundle bsd
276276
guava-32.1.1-jre.jar bundle apache2
277277
jackson-core-2.10.3.jar bundle apache2
278-
mgw-interceptor-3.2.8.jar jar apache2
278+
mgw-interceptor-3.2.9.jar jar apache2
279279
disruptor-3.4.2.wso2v1.jar bundle apache2
280280
org.wso2.carbon.databridge.commons-6.1.45.jar bundle apache2
281281
org.wso2.carbon.databridge.commons.binary-6.1.45.jar bundle apache2
282-
mgw-jwt-transformer-3.2.8.jar jar apache2
283-
mgw-jwt-generator-3.2.8.jar jar apache2
282+
mgw-jwt-transformer-3.2.9.jar jar apache2
283+
mgw-jwt-generator-3.2.9.jar jar apache2
284284
andes-client-3.3.9.jar bundle apache2
285285
org.wso2.securevault-1.1.1.jar bundle apache2
286286
jcommander-1.72.jar bundle apache2
287287
toml4j-0.7.2.jar jar mit
288-
org.wso2.micro.gateway.cli-3.2.8.jar bundle apache2
288+
org.wso2.micro.gateway.cli-3.2.9.jar bundle apache2
289289
core-1.0.8.jar jar apache2
290290
slf4j-api-1.7.26.jar bundle mit
291291
slf4j-jdk14-1.7.26.jar bundle mit

distribution/resources/bin/gateway

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ PRGDIR=`dirname "$PRG"`
4545

4646
# set BALLERINA_HOME
4747
GW_HOME=`cd "$PRGDIR/.." ; pwd`
48-
export MGW_VERSION="3.2.8"
48+
export MGW_VERSION="3.2.9"
4949

5050
JAVA_PATH=$GW_HOME/lib/jdk8u382-b05-jre
5151
if [ -d "$JAVA_HOME" ]; then

distribution/resources/bin/gateway.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SET JAVA_XMX_VALUE=512m
3232
REM Set global variables
3333
SET PRGDIR=%~dp0
3434
SET GW_HOME=%PRGDIR%..
35-
SET MGW_VERSION="3.2.8"
35+
SET MGW_VERSION="3.2.9"
3636
SET CONF_FILE="%GW_HOME%\conf\micro-gw.conf"
3737
SET CONF_OUT_FILE="%GW_HOME%\.config"
3838
SET IS_METRICS_ENABLED=F

distribution/resources/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.8
1+
3.2.9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
product.name=wso2am-micro-gw
22
product.key=MICRO-GW
3-
product.version=3.2.8
3+
product.version=3.2.9

release-notes.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
<head>
55
<meta content="text/html; charset=iso-8859-1" http-equiv="content-type" />
6-
<title>WSO2 API Microgateway v3.2.8</title>
6+
<title>WSO2 API Microgateway v3.2.9</title>
77
</head>
88

99
<body>
10-
<h1>WSO2 API Microgateway 3.2.8 Released!</h1>
11-
<h2>What's new in 3.2.8</h2>
10+
<h1>WSO2 API Microgateway 3.2.9 Released!</h1>
11+
<h2>What's new in 3.2.9</h2>
1212
<p>This is a maintenance release of API Microgateway 3.2.0. This Release include below improvements and fixes.</p>
1313
<h3>Bug fixes</h3>
1414
<p><a
15-
href="https://github.com/wso2/product-microgateway/issues?q=is%3Aissue+milestone%3A3.2.8+is%3Aclosed">Fixed
15+
href="https://github.com/wso2/product-microgateway/issues?q=is%3Aissue+milestone%3A3.2.9+is%3Aclosed">Fixed
1616
Issues</a></p>
1717
<h2>Known Issues</h2>
1818
<p><a href="https://github.com/wso2/product-microgateway/issues?q=is%3Aopen+is%3Aissue+label%3Aballerina-mgw+">Open

samples/sample-jwt-generator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.wso2.am.microgw</groupId>
3131
<artifactId>mgw-jwt-generator</artifactId>
32-
<version>3.2.8</version>
32+
<version>3.2.9</version>
3333
</dependency>
3434
</dependencies>
3535

0 commit comments

Comments
 (0)