Skip to content

Commit a99d481

Browse files
committed
Merge branch 'main' of https://github.com/stackabletech/docker-images into feat/include-sourcecode
2 parents a7caad3 + ab18af7 commit a99d481

File tree

6 files changed

+885
-1
lines changed

6 files changed

+885
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
99
- airflow: check for correct permissions and ownerships in /stackable folder via
1010
`check-permissions-ownership.sh` provided in stackable-base image ([#1054]).
1111
- airflow: Add `2.10.5` ([#1108]).
12+
- airflow: Add `3.0.1` ([#1122]).
1213
- druid: check for correct permissions and ownerships in /stackable folder via
1314
`check-permissions-ownership.sh` provided in stackable-base image ([#1039]).
1415
- druid: Add `33.0.0` ([#1110]).
@@ -62,6 +63,7 @@ All notable changes to this project will be documented in this file.
6263
- vector: Bump to `0.46.1` ([#1098]).
6364
- spark: update dependencies for 3.5.5 ([#1094])
6465
- nifi: include NAR SBOMs ([#1119])
66+
- nifi: update patch allowing to bypass host header validation starting with NiFi 2.4.0 ([#1125]).
6567
- BREAKING: kcat: Stop building kcat image ([#1124]).
6668

6769
### Fixed
@@ -140,7 +142,9 @@ All notable changes to this project will be documented in this file.
140142
[#1117]: https://github.com/stackabletech/docker-images/pull/1117
141143
[#1119]: https://github.com/stackabletech/docker-images/pull/1119
142144
[#1121]: https://github.com/stackabletech/docker-images/pull/1121
145+
[#1122]: https://github.com/stackabletech/docker-images/pull/1122
143146
[#1124]: https://github.com/stackabletech/docker-images/pull/1124
147+
[#1125]: https://github.com/stackabletech/docker-images/pull/1125
144148
[#1126]: https://github.com/stackabletech/docker-images/pull/1126
145149

146150
## [25.3.0] - 2025-03-21

airflow/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,13 @@ ARG STACKABLE_USER_UID
3232
ARG S3FS
3333
ARG CYCLONEDX_BOM
3434
ARG UV
35+
ARG EXTRAS
3536

37+
# Airflow "extras" packages are listed here: https://airflow.apache.org/docs/apache-airflow/stable/extra-packages-ref.html
38+
# They evolve over time and thus belong to the version-specific arguments.
3639
# The mysql provider is currently excluded.
3740
# Requires implementation of https://github.com/apache/airflow/blob/2.2.5/scripts/docker/install_mysql.sh
38-
ENV AIRFLOW_EXTRAS=async,amazon,celery,cncf.kubernetes,docker,dask,elasticsearch,ftp,grpc,hashicorp,http,ldap,google,google_auth,microsoft.azure,odbc,pandas,postgres,redis,sendgrid,sftp,slack,ssh,statsd,virtualenv,trino
41+
ENV AIRFLOW_EXTRAS=${EXTRAS}
3942

4043
RUN microdnf update && \
4144
microdnf install \
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Cython==3.1.0

0 commit comments

Comments
 (0)