Skip to content

Commit a5a52ab

Browse files
authored
Merge pull request #167 from FederatedAI/develop-1.11.2
Develop 1.11.2
2 parents f4db190 + b1597d6 commit a5a52ab

File tree

6 files changed

+25
-14
lines changed

6 files changed

+25
-14
lines changed

RELEASE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Release 1.11.2
2+
3+
#### Major Features and Improvements
4+
**Major Features**
5+
6+
* Dependencies updated
7+
* Display details optimization
8+
19
# Release 1.11.1
210

311
#### Major Features and Improvements

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>fateboard</groupId>
77
<artifactId>fateboard</artifactId>
8-
<version>1.11.1</version>
8+
<version>1.11.2</version>
99

1010
<parent>
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-starter-parent</artifactId>
13-
<version>2.7.4</version>
13+
<version>2.7.10</version>
1414
<relativePath/>
1515
</parent>
1616

@@ -93,7 +93,7 @@
9393
<dependency>
9494
<groupId>com.google.guava</groupId>
9595
<artifactId>guava</artifactId>
96-
<version>31.1-jre</version>
96+
<version>32.0.1-android</version>
9797
</dependency>
9898

9999
<dependency>
@@ -186,7 +186,7 @@
186186
<dependency>
187187
<groupId>org.yaml</groupId>
188188
<artifactId>snakeyaml</artifactId>
189-
<version>1.33</version>
189+
<version>2.0</version>
190190
</dependency>
191191
<dependency>
192192
<groupId>org.springframework.cloud</groupId>

resources-front-end/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
<body>
99
<div id="app"></div>
1010
<!-- built files will be auto injected -->
11+
<script src="./static/jsencrypt.min.js"></script>
1112
</body>
1213
</html>

resources-front-end/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
"file-saver": "^2.0.1",
2323
"hmac_sha1": "^0.1.1",
2424
"js-cookie": "2.2.0",
25-
"jsencrypt": "^3.2.1",
26-
"jsencrypter": "^1.2.1",
27-
"jszip": "^3.7.1",
25+
"jszip": "^3.8.0",
2826
"lodash": "^4.17.21",
2927
"mockjs": "1.0.1-beta3",
3028
"normalize.css": "7.0.0",
Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
import { JSEncrypt } from 'jsencrypt'
2-
3-
export default function rsa(publicKet, origin) {
4-
const jsencrypt = new JSEncrypt()
5-
jsencrypt.setPublicKey(publicKet)
6-
return jsencrypt.encrypt(origin)
7-
}
1+
export default function rsa(publicKet, origin) {
2+
if (window.JSEncrypt) {
3+
const jsencrypt = new window.JSEncrypt()
4+
jsencrypt.setPublicKey(publicKet)
5+
return jsencrypt.encrypt(origin)
6+
} else {
7+
return origin
8+
}
9+
}

resources-front-end/static/jsencrypt.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)