File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5
5
## 1.0.3 (TBD)
6
6
- Fix 500 error unable to find templates when running under windows.
7
7
- Add start.bat script for running under windows.
8
+ - Update SpringBoot dependency from 1.5.6 to 1.5.10.
9
+ - Update logback-core dependency from 1.1.11 to 1.2.3 [ details] ( https://github.com/spring-projects/spring-boot/issues/8635 )
8
10
- [ Issue #57 ] ( https://github.com/SourceLabOrg/kafka-webview/issues/57 ) Configure consumerId and consumerGroup using a configurable prefix.
9
11
10
12
## 1.0.2 (01/26/2018)
Original file line number Diff line number Diff line change 31
31
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
32
32
<java .version>1.8</java .version>
33
33
<bootstrap .version>4.0.0-beta</bootstrap .version>
34
+ <thymeleaf .version>3.0.9.RELEASE</thymeleaf .version>
34
35
</properties >
35
36
36
37
<dependencies >
56
57
<dependency >
57
58
<groupId >org.thymeleaf</groupId >
58
59
<artifactId >thymeleaf-spring4</artifactId >
59
- <version >3.0.7.RELEASE </version >
60
+ <version >${thymeleaf.version} </version >
60
61
</dependency >
61
62
<dependency >
62
63
<groupId >org.thymeleaf</groupId >
63
64
<artifactId >thymeleaf</artifactId >
64
- <version >3.0.7.RELEASE </version >
65
+ <version >${thymeleaf.version} </version >
65
66
</dependency >
66
67
<dependency >
67
68
<groupId >nz.net.ultraq.thymeleaf</groupId >
68
69
<artifactId >thymeleaf-layout-dialect</artifactId >
69
- <version >2.2.2 </version >
70
+ <version >2.3.0 </version >
70
71
</dependency >
71
72
<dependency >
72
73
<groupId >org.thymeleaf.extras</groupId >
Original file line number Diff line number Diff line change 56
56
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
57
57
<java .version>1.8</java .version>
58
58
59
+ <!-- Override logback version for security fix -->
60
+ <!-- https://github.com/spring-projects/spring-boot/issues/8635 -->
61
+ <logback .version>1.2.3</logback .version>
62
+
59
63
<!-- test toggling -->
60
64
<skipTests >false</skipTests >
61
65
<skipCheckStyle >false</skipCheckStyle >
66
70
<parent >
67
71
<groupId >org.springframework.boot</groupId >
68
72
<artifactId >spring-boot-starter-parent</artifactId >
69
- <version >1.5.6 .RELEASE</version >
73
+ <version >1.5.10 .RELEASE</version >
70
74
</parent >
71
75
72
76
<dependencies >
You can’t perform that action at this time.
0 commit comments