Skip to content

Commit

Permalink
Merge pull request #152 from FederatedAI/develop-1.9.1
Browse files Browse the repository at this point in the history
Develop 1.9.1
  • Loading branch information
idwenwen authored Nov 23, 2022
2 parents c199bc3 + b6564d6 commit 16a6763
Show file tree
Hide file tree
Showing 12 changed files with 297 additions and 263 deletions.
8 changes: 8 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Release 1.9.1

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

* Fix the problem that the graph shows the mismatch after the binning component detail data is loaded
* Repair DAG diagram component port display defect

# Release 1.9.0

#### Major Features and Improvements
Expand Down
61 changes: 23 additions & 38 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>fateboard</groupId>
<artifactId>fateboard</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.7</version>
<version>2.7.4</version>
<relativePath/>
</parent>

Expand All @@ -20,9 +20,10 @@
<description>fateboard</description>

<properties>
<lombok.version>1.18.22</lombok.version>
<druid.version>1.1.10</druid.version>
<druid.version>1.1.10</druid.version>
<lombok.version>1.18.24</lombok.version>
<jasypt.version>2.0.0</jasypt.version>
<springdoc.version>1.6.8</springdoc.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand All @@ -43,24 +44,12 @@
<version>3.12.0</version>
</dependency>


<dependency>
<groupId>ch.ethz.ganymed</groupId>
<artifactId>ganymed-ssh2</artifactId>
<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 @@ -69,13 +58,13 @@
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.3</version>
<version>1.4</version>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
<version>2.11.0</version>
</dependency>

<dependency>
Expand All @@ -97,7 +86,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.0-jre</version>
<version>31.1-jre</version>
</dependency>

<dependency>
Expand All @@ -109,8 +98,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>

<version>4.13.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
Expand All @@ -128,22 +116,9 @@
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>3.4.2</version>
<version>3.4.4</version>
</dependency>

<!-- springdoc start -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>${springdoc.version}</version>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-webmvc-core</artifactId>
<version>${springdoc.version}</version>
</dependency>
<!-- springdoc end -->

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand All @@ -154,13 +129,13 @@
<dependency>
<groupId>ma.glasnost.orika</groupId>
<artifactId>orika-core</artifactId>
<version>1.4.5</version>
<version>1.5.4</version>
</dependency>

<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.11</version>
<version>1.10.12</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -201,13 +176,23 @@
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.32</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.33</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>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.14.0-rc3</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -284,7 +269,7 @@
<!-- node安装路径 -->
<installDirectory>dist</installDirectory>
<!-- 前端代码路径 -->
<workingDirectory>${project.basedir}/resources-front-end</workingDirectory>
<workingDirectory>resources-front-end</workingDirectory>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion resources-front-end/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"html-webpack-plugin": "4.5.2",
"mini-css-extract-plugin": "0.4.1",
"node-notifier": "^8.0.2",
"node-sass": "^7.0.1",
"node-sass": "^8.0.0",
"optimize-css-assets-webpack-plugin": "5.0.0",
"ora": "3.0.0",
"path-to-regexp": "2.4.0",
Expand Down
Loading

0 comments on commit 16a6763

Please sign in to comment.