Skip to content
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: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file.

### Added

- airflow: Add 3.1.5 ([#1405]).
- airflow: Add 3.1.6 ([#1405], [#1422]).
- druid: Add 35.0.1 ([#1406]).
- superset: Add 6.0.0 ([#1337], [#1393]).
- opa: Add 1.12.2 ([#1396]).
Expand Down Expand Up @@ -94,6 +94,7 @@ All notable changes to this project will be documented in this file.
[#1409]: https://github.com/stackabletech/docker-images/pull/1409
[#1410]: https://github.com/stackabletech/docker-images/pull/1410
[#1414]: https://github.com/stackabletech/docker-images/pull/1414
[#1422]: https://github.com/stackabletech/docker-images/pull/1422

## [25.11.0] - 2025-11-07

Expand Down
6 changes: 3 additions & 3 deletions airflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ uv pip install --no-cache-dir /tmp/opa_auth_manager-0.1.0-py3-none-any.whl

# Create the SBOM for Airflow
# Important: All `pip install` commands must be above this line, otherwise the SBOM will be incomplete
if [ "$PRODUCT_VERSION" == "3.1.5" ]; then
cyclonedx-py environment --spec-version 1.5 --output-file /tmp/sbom.json
else
if [ "$PRODUCT_VERSION" == "2.9.3" ] || [ "$PRODUCT_VERSION" == "3.0.6" ]; then
cyclonedx-py environment --schema-version 1.5 --outfile /tmp/sbom.json
else
cyclonedx-py environment --spec-version 1.5 --output-file /tmp/sbom.json
fi
uv pip uninstall cyclonedx-bom

Expand Down
4 changes: 2 additions & 2 deletions airflow/boil-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ opa-auth-manager = "airflow-3"
nodejs-version = "20"

# Supported
[versions."3.1.5".local-images]
[versions."3.1.6".local-images]
"shared/statsd-exporter" = "0.28.0"
vector = "0.52.0"
stackable-devel = "1.0.0"

[versions."3.1.5".build-arguments]
[versions."3.1.6".build-arguments]
# NOTE (@Techassi): Maybe this version can be bumped
python-version = "3.12"
git-sync-version = "v4.5.1"
Expand Down
Loading