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
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ All notable changes to this project will be documented in this file.
- nifi: Backport NIFI-14848 to NiFi ([#1225]).
- stackable-base: Add cert-tools ([#1247]).
- kafka: Add jackson xml dataformat for Kafka 4.0.0 ([#1262]).
- kafka: Add version `4.1.0` ([#1277]).
- druid: Add `34.0.0` ([#1263]).
- kafka: Add version `4.1.0` ([#1277]).
- airflow: Add version `3.0.6` ([#1278]).
- opa: Add `1.8.0` ([#1279]).

### Changed
Expand All @@ -33,8 +34,9 @@ All notable changes to this project will be documented in this file.
### Removed

- opensearch: Stop applying formatting plugin ([#1230]).
- kafka: Remove version `4.0.0` ([#1277]).
- druid: Remove `31.0.1` ([#1263]).
- kafka: Remove version `4.0.0` ([#1277]).
- airflow: Remove version `2.10.4` ([#1278]).
- opa: Remove `1.0.1` ([#1279]).

[#1207]: https://github.com/stackabletech/docker-images/pull/1207
Expand All @@ -50,9 +52,10 @@ All notable changes to this project will be documented in this file.
[#1253]: https://github.com/stackabletech/docker-images/pull/1253
[#1258]: https://github.com/stackabletech/docker-images/pull/1258
[#1262]: https://github.com/stackabletech/docker-images/pull/1262
[#1263]: https://github.com/stackabletech/docker-images/pull/1263
[#1264]: https://github.com/stackabletech/docker-images/pull/1264
[#1277]: https://github.com/stackabletech/docker-images/pull/1277
[#1263]: https://github.com/stackabletech/docker-images/pull/1263
[#1278]: https://github.com/stackabletech/docker-images/pull/1278
[#1279]: https://github.com/stackabletech/docker-images/pull/1279

## [25.7.0] - 2025-07-23
Expand Down
11 changes: 4 additions & 7 deletions airflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,13 @@ _The script is safe to run from outside of this directory. The file will be down
script resides. This example will assume you are running from the repository root directory._

```sh
# Use default Python version (specified in the script):
./airflow/download_constraints.sh 2.8.3

# Use a specific Python version:
./airflow/download_constraints.sh 2.8.3 3.11
# Specify Airflow and Python versions:
./airflow/download_constraints.sh 3.0.6 3.12
```

Example output:

```output
Downloading constraints file for Airflow 2.8.3 (Python 3.9)
Successfully pulled new constraints file: constraints-2.8.3-python39.txt
Downloading constraints file for Airflow 3.0.6 (Python 3.12)
Successfully pulled new constraints file: constraints-3.0.6-python3.12.txt
```
16 changes: 8 additions & 8 deletions airflow/boil-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ uv-version = "0.7.8"
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"
opa-auth-manager = "airflow-2"

[versions."2.10.4".local-images]
[versions."2.10.5".local-images]
"shared/statsd-exporter" = "0.28.0"
vector = "0.49.0"

[versions."2.10.4".build-arguments]
[versions."2.10.5".build-arguments]
python-version = "3.12"
git-sync-version = "v4.4.1"
s3fs-version = "2024.9.0"
Expand All @@ -26,25 +26,25 @@ uv-version = "0.7.8"
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"
opa-auth-manager = "airflow-2"

[versions."2.10.5".local-images]
[versions."3.0.1".local-images]
"shared/statsd-exporter" = "0.28.0"
vector = "0.49.0"

[versions."2.10.5".build-arguments]
[versions."3.0.1".build-arguments]
python-version = "3.12"
git-sync-version = "v4.4.1"
s3fs-version = "2024.9.0"
cyclonedx-bom-version = "6.0.0"
tini-version = "0.19.0"
uv-version = "0.7.8"
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"
opa-auth-manager = "airflow-2"
airflow-extras = "async,amazon,celery,cncf-kubernetes,docker,elasticsearch,fab,ftp,grpc,hashicorp,http,ldap,google,microsoft-azure,odbc,pandas,postgres,redis,sendgrid,sftp,slack,ssh,statsd,trino"
opa-auth-manager = "airflow-3"

[versions."3.0.1".local-images]
[versions."3.0.6".local-images]
"shared/statsd-exporter" = "0.28.0"
vector = "0.49.0"

[versions."3.0.1".build-arguments]
[versions."3.0.6".build-arguments]
python-version = "3.12"
git-sync-version = "v4.4.1"
s3fs-version = "2024.9.0"
Expand Down
Loading