Releases: tchiotludo/akhq
Releases · tchiotludo/akhq
0.4.1
0.4.0
Mostly a technical release, I move the whole application to micronaut !
Also :
- add configuration options to size and sort order [#28]
- update README.md with all the configuration available.
- improve development environnement thanks to micronaut (works both in docker or with gradle)
- fix some sse bug on search topic data
- update to last gradle version
0.3.0
Schema registry support !
- List schema
- Create / update / delete a schema
- View and delete individual schema version
- Automatic deserialization of avro message on data view
Before :
{
kafka {
connections {
my-cluster-1 {
bootstrap.servers: "kafka:9092"
}
}
}
Now :
{
kafka {
connections {
my-cluster-1 {
properties {
bootstrap.servers: "kafka:9092"
}
registry: "http://schema-registry:8085"
}
}
}
All configurations parameters are now in a properties
key
0.2.1
0.2.0
Features :
- Update config for nodes & topics
- Create a topic [#7]
- Update consumers group offset by first / last / timestamp offsets
Bugfix:
0.1.5
0.1.4
Fix fetch topic data for :
- Compacted topic that could show empty result
- Sort newest that could skip some last records
Add unit test to validate that all data is consumed
0.1.3
- Topic Tab : display log dir info
- Topic Data : Allow to delete a record on compacted topic
- Topic Data : Display headers on datas pages
- Topic Data : filter by timestamp
- Topic Data : Double click to see with highlight
- Dev environment with livereload
0.1.2
handle application.path for app behind a reverse proxy
0.1.1
Display members on consumer groups list
Fix "" consumer group creation