Skip to content

chore(spark): update patch versions #1022

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

Merged
merged 5 commits into from
Mar 12, 2025
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ All notable changes to this project will be documented in this file.
- superset: Add version `4.1.1` ([#991]).
- Add Patchable patch management tool ([#1003], [#1005], [#1007]).
- nifi: Add 1.28.1, 2.2.0 ([#1006]).
- spark: Add 3.5.5 ([#1022])

### Changed

Expand All @@ -50,6 +51,7 @@ All notable changes to this project will be documented in this file.
- trino-storage-connector: Remove version 469 ([#999]).
- nifi: Remove 2.0.0 ([#1006]).
- druid: Remove 26.0.0 ([#984])
- spark: Remove 3.5.1 ([#1022])

### Fixed

Expand Down Expand Up @@ -88,6 +90,7 @@ All notable changes to this project will be documented in this file.
[#1006]: https://github.com/stackabletech/docker-images/pull/1006
[#1007]: https://github.com/stackabletech/docker-images/pull/1007
[#1013]: https://github.com/stackabletech/docker-images/pull/1013
[#1022]: https://github.com/stackabletech/docker-images/pull/1022

## [24.11.1] - 2025-01-14

Expand Down
2 changes: 1 addition & 1 deletion rust/patchable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ For more details, run `cargo patchable --help`.
## Notes

- patchable only supports linear patch series (no merges beyond the base commit)
- patchable doesn't support support merging "materialized" trees, merge the .patch files instead, and `checkout`/`export` to update the hashes
- patchable doesn't support merging "materialized" trees, merge the .patch files instead, and `checkout`/`export` to update the hashes
- `patchable checkout` doesn't support resolving patch conflicts, use `git am` instead (and then `patchable export` the resolved patches)
- Always run patchable via `cargo patchable` (rather than `cargo install`ing it), to ensure that you use the correct version for a given checkout of docker-images

Expand Down
40 changes: 0 additions & 40 deletions spark-k8s/stackable/patches/3.5.1/0002-Fix-CVE-2024-36114.patch

This file was deleted.

2 changes: 0 additions & 2 deletions spark-k8s/stackable/patches/3.5.1/patchable.toml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
From 08b7c02a497b8b3b70616281f810a898b1719a78 Mon Sep 17 00:00:00 2001
From: Lukas Voetmand <lukas.voetmand@stackable.tech>
Date: Fri, 6 Sep 2024 17:53:52 +0200
From 37ad7dcbb2a77267bbddafc4f3b3d99fddda0b28 Mon Sep 17 00:00:00 2001
From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com>
Date: Tue, 11 Mar 2025 17:29:39 +0200
Subject: Update CycloneDX plugin

---
Expand All @@ -21,10 +21,10 @@ index ef7c010e93..0f4c1c74e4 100755

# Actually build the jar
diff --git a/pom.xml b/pom.xml
index 0f504dbee8..6cca7db7bf 100644
index 9b009c3a42..483dceb8ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3482,7 +3482,12 @@
@@ -3534,7 +3534,12 @@
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
Expand Down
2 changes: 2 additions & 0 deletions spark-k8s/stackable/patches/3.5.5/patchable.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
upstream = "https://github.com/apache/spark.git"
base = "7c29c664cdc9321205a98a14858aaf8daaa19db2"
8 changes: 4 additions & 4 deletions spark-k8s/versions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
versions = [
{
"product": "3.5.1",
"product": "3.5.2",
"java-base": "17",
"java-devel": "17",
"python": "3.11",
Expand All @@ -13,12 +13,12 @@
"stax2_api": "4.2.1", # https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/2.15.2
"woodstox_core": "6.5.1", # https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/2.15.2
"vector": "0.43.1",
"jmx_exporter": "1.0.1-stackable",
"jmx_exporter": "1.1.0",
"tini": "0.19.0",
"hbase_connector": "1.0.1",
},
{
"product": "3.5.2",
"product": "3.5.5",
"java-base": "17",
"java-devel": "17",
"python": "3.11",
Expand All @@ -31,7 +31,7 @@
"stax2_api": "4.2.1", # https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/2.15.2
"woodstox_core": "6.5.1", # https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/2.15.2
"vector": "0.43.1",
"jmx_exporter": "1.0.1-stackable",
"jmx_exporter": "1.1.0",
"tini": "0.19.0",
"hbase_connector": "1.0.1",
},
Expand Down
Loading