From 04a8c08494b5178d643dc6438f1f1c2496d11685 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jun 2023 01:57:30 +0000 Subject: [PATCH] Bump com.google.protobuf:protobuf-java from 3.22.2 to 3.23.3 Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.22.2 to 3.23.3. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/generate_changelog.py) - [Commits](https://github.com/protocolbuffers/protobuf/compare/v3.22.2...v3.23.3) --- 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..7cc15e899d 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.23.3' 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..8909b48910 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.23.3" 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"