Skip to content

Commit

Permalink
Merge pull request #142 from FederatedAI/develop-1.9.0
Browse files Browse the repository at this point in the history
Develop 1.9.0
  • Loading branch information
idwenwen authored Aug 30, 2022
2 parents 3372d8f + cb8c095 commit 715c6d9
Show file tree
Hide file tree
Showing 90 changed files with 4,448 additions and 3,951 deletions.
24 changes: 24 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# Release 1.9.0

#### Major Features and Improvements
**Major Features**

* Add feature number limitation when displaying Pearson component correlation graph to ensure interactive friendliness
* Update the login encryption method to reduce the risk caused by the time synchronization between the browser and the server
* psi, pearson, data statistic and other components are open to download data
* Feature Anonymous Showcase Upgrade
* High availability display support
* Revised and updated display details
* Rendering component module finishing optimization
* Differentiated rendering for task components with large amounts of data


# Relaese 1.8.0.1
#### Major Features and Improvements
**Major Features**

* Fast JSON version update
* Spring version update
* Code update because of dependent upgrade


# Release 1.8.0

#### Major Features and Improvements
Expand Down
101 changes: 38 additions & 63 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fateboard</groupId>
<artifactId>fateboard</artifactId>
<version>1.8.0.1</version>
<version>1.9.0</version>

<parent>
<groupId>org.springframework.boot</groupId>
Expand All @@ -20,19 +20,17 @@
<description>fateboard</description>

<properties>
<druid.version>1.1.10</druid.version>
<mybatis-plus.version>3.0.6</mybatis-plus.version>
<druid.version>1.1.10</druid.version>
<lombok.version>1.18.22</lombok.version>
<jasypt.version>2.0.0</jasypt.version>
<swagger.version>2.9.2</swagger.version>
<springdoc.version>1.6.8</springdoc.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<pagehelper.version>1.2.3</pagehelper.version>
<log4j2.version>2.17.2</log4j2.version>
<spring.cloud-version>2021.0.3</spring.cloud-version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -52,6 +50,17 @@
<version>262</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader-tools</artifactId>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.3.20</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
Expand All @@ -78,12 +87,6 @@
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.83</version>
<exclusions>
<exclusion>
<artifactId>fastjson</artifactId>
<groupId>com.alibaba</groupId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand All @@ -97,30 +100,12 @@
<version>30.0-jre</version>
</dependency>

<!-- <dependency>-->
<!-- <groupId>org.mybatis.spring.boot</groupId>-->
<!-- <artifactId>mybatis-spring-boot-starter</artifactId>-->
<!-- <version>1.3.2</version>-->
<!-- </dependency>-->

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>

<!-- <dependency>-->
<!-- <groupId>mysql</groupId>-->
<!-- <artifactId>mysql-connector-java</artifactId>-->
<!-- <version>8.0.16</version>-->
<!-- </dependency>-->

<!-- <dependency>-->
<!-- <groupId>org.xerial</groupId>-->
<!-- <artifactId>sqlite-jdbc</artifactId>-->
<!-- <version>3.28.0</version>-->
<!-- </dependency>-->

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -146,34 +131,18 @@
<version>3.4.2</version>
</dependency>

<!-- springdoc start -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${swagger.version}</version>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>${springdoc.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.version}</version>
</dependency>

<!-- <dependency>-->
<!-- <groupId>com.alibaba</groupId>-->
<!-- <artifactId>druid-spring-boot-starter</artifactId>-->
<!-- <version>${druid.version}</version>-->
<!-- </dependency>-->

<!-- <dependency>-->
<!-- <groupId>com.baomidou</groupId>-->
<!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
<!-- <version>${mybatis-plus.version}</version>-->
<!-- </dependency>-->

<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${pagehelper.version}</version>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-webmvc-core</artifactId>
<version>${springdoc.version}</version>
</dependency>
<!-- springdoc end -->

<dependency>
<groupId>org.projectlombok</groupId>
Expand All @@ -194,18 +163,17 @@
<version>1.10.11</version>
</dependency>

<!-- <dependency>-->
<!-- <groupId>org.springframework.session</groupId>-->
<!-- <artifactId>spring-session-jdbc</artifactId>-->
<!-- </dependency>-->

<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -233,6 +201,13 @@
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.32</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring.cloud-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -309,7 +284,7 @@
<!-- node安装路径 -->
<installDirectory>dist</installDirectory>
<!-- 前端代码路径 -->
<workingDirectory>resources-front-end</workingDirectory>
<workingDirectory>${project.basedir}/resources-front-end</workingDirectory>
</configuration>
</plugin>
<plugin>
Expand Down
Loading

0 comments on commit 715c6d9

Please sign in to comment.