Skip to content

Commit 741677c

Browse files
authored
Merge pull request #271 from SourceLabOrg/spp/2.9.1-prep
Prepare for release of 2.9.1
2 parents f4e8e45 + e71767b commit 741677c

File tree

5 files changed

+27
-17
lines changed

5 files changed

+27
-17
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
The format is based on [Keep a Changelog](http://keepachangelog.com/)
33
and this project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## 2.9.1 (10/28/2022)
6+
7+
## Bug Fixes
8+
- Fixed Environment variable for Acuator Port [Issue-235](https://github.com/SourceLabOrg/kafka-webview/issues/235) Thanks [renjanmenon](https://github.com/renjanmenon)!
9+
10+
#### Internal Dependency Updates
11+
- Upgrade from SpringBoot 2.6.6 to 2.6.13.
12+
- Updated Kafka Client library version from 2.8.1 to 2.8.2.
13+
- Protobuf from 3.20.0 to 3.21.9.
14+
- thymeleaf-layout-dialect from 3.0.0 to 3.1.0.
15+
- com.hubspot.jackson.jackson-datatype-protobuf 0.9.12 to 0.9.13.
16+
- Apache Avro from 1.11.0 to 1.11.1.
17+
518
## 2.9.0 (04/14/2022)
619
SpringBoot framework and internal dependencies update for various security concerns.
720

dev-cluster/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<artifactId>kafka-webview</artifactId>
77
<groupId>org.sourcelab</groupId>
8-
<version>2.9.0</version>
8+
<version>2.9.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>dev-cluster</artifactId>
13-
<version>2.9.0</version>
13+
<version>2.9.1</version>
1414

1515
<!-- Require Maven 3.3.9 -->
1616
<prerequisites>

kafka-webview-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.sourcelab</groupId>
77
<artifactId>kafka-webview</artifactId>
8-
<version>2.9.0</version>
8+
<version>2.9.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>kafka-webview-plugin</artifactId>

kafka-webview-ui/pom.xml

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<parent>
66
<artifactId>kafka-webview</artifactId>
77
<groupId>org.sourcelab</groupId>
8-
<version>2.9.0</version>
8+
<version>2.9.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>kafka-webview-ui</artifactId>
12-
<version>2.9.0</version>
12+
<version>2.9.1</version>
1313

1414
<!-- Module Description and Ownership -->
1515
<name>Kafka WebView UI</name>
@@ -32,10 +32,10 @@
3232
<java.version>1.8</java.version>
3333

3434
<!-- Dependency versions -->
35-
<avro.version>1.11.0</avro.version>
35+
<avro.version>1.11.1</avro.version>
3636
<bootstrap.version>4.0.0-beta</bootstrap.version>
37-
<kafka.version>2.8.1</kafka.version>
38-
<protobuf.version>3.20.0</protobuf.version>
37+
<kafka.version>2.8.2</kafka.version>
38+
<protobuf.version>3.21.9</protobuf.version>
3939
<thymeleaf.version>3.0.15.RELEASE</thymeleaf.version>
4040
<guava.version>31.1-jre</guava.version>
4141
</properties>
@@ -73,7 +73,7 @@
7373
<dependency>
7474
<groupId>nz.net.ultraq.thymeleaf</groupId>
7575
<artifactId>thymeleaf-layout-dialect</artifactId>
76-
<version>3.0.0</version>
76+
<version>3.1.0</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>org.thymeleaf.extras</groupId>
@@ -161,7 +161,7 @@
161161
<dependency>
162162
<groupId>com.hubspot.jackson</groupId>
163163
<artifactId>jackson-datatype-protobuf</artifactId>
164-
<version>0.9.12</version>
164+
<version>0.9.13</version>
165165
<exclusions>
166166
<!-- exclude out-dated dependency -->
167167
<exclusion>
@@ -230,7 +230,7 @@
230230
<dependency>
231231
<groupId>com.salesforce.kafka.test</groupId>
232232
<artifactId>kafka-junit4</artifactId>
233-
<version>3.2.3</version>
233+
<version>3.2.4</version>
234234
<scope>test</scope>
235235
</dependency>
236236
<dependency>
@@ -263,7 +263,7 @@
263263
<dependency>
264264
<groupId>org.zapodot</groupId>
265265
<artifactId>embedded-ldap-junit</artifactId>
266-
<version>0.8.1</version>
266+
<version>0.9.0</version>
267267
<scope>test</scope>
268268
</dependency>
269269
</dependencies>

pom.xml

+2-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>org.sourcelab</groupId>
88
<artifactId>kafka-webview</artifactId>
99
<packaging>pom</packaging>
10-
<version>2.9.0</version>
10+
<version>2.9.1</version>
1111

1212
<!-- Define submodules -->
1313
<modules>
@@ -57,9 +57,6 @@
5757
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5858
<java.version>1.8</java.version>
5959

60-
<!-- Override versions for security fixes -->
61-
<tomcat.version>9.0.62</tomcat.version>
62-
6360
<!-- test toggling -->
6461
<skipTests>false</skipTests>
6562
<skipCheckStyle>false</skipCheckStyle>
@@ -71,7 +68,7 @@
7168
<parent>
7269
<groupId>org.springframework.boot</groupId>
7370
<artifactId>spring-boot-starter-parent</artifactId>
74-
<version>2.6.6</version>
71+
<version>2.6.13</version>
7572
</parent>
7673

7774
<dependencies>

0 commit comments

Comments
 (0)