From 8aca72a73b3af7706707888080f20cb7f7742215 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 01:34:45 +0000 Subject: [PATCH] Bump com.google.protobuf:protobuf-java from 3.22.2 to 3.24.4 Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.22.2 to 3.24.4. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/compare/v3.22.2...v3.24.4) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../tutorials/multiple-event-types/kafka/code/build.gradle | 2 +- _includes/tutorials/serialization/kstreams/code/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/tutorials/multiple-event-types/kafka/code/build.gradle b/_includes/tutorials/multiple-event-types/kafka/code/build.gradle index 00d5ffe09f..da6424cd2d 100644 --- a/_includes/tutorials/multiple-event-types/kafka/code/build.gradle +++ b/_includes/tutorials/multiple-event-types/kafka/code/build.gradle @@ -45,7 +45,7 @@ repositories { apply plugin: "com.github.johnrengelman.shadow" dependencies { - implementation 'com.google.protobuf:protobuf-java:3.22.2' + implementation 'com.google.protobuf:protobuf-java:3.24.4' implementation 'org.apache.avro:avro:1.11.1' implementation 'org.slf4j:slf4j-simple:2.0.7' implementation 'org.apache.kafka:kafka-streams:3.4.0' diff --git a/_includes/tutorials/serialization/kstreams/code/build.gradle b/_includes/tutorials/serialization/kstreams/code/build.gradle index f4d160d5c4..1c85e8c9f7 100644 --- a/_includes/tutorials/serialization/kstreams/code/build.gradle +++ b/_includes/tutorials/serialization/kstreams/code/build.gradle @@ -33,7 +33,7 @@ apply plugin: "com.github.johnrengelman.shadow" dependencies { implementation "org.apache.avro:avro:1.11.1" - implementation "com.google.protobuf:protobuf-java:3.22.2" + implementation "com.google.protobuf:protobuf-java:3.24.4" implementation "org.slf4j:slf4j-simple:2.0.7" implementation "org.apache.kafka:kafka-streams:3.3.0" implementation "io.confluent:kafka-streams-avro-serde:7.3.0"