Skip to content

Commit 28ca862

Browse files
Update version number and documentation
1 parent 2be9ac9 commit 28ca862

File tree

12 files changed

+26
-15
lines changed

12 files changed

+26
-15
lines changed

RELEASE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Release 2.1.3
2+
## Major Features and Improvements
3+
* Fix the HttpAdapter thread leakage problem.
4+
* Upgrade log4j dependent version.
5+
16
# Release 2.1.2
27
## Major Features and Improvements
38
* Fix serious security vulnerabilities in log4j.

document/docs/config/proxy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
"default": {
174174
"default": [
175175
{
176-
"url":"http://127.0.0.1:8879/unary"
176+
"url":"http://127.0.0.1:8869/unary"
177177
}
178178
]
179179
},

document/docs/quickstart/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ $ mvn clean package
1515
随后拷贝,比如 serving-server/target/fate-serving-server-{version}-release.zip 到想要部署的路径下,并解压。(version为当前版本号)
1616

1717
用户也可选择下载已编译好的版本,链接如下:
18-
[fate-serving-server-2.1.2-release.zip](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-server-2.1.2-release.zip)
19-
[fate-serving-proxy-2.1.2-release.zip](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-proxy-2.1.2-release.zip)
20-
[fate-serving-admin-2.1.2-release.zip](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-admin-2.1.2-release.zip)
18+
[fate-serving-server-2.1.3-release.zip](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-server-2.1.3-release.zip)
19+
[fate-serving-proxy-2.1.3-release.zip](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-proxy-2.1.3-release.zip)
20+
[fate-serving-admin-2.1.3-release.zip](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-admin-2.1.3-release.zip)
2121

2222

2323
### zookeeper部署

document/docs/release/change_log.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## FATE-SERVING 2.1.3
2+
```text
3+
1.修复内置HttpAdapter线程泄露问题。
4+
2.升级log4j依赖版本。
5+
```
6+
17
## FATE-SERVING 2.1.2
28
```text
39
1.修复log4j的严重安全漏洞。

document/docs/service/client.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FATE-Serving提供了fate-serving-client工具
22
### 下载对应版本的fate-serving-client
3-
>linux版本:[fate-serving-client-2.1.2-linux.tar.gz](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-client-2.1.2-linux.tar.gz )
4-
>mac版本:[fate-serving-client-2.1.2-darwin.tar.gz](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-client-2.1.2-darwin.tar.gz)
3+
>linux版本:[fate-serving-client-2.1.3-linux.tar.gz](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-client-2.1.3-linux.tar.gz )
4+
>mac版本:[fate-serving-client-2.1.3-darwin.tar.gz](https://webank-ai-1251170195.cos.ap-guangzhou.myqcloud.com/fate-serving-client-2.1.3-darwin.tar.gz)
55
6-
需要先确认下载解压出来的文件有没有可执行权限,没有权限就执行 `chmod +777 fate-serving-client-2.1.2-linux`授权。
6+
需要先确认下载解压出来的文件有没有可执行权限,没有权限就执行 `chmod +777 fate-serving-client-2.1.3-linux`授权。
77

88
### 启动client
9-
在终端中使用`./fate-serving-client-2.1.2-linux`启动client
9+
在终端中使用`./fate-serving-client-2.1.3-linux`启动client
1010
![connect](../img/client-connect.jpg)
1111

1212
### 提供了以下几种指令

fate-serving-admin-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FATE-Serving",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"private": true,
55
"author": "FATE Serving",
66
"scripts": {

fate-serving-admin/bin/service.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ basepath=$(cd `dirname $0`;pwd)
2424
configpath=$(cd $basepath/conf;pwd)
2525
module=serving-admin
2626
main_class=com.webank.ai.fate.serving.admin.Bootstrap
27-
module_version=2.1.2
27+
module_version=2.1.3
2828

2929
case "$1" in
3030
start)

fate-serving-core/src/main/java/com/webank/ai/fate/serving/core/bean/MetaInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.util.Map;
2525

2626
public class MetaInfo {
27-
public static final long CURRENT_VERSION = 212;
27+
public static final long CURRENT_VERSION = 213;
2828
public static List<AdaptorDescriptor.ParamDescriptor> inferenceParamDescriptorList;
2929
public static List<AdaptorDescriptor.ParamDescriptor> batchInferenceParamDescriptorList;
3030
public static Boolean PROPERTY_REMOTE_MODEL_INFERENCE_RESULT_CACHE_SWITCH;

fate-serving-proxy/bin/service.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ basepath=$(cd `dirname $0`;pwd)
2424
configpath=$(cd $basepath/conf;pwd)
2525
module=serving-proxy
2626
main_class=com.webank.ai.fate.serving.proxy.bootstrap.Bootstrap
27-
module_version=2.1.2
27+
module_version=2.1.3
2828

2929

3030
case "$1" in

fate-serving-proxy/src/main/resources/route_table.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"default": [
55
{
66
"ip": "127.0.0.1",
7-
"port": 8879,
7+
"port": 8869,
88
"useSSL": false
99
}
1010
]

0 commit comments

Comments
 (0)