Skip to content

Commit 5e9ee93

Browse files
committed
chore: Merge branch 'main' into chore/bump-trino-version-for-25.11.0
2 parents 182063b + 2cd1c85 commit 5e9ee93

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ All notable changes to this project will be documented in this file.
2121
- spark: Add `3.5.7` ([#1280]).
2222
- spark-connect-client: Add `3.5.7` ([#1280]).
2323
- superset: Add `4.1.4` ([#1284]).
24+
- spark: Add `4.0.1` ([#1286]).
25+
- spark-connect-client: Add `4.0.1` ([#1286]).
2426
- trino/trino-storage-connector: Add `477` ([#1285]).
2527

2628
### Changed
@@ -46,6 +48,8 @@ All notable changes to this project will be documented in this file.
4648
- spark: Remove `3.5.5` ([#1280]).
4749
- spark-connect-client: Remove unused example script from the image ([#1280]).
4850
- kafka: Remove `3.9.0` ([#1283]).
51+
- spark: Remove `4.0.0` ([#1286]).
52+
- spark-connect-client: Remove `4.0.0` ([#1286]).
4953
- trino/trino-storage-conector: Remove `470` ([#1285]).
5054

5155
[#1207]: https://github.com/stackabletech/docker-images/pull/1207
@@ -67,8 +71,10 @@ All notable changes to this project will be documented in this file.
6771
[#1278]: https://github.com/stackabletech/docker-images/pull/1278
6872
[#1279]: https://github.com/stackabletech/docker-images/pull/1279
6973
[#1283]: https://github.com/stackabletech/docker-images/pull/1283
74+
[#1280]: https://github.com/stackabletech/docker-images/pull/1280
7075
[#1284]: https://github.com/stackabletech/docker-images/pull/1284
7176
[#1285]: https://github.com/stackabletech/docker-images/pull/1285
77+
[#1286]: https://github.com/stackabletech/docker-images/pull/1286
7278

7379
## [25.7.0] - 2025-07-23
7480

rust/boil/src/build/cli.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub struct BuildArguments {
4747
/// The format is host[:port].
4848
#[arg(
4949
short, long,
50-
default_value_t = HostPort::localhost(),
50+
default_value_t = Self::default_registry(),
5151
value_hint = ValueHint::Hostname,
5252
help_heading = "Registry Options"
5353
)]
@@ -125,6 +125,13 @@ impl BuildArguments {
125125
"0.0.0-dev".parse().expect("must be a valid SemVer")
126126
}
127127

128+
fn default_registry() -> HostPort {
129+
HostPort {
130+
host: Host::Domain(String::from("oci.stackable.tech")),
131+
port: None,
132+
}
133+
}
134+
128135
// TODO: Auto-detect this
129136
fn default_architecture() -> TargetPlatform {
130137
TargetPlatform::Linux(Architecture::Amd64)

spark-connect-client/boil-config.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ java-base = "17"
1212
[versions."3.5.7".build-arguments]
1313
python-version = "3.11"
1414

15-
[versions."4.0.0".local-images]
16-
spark-k8s = "4.0.0"
15+
[versions."4.0.1".local-images]
16+
spark-k8s = "4.0.1"
1717
java-base = "17"
1818

19-
[versions."4.0.0".build-arguments]
19+
[versions."4.0.1".build-arguments]
2020
python-version = "3.11"

spark-k8s/boil-config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ jmx-exporter-version = "1.3.0"
3636
tini-version = "0.19.0"
3737
hbase-connector-version = "1.0.1"
3838

39-
[versions."4.0.0".local-images]
39+
[versions."4.0.1".local-images]
4040
"hadoop/hadoop" = "3.4.1"
4141
java-base = "17"
4242
java-devel = "17"
4343
hbase = "2.6.2"
4444
vector = "0.49.0"
4545

46-
[versions."4.0.0".build-arguments]
46+
[versions."4.0.1".build-arguments]
4747
python-version = "3.11"
4848
aws-java-sdk-bundle-version = "2.24.6"
4949
azure-storage-version = "7.0.1" # https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-azure/3.3.4

spark-k8s/stackable/patches/4.0.0/0001-Update-CycloneDX-plugin.patch renamed to spark-k8s/stackable/patches/4.0.1/0001-Update-CycloneDX-plugin.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 2da5608928018dd017c91b904eb8f84a4f6df78a Mon Sep 17 00:00:00 2001
1+
From b5de94e20aff25a394c6095c0649b4fcbaa941aa Mon Sep 17 00:00:00 2001
22
From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com>
33
Date: Fri, 4 Jul 2025 15:54:55 +0200
44
Subject: Update CycloneDX plugin
@@ -9,7 +9,7 @@ Subject: Update CycloneDX plugin
99
2 files changed, 5 insertions(+), 1 deletion(-)
1010

1111
diff --git a/dev/make-distribution.sh b/dev/make-distribution.sh
12-
index 16607e45ae..44e345a245 100755
12+
index 16607e45ae6..44e345a245d 100755
1313
--- a/dev/make-distribution.sh
1414
+++ b/dev/make-distribution.sh
1515
@@ -176,7 +176,6 @@ BUILD_COMMAND=("$MVN" clean package \
@@ -21,7 +21,7 @@ index 16607e45ae..44e345a245 100755
2121

2222
# Actually build the jar
2323
diff --git a/pom.xml b/pom.xml
24-
index 443d46a430..632920f100 100644
24+
index 22922143fc3..59c3747c625 100644
2525
--- a/pom.xml
2626
+++ b/pom.xml
2727
@@ -3327,6 +3327,11 @@
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
base = "fa33ea000a0bda9e5a3fa1af98e8e85b8cc5e4d4"
1+
base = "29434ea766b0fc3c3bf6eaadb43a8f931133649e"
22
mirror = "https://github.com/stackabletech/spark.git"

0 commit comments

Comments
 (0)