Skip to content

Commit d71064f

Browse files
NeGnailujjboy
authored andcommitted
Update version to v2.3.2 and add some params. (#45)
* add some rpc param of xsd * update version to 2.3.2
1 parent 255f688 commit d71064f

File tree

12 files changed

+20
-13
lines changed

12 files changed

+20
-13
lines changed

healthcheck-sofa-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>com.alipay.sofa</groupId>
2424
<artifactId>sofa-boot-runtime</artifactId>
25-
<version>2.3.1</version>
25+
<version>2.3.2</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

infra-sofa-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>com.alipay.sofa</groupId>
2424
<artifactId>sofa-boot-runtime</artifactId>
25-
<version>2.3.1</version>
25+
<version>2.3.2</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>

infra-sofa-boot-starter/src/main/resources/META-INF/com/alipay/sofa/infra/config/spring/namespace/schema/rpc.xsd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@
9898
<xsd:attribute name="idle.timeout.read" type="xsd:int" use="optional"/>
9999
<xsd:attribute name="generic-interface" type="xsd:string" use="optional"/>
100100
<xsd:attribute name="filter" type="xsd:string" use="optional"/>
101+
<xsd:attribute name="retries" type="xsd:int" use="optional"/>
102+
<xsd:attribute name="loadBalancer" type="xsd:string" use="optional"/>
103+
<xsd:attribute name="lazy" type="xsd:boolean" use="optional"/>
104+
<xsd:attribute name="check" type="xsd:boolean" use="optional"/>
101105
</xsd:complexType>
102106

103107
<!-- method in service binding.bolt -->
@@ -336,6 +340,9 @@
336340
<xsd:attribute name="connect.num" type="xsd:int" use="optional"/>
337341
<xsd:attribute name="idle.timeout" type="xsd:int" use="optional"/>
338342
<xsd:attribute name="idle.timeout.read" type="xsd:int" use="optional"/>
343+
<xsd:attribute name="retries" type="xsd:int" use="optional"/>
344+
<xsd:attribute name="lazy" type="xsd:boolean" use="optional"/>
345+
<xsd:attribute name="check" type="xsd:boolean" use="optional"/>
339346
</xsd:complexType>
340347

341348
<!-- method in service binding.dubbo -->

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
<parent>
2424
<groupId>com.alipay.sofa</groupId>
2525
<artifactId>sofaboot-dependencies</artifactId>
26-
<version>2.3.1</version>
26+
<version>2.3.2</version>
2727
<relativePath>./sofaboot-dependencies/pom.xml</relativePath>
2828
</parent>
2929

3030
<modelVersion>4.0.0</modelVersion>
3131
<artifactId>sofa-boot-runtime</artifactId>
3232
<packaging>pom</packaging>
33-
<version>2.3.1</version>
33+
<version>2.3.2</version>
3434

3535
<name>SOFABoot Runtime</name>
3636
<description>SOFABoot Runtime</description>

runtime-sofa-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>com.alipay.sofa</groupId>
2424
<artifactId>sofa-boot-runtime</artifactId>
25-
<version>2.3.1</version>
25+
<version>2.3.2</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>

sofaboot-dependencies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<groupId>com.alipay.sofa</groupId>
3131
<artifactId>sofaboot-dependencies</artifactId>
32-
<version>2.3.1</version>
32+
<version>2.3.2</version>
3333
<packaging>pom</packaging>
3434

3535
<properties>
@@ -38,7 +38,7 @@
3838
<project.build.encoding>UTF-8</project.build.encoding>
3939

4040
<spring.boot.version>1.4.2.RELEASE</spring.boot.version>
41-
<sofa.boot.version>2.3.1</sofa.boot.version>
41+
<sofa.boot.version>2.3.2</sofa.boot.version>
4242
<sofa.ark.version>0.2.0</sofa.ark.version>
4343
<rpc.starter.version>5.3.1</rpc.starter.version>
4444
<!-- sofa-common-tools for log -->

sofaboot-samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>com.alipay.sofa</groupId>
2424
<artifactId>sofa-boot-runtime</artifactId>
25-
<version>2.3.1</version>
25+
<version>2.3.2</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

sofaboot-samples/sofaboot-sample-with-isolation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>sofaboot-samples</artifactId>
2424
<groupId>com.alipay.sofa</groupId>
25-
<version>2.3.1</version>
25+
<version>2.3.2</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

sofaboot-samples/sofaboot-sample-with-rpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SOFABoot 提供了如健康检查,上下文隔离等基础能力,同时提
99
<parent>
1010
<groupId>com.alipay.sofa</groupId>
1111
<artifactId>sofaboot-dependencies</artifactId>
12-
<version>2.3.1</version>
12+
<version>2.3.2</version>
1313
</parent>
1414
```
1515

sofaboot-samples/sofaboot-sample-with-rpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sofaboot-samples</artifactId>
77
<groupId>com.alipay.sofa</groupId>
8-
<version>2.3.1</version>
8+
<version>2.3.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)