Skip to content

Commit

Permalink
Merge branch 'dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jamfor352 authored Oct 29, 2024
2 parents 8d39a7c + 63b7841 commit e8dc542
Show file tree
Hide file tree
Showing 11 changed files with 1,870 additions and 472 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ plugins {
// akhq
id "com.gorylenko.gradle-git-properties" version "2.4.2"
id 'com.adarshr.test-logger' version '4.0.0'
id 'org.gradle.test-retry' version '1.5.10'
id 'org.gradle.test-retry' version '1.6.0'
id 'com.github.psxpaul.execfork' version '0.2.2'
id "com.github.ben-manes.versions" version "0.51.0"
id "com.github.davidmc24.gradle.plugin.avro" version "1.9.1"
// idea
id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.8"
id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.9"
}
java {
sourceCompatibility = JavaVersion.toVersion("17")
Expand Down Expand Up @@ -124,13 +124,13 @@ dependencies {
implementation group: 'io.strimzi', name: 'kafka-oauth-client', version: '0.15.0'

// log
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.13'
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version: '2.0.13'
implementation group: 'org.slf4j', name: 'log4j-over-slf4j', version: '2.0.13'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.16'
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version: '2.0.16'
implementation group: 'org.slf4j', name: 'log4j-over-slf4j', version: '2.0.16'

// utils
implementation group: 'org.codehaus.httpcache4j.uribuilder', name: 'uribuilder', version: '2.0.0'
implementation 'com.google.guava:guava:33.3.0-jre'
implementation 'com.google.guava:guava:33.3.1-jre'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
Expand All @@ -157,7 +157,7 @@ dependencies {
// Password hashing
implementation group: "org.mindrot", name: "jbcrypt", version: "0.4"

implementation group: 'org.apache.groovy', name: 'groovy-all', version: '4.0.22'
implementation group: 'org.apache.groovy', name: 'groovy-all', version: '4.0.23'
// api

// client
Expand All @@ -170,7 +170,7 @@ dependencies {
implementation ("software.amazon.glue:schema-registry-serde:1.1.20")


implementation group: 'io.projectreactor', name: 'reactor-core', version: '3.6.9'
implementation group: 'io.projectreactor', name: 'reactor-core', version: '3.6.10'

implementation 'io.jsonwebtoken:jjwt-impl:0.12.6'
}
Expand Down
2 changes: 1 addition & 1 deletion client/src/containers/Topic/Topic/TopicData/TopicData.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,7 @@ class TopicData extends Root {
loading={loading}
reduce={true}
firstHeader={firstColumns}
isChecked={this.props.exportSome}
isChecked={messages?.length === this.state.messagesToExport?.length}
columns={[
{
id: 'checkboxes',
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/configuration/authentifications/github.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ akhq:
The username field can be any string field, the roles field has to be a JSON array.
## References
https://micronaut-projects.github.io/micronaut-security/latest/guide/#oauth2-configuration
[https://micronaut-projects.github.io/micronaut-security/latest/guide/#oauth2-configuration](https://micronaut-projects.github.io/micronaut-security/latest/guide/#oauth2-configuration)
Loading

0 comments on commit e8dc542

Please sign in to comment.