Skip to content

Releases: tchiotludo/akhq

0.4.1

23 Feb 18:08
4658139
Compare
Choose a tag to compare
0.4.1 Pre-release
Pre-release

Fix travis build #31

0.4.0

23 Feb 14:06
7b33a9a
Compare
Choose a tag to compare
0.4.0 Pre-release
Pre-release

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

⚠️ The configuration file have changed in order to match Micronaut requirement ⚠️

0.3.0

23 Feb 13:47
29c07cf
Compare
Choose a tag to compare
0.3.0 Pre-release
Pre-release

Schema registry support !

  • List schema
  • Create / update / delete a schema
  • View and delete individual schema version
  • Automatic deserialization of avro message on data view

⚠️ The configuration file have changed in order to support Schema registry ⚠️

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

peek 2019-02-11 14-31

0.2.1

31 Jan 12:57
Compare
Choose a tag to compare
0.2.1 Pre-release
Pre-release
  • Allow to produce directly to topic from the ui
  • Filter on consumer groups & topic list
  • Fix delete consumer group

peek 2019-01-31 13-45

0.2.0

26 Jan 07:51
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release

Features :

  • Update config for nodes & topics
  • Create a topic [#7]
  • Update consumers group offset by first / last / timestamp offsets

Bugfix:

  • Fix scrollbar issue on data page for firefox [#12]
  • Add a docker-compose.yml to quick start a preview of KafkaHQ [#15]
  • Update README.md to clarify configuration file [#11]

preview

0.1.5

18 Jan 15:27
Compare
Choose a tag to compare
0.1.5 Pre-release
Pre-release

New feature to search in topic data using server-sent events

preview

Complete refactor in assets to have modules

0.1.4

12 Jan 09:14
Compare
Choose a tag to compare
0.1.4 Pre-release
Pre-release

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

29 Dec 09:27
Compare
Choose a tag to compare
0.1.3 Pre-release
Pre-release
  • 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

23 Nov 14:36
Compare
Choose a tag to compare
0.1.2 Pre-release
Pre-release

handle application.path for app behind a reverse proxy

0.1.1

23 Nov 08:41
Compare
Choose a tag to compare
0.1.1 Pre-release
Pre-release

Display members on consumer groups list
Fix "" consumer group creation