Skip to content

Commit dc185c4

Browse files
committed
- 升级核心版本到0.20.7
- 修正代理配置时的日志打印级别
1 parent 2f1f2f9 commit dc185c4

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

CHANGELOG.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
更新日志文档,版本顺序从新到旧,最新版本在最前(上)面。
44

5+
# 20.1.0
6+
7+
- 升级核心版本到0.20.7
8+
- 修正代理配置时的日志打印级别
9+
510
# 18.1.0
611

712
- 升级核心版本到0.18.0,适配新的条目同步格式

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ext {
1515
springContext = '6.0.3'
1616
pf4j = '3.8.0'
1717
lombok = '1.18.24'
18-
coreLibJar = 'lib/api-0.18.0.jar'
18+
coreLibJar = 'lib/api-0.20.7.jar'
1919
}
2020

2121

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
group=run.ikaros.plugin
22
description=A bgmtv plugin for ikaros.
3-
version=18.1.0
3+
version=20.1.0
Binary file not shown.

src/main/java/run/ikaros/plugin/bgmtv/repository/BgmTvRepositoryImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ public void initRestTemplate(ConfigMap configMap) {
7878
log.debug("init rest template by config map : {}", configMap);
7979
if (configMap == null || configMap.getData() == null) {
8080
restTemplate = RestTemplateUtils.buildRestTemplate(3000, 3000);
81-
log.error("config rest template by no proxy.");
81+
log.info("config rest template by no proxy.");
8282
return;
8383
}
8484
Map<String, String> map = configMap.getData();
8585
String enableProxy = String.valueOf(map.get("enableProxy"));
8686
if (StringUtils.isBlank(enableProxy) ||
8787
!Boolean.parseBoolean(enableProxy)) {
8888
restTemplate = RestTemplateUtils.buildRestTemplate(3000, 3000);
89-
log.error("config rest template by no proxy.");
89+
log.info("config rest template by no proxy.");
9090
return;
9191
}
9292
String proxyType = String.valueOf(map.get("proxyType"));

src/main/resources/plugin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ name: PluginBgmTv
44
# plugin entry class that extends BasePlugin
55
clazz: run.ikaros.plugin.bgmtv.BgmTvPlugin
66
# plugin 'version' is a valid semantic version string (see semver.org).
7-
version: 18.1.0
8-
requires: ">=0.18.0"
7+
version: 20.1.0
8+
requires: ">=0.20.7"
99
author:
1010
name: Ikaros OSS Team
1111
website: https://github.com/ikaros-dev

0 commit comments

Comments
 (0)