Skip to content

Commit d28ac84

Browse files
authored
release 2.5.1 (#210)
1 parent 91149f1 commit d28ac84

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.5.1 (05/18/2020)
6+
Expose HealthCheck and App Info endpoints without requiring authentication.
7+
8+
#### Internal Dependency Updates
9+
-[PR-198](https://github.com/SourceLabOrg/kafka-webview/pull/198) Upgrade from SpringBoot 2.1.9 to 2.1.14.
10+
511
## 2.5.0 (11/18/2019)
612
#### New Features
713
- [PR-194](https://github.com/SourceLabOrg/kafka-webview/pull/194) Adds a new built-in deserializer for byte[] that decodes the bytes into HEX values.

dev-cluster/pom.xml

Lines changed: 2 additions & 2 deletions
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.5.0</version>
8+
<version>2.5.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>dev-cluster</artifactId>
13-
<version>2.5.0</version>
13+
<version>2.5.1</version>
1414

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

kafka-webview-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
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.5.0</version>
8+
<version>2.5.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>kafka-webview-plugin</artifactId>

kafka-webview-ui/pom.xml

Lines changed: 3 additions & 3 deletions
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.5.0</version>
8+
<version>2.5.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>kafka-webview-ui</artifactId>
12-
<version>2.5.0</version>
12+
<version>2.5.1</version>
1313

1414
<!-- Module Description and Ownership -->
1515
<name>Kafka WebView UI</name>
@@ -178,7 +178,7 @@
178178
<dependency>
179179
<groupId>com.google.guava</groupId>
180180
<artifactId>guava</artifactId>
181-
<version>28.1-jre</version>
181+
<version>29.0-jre</version>
182182
</dependency>
183183
<!-- Explicitly include updated protocol buffer version -->
184184
<dependency>

kafka-webview-ui/src/assembly/distribution/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
server:
22
## What port to run the service on.
3-
port: 8080
3+
port: ${PORT:8080}
44
servlet:
55
session:
66
## User login session timeout after 1 hour (3600 seconds)

pom.xml

Lines changed: 2 additions & 2 deletions
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.5.0</version>
10+
<version>2.5.1</version>
1111

1212
<!-- Define submodules -->
1313
<modules>
@@ -71,7 +71,7 @@
7171
<parent>
7272
<groupId>org.springframework.boot</groupId>
7373
<artifactId>spring-boot-starter-parent</artifactId>
74-
<version>2.1.9.RELEASE</version>
74+
<version>2.1.14.RELEASE</version>
7575
</parent>
7676

7777
<dependencies>

0 commit comments

Comments
 (0)