Skip to content

Commit a44dbad

Browse files
authored
Update SpringBoot release version (#59)
* Update SpringBoot release version * Update logback dependency version
1 parent e5fdd82 commit a44dbad

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
55
## 1.0.3 (TBD)
66
- Fix 500 error unable to find templates when running under windows.
77
- 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)
810
- [Issue#57](https://github.com/SourceLabOrg/kafka-webview/issues/57) Configure consumerId and consumerGroup using a configurable prefix.
911

1012
## 1.0.2 (01/26/2018)

kafka-webview-ui/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
<java.version>1.8</java.version>
3333
<bootstrap.version>4.0.0-beta</bootstrap.version>
34+
<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
3435
</properties>
3536

3637
<dependencies>
@@ -56,17 +57,17 @@
5657
<dependency>
5758
<groupId>org.thymeleaf</groupId>
5859
<artifactId>thymeleaf-spring4</artifactId>
59-
<version>3.0.7.RELEASE</version>
60+
<version>${thymeleaf.version}</version>
6061
</dependency>
6162
<dependency>
6263
<groupId>org.thymeleaf</groupId>
6364
<artifactId>thymeleaf</artifactId>
64-
<version>3.0.7.RELEASE</version>
65+
<version>${thymeleaf.version}</version>
6566
</dependency>
6667
<dependency>
6768
<groupId>nz.net.ultraq.thymeleaf</groupId>
6869
<artifactId>thymeleaf-layout-dialect</artifactId>
69-
<version>2.2.2</version>
70+
<version>2.3.0</version>
7071
</dependency>
7172
<dependency>
7273
<groupId>org.thymeleaf.extras</groupId>

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5757
<java.version>1.8</java.version>
5858

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+
5963
<!-- test toggling -->
6064
<skipTests>false</skipTests>
6165
<skipCheckStyle>false</skipCheckStyle>
@@ -66,7 +70,7 @@
6670
<parent>
6771
<groupId>org.springframework.boot</groupId>
6872
<artifactId>spring-boot-starter-parent</artifactId>
69-
<version>1.5.6.RELEASE</version>
73+
<version>1.5.10.RELEASE</version>
7074
</parent>
7175

7276
<dependencies>

0 commit comments

Comments
 (0)