Skip to content

Commit e837f37

Browse files
committed
Update changelog
1 parent 89d3983 commit e837f37

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66
#### New Features
77
- [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.
88

9+
#### Bug Fixes
10+
- [ISSUE-184](https://github.com/SourceLabOrg/kafka-webview/issues/184) Cluster Kafka Consumer View for multiple topics. When using Cluster Kafka Consumer view for a specific consumer that is connected to multiple topics the WebView shows diagram and information of only of one topic. First pass effort to allow selecting which topic to view metrics for.
11+
912
#### Internal Dependency Updates
10-
- Upgrade from SpringBoot 2.0.8 to 2.1.8.
13+
- Upgrade from SpringBoot 2.0.8 to 2.1.9.
1114
- org.apache.commons:commons-compress updated from 1.18 to 1.19.
1215
- Guava from 28.0-jre to 28.1-jre.
1316
- Sonatype Nexus plugin updated from 1.6.7 to 1.6.8.
1417
- maven-compiler-plugin from 3.6.1 to 3.8.1.
1518

19+
#### Other Notes
20+
21+
The LDAP Actuator health check is now disabled by default. If needed, you can explicitly re-enable this by adding the following to your configuration file:
22+
23+
```yml
24+
management:
25+
health:
26+
ldap:
27+
enabled: true
28+
```
29+
1630
## 2.4.0 (07/02/2019)
1731
#### New Features
1832
- [PR-180](https://github.com/SourceLabOrg/kafka-webview/issues/180) Consumer Group page now shows average rate of consumption per partition.

kafka-webview-ui/src/main/resources/config/base.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ spring:
4343
show-sql: false
4444
open-in-view: true
4545

46+
## Disable LDAP Management by default
47+
management:
48+
health:
49+
ldap:
50+
enabled: false
51+
4652
## Various App Configs
4753
app:
4854
name: Kafka Web View

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<parent>
7272
<groupId>org.springframework.boot</groupId>
7373
<artifactId>spring-boot-starter-parent</artifactId>
74-
<version>2.1.8.RELEASE</version>
74+
<version>2.1.9.RELEASE</version>
7575
</parent>
7676

7777
<dependencies>

0 commit comments

Comments
 (0)