Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 2.5.1 (05/18/2020)
Expose HealthCheck and App Info endpoints without requiring authentication.

#### Internal Dependency Updates
-[PR-198](https://github.com/SourceLabOrg/kafka-webview/pull/198) Upgrade from SpringBoot 2.1.9 to 2.1.14.

## 2.5.0 (11/18/2019)
#### New Features
- [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.
Expand Down
4 changes: 2 additions & 2 deletions dev-cluster/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>kafka-webview</artifactId>
<groupId>org.sourcelab</groupId>
<version>2.5.0</version>
<version>2.5.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>dev-cluster</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>

<!-- Require Maven 3.3.9 -->
<prerequisites>
Expand Down
2 changes: 1 addition & 1 deletion kafka-webview-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.sourcelab</groupId>
<artifactId>kafka-webview</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>kafka-webview-plugin</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions kafka-webview-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<artifactId>kafka-webview</artifactId>
<groupId>org.sourcelab</groupId>
<version>2.5.0</version>
<version>2.5.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>kafka-webview-ui</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>

<!-- Module Description and Ownership -->
<name>Kafka WebView UI</name>
Expand Down Expand Up @@ -178,7 +178,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.1-jre</version>
<version>29.0-jre</version>
</dependency>
<!-- Explicitly include updated protocol buffer version -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion kafka-webview-ui/src/assembly/distribution/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server:
## What port to run the service on.
port: 8080
port: ${PORT:8080}
servlet:
session:
## User login session timeout after 1 hour (3600 seconds)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>org.sourcelab</groupId>
<artifactId>kafka-webview</artifactId>
<packaging>pom</packaging>
<version>2.5.0</version>
<version>2.5.1</version>

<!-- Define submodules -->
<modules>
Expand Down Expand Up @@ -71,7 +71,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.9.RELEASE</version>
<version>2.1.14.RELEASE</version>
</parent>

<dependencies>
Expand Down