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

akhq/GHSA-r7pg-v2c8-mfg3 fix #30491

Merged
merged 1 commit into from
Oct 10, 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
4 changes: 2 additions & 2 deletions akhq.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: akhq
version: 0.25.1
epoch: 0
epoch: 1
description: "Kafka GUI for Apache Kafka to manage topics, topics data, consumers group, schema registry, connect and more"
copyright:
- license: Apache-2.0
Expand Down Expand Up @@ -29,7 +29,7 @@ pipeline:

- uses: patch
with:
patches: gradle.patch
patches: gradle.patch avro-1.12.0.patch

- runs: |
./gradlew build -x test -x startTestKafkaCluster --parallel --no-daemon
Expand Down
32 changes: 32 additions & 0 deletions akhq/avro-1.12.0.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
From 205f42b46560de2bdbe28e553b6639379b90bb2a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 5 Aug 2024 12:59:29 +0000
Subject: [PATCH] chore(deps): bump org.apache.avro:avro from 1.11.3 to 1.12.0

Bumps org.apache.avro:avro from 1.11.3 to 1.12.0.

---
updated-dependencies:
- dependency-name: org.apache.avro:avro
dependency-type: direct:production
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
---
build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index d9d4fa7ad..7a99ea44d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -136,7 +136,7 @@ dependencies {
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'

// avro
- implementation 'org.apache.avro:avro:1.11.3'
+ implementation 'org.apache.avro:avro:1.12.0'

// jackson-module-scala
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-scala_2.13', version: '2.17.1'
Loading