-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(kafka): Restore version 3.7.1, bump 3.8.0 to 3.8.1 (#995)
* fix(kafka): Restore version 3.7.1 * fix(kafka): Replace version 3.8.0 with 3.8.1 * chore: Update changelog
- Loading branch information
1 parent
808321b
commit 55ed493
Showing
7 changed files
with
132 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
76 changes: 76 additions & 0 deletions
76
kafka/stackable/patches/3.8.1/0001-Add-cyclonedx-plugin.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Nick Larsen <[email protected]> | ||
Date: Thu, 6 Feb 2025 10:21:26 +0100 | ||
Subject: Add cyclonedx plugin | ||
|
||
--- | ||
build.gradle | 44 +++++++++++++++++++++++++++++++++++++++++++- | ||
1 file changed, 43 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/build.gradle b/build.gradle | ||
index 8b44b09087..fadb64fda5 100644 | ||
--- a/build.gradle | ||
+++ b/build.gradle | ||
@@ -48,6 +48,48 @@ plugins { | ||
// artifacts - see https://github.com/johnrengelman/shadow/issues/901 | ||
id 'com.github.johnrengelman.shadow' version '8.1.0' apply false | ||
id 'com.diffplug.spotless' version '6.14.0' apply false // 6.14.1 and newer require Java 11 at compile time, so we can't upgrade until AK 4.0 | ||
+ id 'org.cyclonedx.bom' version '1.10.0' | ||
+} | ||
+ | ||
+cyclonedxBom { | ||
+ // Specified the type of project being built. Defaults to 'library' | ||
+ projectType = "application" | ||
+ // Specified the version of the CycloneDX specification to use. Defaults to '1.5' | ||
+ schemaVersion = "1.5" | ||
+ // Boms destination directory. Defaults to 'build/reports' | ||
+ destination = file("build/reports") | ||
+ // The file name for the generated BOMs (before the file format suffix). Defaults to 'bom' | ||
+ outputName = "bom" | ||
+ // The file format generated, can be xml, json or all for generating both. Defaults to 'all' | ||
+ outputFormat = "json" | ||
+ includeConfigs = ["runtimeClasspath"] | ||
+ // Exclude test components. This list needs to be checked and, if it changed, updated for every new Kafka version. | ||
+ // The list can be obtained by running `gradle projects | grep upgrade-system-tests` | ||
+ skipProjects = [ | ||
+ 'upgrade-system-tests-0100', | ||
+ 'upgrade-system-tests-0101', | ||
+ 'upgrade-system-tests-0102', | ||
+ 'upgrade-system-tests-0110', | ||
+ 'upgrade-system-tests-10', | ||
+ 'upgrade-system-tests-11', | ||
+ 'upgrade-system-tests-20', | ||
+ 'upgrade-system-tests-21', | ||
+ 'upgrade-system-tests-22', | ||
+ 'upgrade-system-tests-23', | ||
+ 'upgrade-system-tests-24', | ||
+ 'upgrade-system-tests-25', | ||
+ 'upgrade-system-tests-26', | ||
+ 'upgrade-system-tests-27', | ||
+ 'upgrade-system-tests-28', | ||
+ 'upgrade-system-tests-30', | ||
+ 'upgrade-system-tests-31', | ||
+ 'upgrade-system-tests-32', | ||
+ 'upgrade-system-tests-33', | ||
+ 'upgrade-system-tests-34', | ||
+ 'upgrade-system-tests-35', | ||
+ 'upgrade-system-tests-36', | ||
+ 'upgrade-system-tests-37' | ||
+ ] | ||
} | ||
|
||
ext { | ||
@@ -1011,7 +1053,7 @@ project(':core') { | ||
testImplementation libs.junitJupiter | ||
testImplementation libs.slf4jlog4j | ||
testImplementation libs.caffeine | ||
- | ||
+ | ||
generator project(':generator') | ||
} | ||
|
||
|
||
base-commit: 70d6ff42debf7e17478beb899fb5756bfbdbfbb5 | ||
-- | ||
2.40.1 | ||
|
38 changes: 38 additions & 0 deletions
38
kafka/stackable/patches/3.8.1/0002-Use-stackable-maven-mirror.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Nick Larsen <[email protected]> | ||
Date: Thu, 6 Feb 2025 10:25:36 +0100 | ||
Subject: Use stackable maven mirror | ||
|
||
--- | ||
build.gradle | 8 ++++++-- | ||
1 file changed, 6 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/build.gradle b/build.gradle | ||
index fadb64fda5..34786c0673 100644 | ||
--- a/build.gradle | ||
+++ b/build.gradle | ||
@@ -20,7 +20,9 @@ import java.nio.charset.StandardCharsets | ||
|
||
buildscript { | ||
repositories { | ||
- mavenCentral() | ||
+ maven { | ||
+ url 'https://build-repo.stackable.tech/repository/maven-public/' | ||
+ } | ||
} | ||
apply from: "$rootDir/gradle/dependencies.gradle" | ||
|
||
@@ -168,7 +170,9 @@ ext { | ||
allprojects { | ||
|
||
repositories { | ||
- mavenCentral() | ||
+ maven { | ||
+ url 'https://build-repo.stackable.tech/repository/maven-public/' | ||
+ } | ||
} | ||
|
||
dependencyUpdates { | ||
-- | ||
2.40.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
upstream = "https://github.com/apache/kafka" | ||
base = "70d6ff42debf7e17478beb899fb5756bfbdbfbb5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters