From 981f88405994ad3dac2362606a29eb2d37984d06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 01:20:11 +0000 Subject: [PATCH] Bump com.google.protobuf:protobuf-java from 3.22.2 to 3.25.0 Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.22.2 to 3.25.0. - [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.25.0) --- 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..a3ace8bbf1 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.25.0' 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..87d974dc94 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.25.0" 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"