V1.1.4 RELEASE
This commit is contained in:
@@ -4,7 +4,7 @@ set dist_dir=dist
|
||||
|
||||
set app_name=zyplayer-doc
|
||||
|
||||
set version="1.1.3"
|
||||
set version="1.1.4"
|
||||
|
||||
set build_folder=%app_name%-%version%
|
||||
|
||||
|
||||
2
build.sh
2
build.sh
@@ -4,7 +4,7 @@ dist_dir="dist"
|
||||
|
||||
app_name="zyplayer-doc"
|
||||
|
||||
version="1.1.3"
|
||||
version="1.1.4"
|
||||
|
||||
build_folder="${app_name}-${version}"
|
||||
|
||||
|
||||
4
pom.xml
4
pom.xml
@@ -4,7 +4,7 @@
|
||||
|
||||
<groupId>com.zyplayer</groupId>
|
||||
<artifactId>zyplayer-doc</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>zyplayer-doc</name>
|
||||
@@ -18,7 +18,7 @@
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<fastjson.version>1.2.53</fastjson.version>
|
||||
<zyplayer.doc.version>1.1.3</zyplayer.doc.version>
|
||||
<zyplayer.doc.version>1.1.4</zyplayer.doc.version>
|
||||
<spring.boot.version>2.1.6.RELEASE</spring.boot.version>
|
||||
</properties>
|
||||
|
||||
|
||||
@@ -1,18 +1,13 @@
|
||||
# 本文件用于已部署好的系统检测自己是否需要升级使用,怕有人担心安全一类的问题,所以不提供服务器接口来做
|
||||
lastVersion=1.1.3
|
||||
lastVersion=1.1.4
|
||||
|
||||
upgradeContent=1. 新增MySQL->SQLServer建表语句转换;\
|
||||
2. 修复:新增数据源时参数填写错误,druid连接池配置未能正确关闭,导致控制台重复输出错误日志的问题;\
|
||||
3. 修复:达梦数据库查询数据时,关键词导致的报错;\
|
||||
4. #I6D0A2 修改代码块渲染问题;\
|
||||
5. 引入虚拟表格组件,极大改善大数据量情况下的表格性能;\
|
||||
6. 达梦、Oracle获取表信息SQL完善修复;\
|
||||
7. SQL执行器与表数据页面优化;\
|
||||
8. 初始化用户时增加数据源管理权,给用户授权后改为无需重新登录即可拥有新的权限;\
|
||||
9. 修复数据库导出时多次response导致的控制台报错问题,达梦关键词过滤,数据库导出CLOB数据类型处理;\
|
||||
10. 修改SQL执行逻辑,解决一个sql中字段名重复取值混乱问题,优化SQL编辑器;\
|
||||
11. #I6FO83 解决多次查看页面,编辑时是上一次的页面问题;\
|
||||
12. #I6FMPT 解决富文本编辑器图片上传失败问题;\
|
||||
upgradeContent=1. 优化文档展示细节,优化开放文档样式;\
|
||||
2. SQL执行器数据量过大自动开启分页;\
|
||||
3. SQL执行器页面优化,已知问题修复;\
|
||||
4. 获取数据源连接配置优化,druid版本升级到1.2.16;\
|
||||
5. 数据源支持MySQL8.x版本;\
|
||||
6. #I6IUWC 解决vue变量赋值问题;\
|
||||
7. #I6IWI9 解决没有升级脚本时提示没有找到文件问题;
|
||||
|
||||
upgradeUrl=https://gitee.com/zyplayer/zyplayer-doc/releases
|
||||
nextStep=
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<parent>
|
||||
<groupId>com.zyplayer</groupId>
|
||||
<artifactId>zyplayer-doc</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<parent>
|
||||
<groupId>com.zyplayer</groupId>
|
||||
<artifactId>zyplayer-doc</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -10,12 +10,13 @@ import java.util.List;
|
||||
* @since 2021-06-06
|
||||
*/
|
||||
public class ZyplayerDocVersion {
|
||||
public static final String version = "1.1.3";
|
||||
public static final String version = "1.1.4";
|
||||
|
||||
/**
|
||||
* 每次升级必须添加一条记录,用于执行它的升级SQL
|
||||
*/
|
||||
public static final List<UpgradeInfo> versionUpgrade = new LinkedList<UpgradeInfo>() {{
|
||||
add(new UpgradeInfo("1.1.4", false));
|
||||
add(new UpgradeInfo("1.1.3", false));
|
||||
add(new UpgradeInfo("1.1.2", true));
|
||||
}};
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<parent>
|
||||
<groupId>com.zyplayer</groupId>
|
||||
<artifactId>zyplayer-doc</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>com.zyplayer</groupId>
|
||||
<artifactId>zyplayer-doc</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>com.zyplayer</groupId>
|
||||
<artifactId>zyplayer-doc</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>zyplayer-doc</artifactId>
|
||||
<groupId>com.zyplayer</groupId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>com.zyplayer</groupId>
|
||||
<artifactId>zyplayer-doc</artifactId>
|
||||
<version>1.1.3</version>
|
||||
<version>1.1.4</version>
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
|
||||
Reference in New Issue
Block a user