Skip to content
Open
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
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
junit = "6.0.0"
mockito = "5.20.0"
testcontainers = "1.21.3"
kafkaUtils = "1.2.1"
kafkaUtils = "1.3.0"

[libraries]
kafka-bom = { group = "com.bakdata.kafka", name = "kafka-bom", version.ref = "kafkaUtils" }
Expand All @@ -17,7 +17,7 @@ kafka-streams-avro-serde = { group = "io.confluent", name = "kafka-streams-avro-
kafka-protobuf-provider = { group = "io.confluent", name = "kafka-protobuf-provider" }
largeMessage-bom = { group = "com.bakdata.kafka", name = "large-message-bom", version = "3.1.0" }
largeMessage-core = { group = "com.bakdata.kafka", name = "large-message-core" }
errorHandling-bom = { group = "com.bakdata.kafka", name = "error-handling-bom", version = "2.0.0" }
errorHandling-bom = { group = "com.bakdata.kafka", name = "error-handling-bom", version = "2.1.0" }
errorHandling-core = { group = "com.bakdata.kafka", name = "error-handling-core" }
picocli = { group = "info.picocli", name = "picocli", version = "4.7.7" }
slf4j = { group = "org.slf4j", name = "slf4j-api", version = "2.0.17" }
Expand All @@ -33,7 +33,7 @@ mockito-core = { group = "org.mockito", name = "mockito-core", version.ref = "mo
mockito-junit = { group = "org.mockito", name = "mockito-junit-jupiter", version.ref = "mockito" }
testcontainers-junit = { group = "org.testcontainers", name = "junit-jupiter", version.ref = "testcontainers" }
testcontainers-kafka = { group = "org.testcontainers", name = "kafka", version.ref = "testcontainers" }
fluentKafkaStreamsTests = { group = "com.bakdata.fluent-kafka-streams-tests", name = "fluent-kafka-streams-tests-junit5", version = "3.4.1" }
fluentKafkaStreamsTests = { group = "com.bakdata.fluent-kafka-streams-tests", name = "fluent-kafka-streams-tests-junit5", version = "3.5.0" }
log4j-slf4j2 = { group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = "2.25.1" }
awaitility = { group = "org.awaitility", name = "awaitility", version = "4.3.0" }

Expand Down
2 changes: 1 addition & 1 deletion streams-bootstrap-cli-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {
testImplementation(libs.mockito.junit)
testImplementation(testFixtures(project(":streams-bootstrap-test")))
testImplementation(libs.kafka.streams.avro.serde) {
exclude(group = "org.apache.kafka", module = "kafka-clients") // force usage of OSS kafka-clients
exclude(group = "org.apache.kafka") // force usage of OSS kafka-clients
}
testImplementation(libs.log4j.slf4j2)
}
6 changes: 3 additions & 3 deletions streams-bootstrap-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ dependencies {
api(libs.kafka.streams)
api(libs.kafka.clients)
implementation(libs.kafka.schema.serializer) {
exclude(group = "org.apache.kafka", module = "kafka-clients") // force usage of OSS kafka-clients
exclude(group = "org.apache.kafka") // force usage of OSS kafka-clients
exclude(group = "org.slf4j", module = "slf4j-api") // Conflict with 2.x when used as dependency
}
api(libs.kafka.schema.registry.client) {
exclude(group = "org.apache.kafka", module = "kafka-clients") // force usage of OSS kafka-clients
exclude(group = "org.apache.kafka") // force usage of OSS kafka-clients
exclude(group = "org.slf4j", module = "slf4j-api") // Conflict with 2.x when used as dependency
}
implementation(libs.slf4j)
Expand All @@ -35,7 +35,7 @@ dependencies {

testImplementation(testFixtures(project(":streams-bootstrap-test")))
testImplementation(libs.kafka.streams.avro.serde) {
exclude(group = "org.apache.kafka", module = "kafka-clients") // force usage of OSS kafka-clients
exclude(group = "org.apache.kafka") // force usage of OSS kafka-clients
}
testImplementation(libs.kafka.group.coordinator)
testImplementation(libs.log4j.slf4j2)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ <GK, GV, RV> KStreamX<K, RV> leftJoin(GlobalKTable<GK, GV> globalTable,

@Override
<KOut, VOut> KStreamX<KOut, VOut> process(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
String... stateStoreNames);

/**
Expand All @@ -866,7 +866,7 @@ <KOut, VOut> KStreamX<KOut, VOut> process(
* @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier)
*/
<KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
String... stateStoreNames);

/**
Expand All @@ -883,13 +883,13 @@ <KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
* @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier, java.util.function.Predicate)
*/
<KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
java.util.function.Predicate<Exception> errorFilter,
String... stateStoreNames);

@Override
<KOut, VOut> KStreamX<KOut, VOut> process(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
Named named, String... stateStoreNames);

/**
Expand All @@ -906,7 +906,7 @@ <KOut, VOut> KStreamX<KOut, VOut> process(
* @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier)
*/
<KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
Named named, String... stateStoreNames);

/**
Expand All @@ -924,13 +924,13 @@ <KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
* @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier, java.util.function.Predicate)
*/
<KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
ProcessorSupplier<? super K, ? super V, KOut, VOut> processorSupplier,
ProcessorSupplier<? super K, ? super V, ? extends KOut, ? extends VOut> processorSupplier,
java.util.function.Predicate<Exception> errorFilter,
Named named, String... stateStoreNames);

@Override
<VOut> KStreamX<K, VOut> processValues(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
String... stateStoreNames);

/**
Expand All @@ -947,7 +947,7 @@ <VOut> KStreamX<K, VOut> processValues(
* @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier)
*/
<VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
String... stateStoreNames);

/**
Expand All @@ -965,13 +965,13 @@ <VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
* @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier, java.util.function.Predicate)
*/
<VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
java.util.function.Predicate<Exception> errorFilter,
String... stateStoreNames);

@Override
<VOut> KStreamX<K, VOut> processValues(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
Named named, String... stateStoreNames);

/**
Expand All @@ -989,7 +989,7 @@ <VOut> KStreamX<K, VOut> processValues(
* @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier)
*/
<VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
Named named, String... stateStoreNames);

/**
Expand All @@ -1008,7 +1008,7 @@ <VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
* @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier, java.util.function.Predicate)
*/
<VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
FixedKeyProcessorSupplier<? super K, ? super V, VOut> processorSupplier,
FixedKeyProcessorSupplier<? super K, ? super V, ? extends VOut> processorSupplier,
java.util.function.Predicate<Exception> errorFilter,
Named named, String... stateStoreNames);
}
Loading
Loading