Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Kafka 3.6 #90

Merged
merged 1 commit into from
Mar 1, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build-and-publish:
name: Java Gradle
uses: bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@1.41.0
uses: bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@1.42.0
with:
java-version: 17
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
java-gradle-release:
name: Java Gradle
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.41.0
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.42.0
with:
java-version: 17
release-type: "${{ inputs.release-type }}"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ subprojects {
dependencies {
val log4jVersion: String by project
"testImplementation"(group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = log4jVersion)
"testImplementation"(group = "org.assertj", name = "assertj-core", version = "3.25.1")
"testImplementation"(group = "org.assertj", name = "assertj-core", version = "3.25.3")
}
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version=2.11.6-SNAPSHOT
org.gradle.caching=true
org.gradle.parallel=true
junit5Version=5.10.1
junit5Version=5.10.2
junit4Version=4.13.2
confluentVersion=7.5.1
kafkaVersion=3.5.2
log4jVersion=2.22.1
confluentVersion=7.6.0
kafkaVersion=3.6.1
log4jVersion=2.23.0
org.gradle.jvmargs=-Xmx2048m
2 changes: 1 addition & 1 deletion schema-registry-mock/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
"api"(group = "io.confluent", name = "kafka-schema-registry-client", version = confluentVersion)
"api"(group = "io.confluent", name = "kafka-streams-avro-serde", version = confluentVersion)

implementation(group = "org.wiremock", name = "wiremock", version = "3.3.1")
implementation(group = "org.wiremock", name = "wiremock", version = "3.4.2")

val junit5Version: String by project
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = junit5Version)
Expand Down
Loading