Skip to content
Open
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.
- opa: Add `1.16.2` ([#1509]).
- kafka: Add `3.9.2` and `4.2.1` ([#1483]).
- trino: Add `481` ([#1518]).
- superset: Add `6.1.0` ([#1514])

### Changed

Expand Down Expand Up @@ -50,6 +51,7 @@ All notable changes to this project will be documented in this file.
[#1509]: https://github.com/stackabletech/docker-images/pull/1509
[#1510]: https://github.com/stackabletech/docker-images/pull/1510
[#1512]: https://github.com/stackabletech/docker-images/pull/1512
[#1514]: https://github.com/stackabletech/docker-images/pull/1514
[#1518]: https://github.com/stackabletech/docker-images/pull/1518
[#1520]: https://github.com/stackabletech/docker-images/pull/1520

Expand Down
49 changes: 39 additions & 10 deletions superset/boil-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ vector = "0.55.0"

[versions."4.1.4".build-arguments]
cyclonedx-bom-version = "6.0.0"
# Find the flask-appbuilder version in the applicable constraints.txt file, then find the authlib version.
# https://github.com/dpgaspar/Flask-AppBuilder/blob/release/4.5.0/requirements/extra.txt#L7
# flask-appbuilder==4.5.0 is pinned in https://github.com/apache/superset/blob/4.1.4/requirements/base.txt (search for `flask-appbuilder==`),
# which in turn pins authlib in https://github.com/dpgaspar/Flask-AppBuilder/blob/release/4.5.0/requirements/extra.txt (search for `authlib==`)
authlib-version = "1.2.1"
python-version = "3.9"
uv-version = "0.7.3"
nodejs-version = "20.20.2"
# The default upstream image is built on Python 3.11 (`ARG PY_VER` in https://github.com/apache/superset/blob/4.1.4/Dockerfile)
# and upstream CI tests 3.10 and 3.11 (https://github.com/apache/superset/blob/4.1.4/.github/actions/setup-backend/action.yml)
python-version = "3.11"
# Independent of Superset, use the latest release: https://github.com/astral-sh/uv/releases
uv-version = "0.11.18"
# https://github.com/apache/superset/blob/4.1.4/superset-frontend/.nvmrc
nodejs-version = "18.20.1"
# Independent of Superset, use the latest release: https://github.com/nvm-sh/nvm/releases
nvm-version = "v0.40.4"

[versions."6.0.0".local-images]
Expand All @@ -23,10 +28,34 @@ vector = "0.55.0"

[versions."6.0.0".build-arguments]
cyclonedx-bom-version = "6.0.0"
# Find the flask-appbuilder version in the applicable constraints.txt file, then find the authlib version.
# https://github.com/dpgaspar/Flask-AppBuilder/blob/release/5.0.0/requirements/extra.txt#L7
# flask-appbuilder==5.0.0 is pinned in https://github.com/apache/superset/blob/6.0.0/requirements/base.txt (search for `flask-appbuilder==`),
# which in turn pins authlib in https://github.com/dpgaspar/Flask-AppBuilder/blob/release/5.0.0/requirements/extra.txt (search for `authlib==`)
authlib-version = "1.2.1"
python-version = "3.11"
uv-version = "0.7.3"
nodejs-version = "20.20.2"
# Upstream CI tests 3.10, 3.11 and 3.12, choosing the newest Python version
python-version = "3.12"
# Independent of Superset, use the latest release: https://github.com/astral-sh/uv/releases
uv-version = "0.11.18"
# https://github.com/apache/superset/blob/6.0.0/superset-frontend/.nvmrc
nodejs-version = "20.18.3"
# Independent of Superset, use the latest release: https://github.com/nvm-sh/nvm/releases
nvm-version = "v0.40.4"

[versions."6.1.0".local-images]
"shared/statsd-exporter" = "0.28.0"
stackable-devel = "1.0.0"
vector = "0.55.0"

[versions."6.1.0".build-arguments]
cyclonedx-bom-version = "6.0.0"
# flask-appbuilder==5.0.2 is pinned in https://github.com/apache/superset/blob/6.1.0/requirements/base.txt (search for `flask-appbuilder==`),
# which in turn pins authlib in https://github.com/dpgaspar/Flask-AppBuilder/blob/release/5.0.2/requirements/extra.txt (search for `authlib==`)
authlib-version = "1.2.1"
# Upstream CI tests 3.10, 3.11 and 3.12 (https://github.com/apache/superset/blob/6.1.0/.github/actions/setup-backend/action.yml)
# and a py312 image variant is published. We use 3.12
python-version = "3.12"
# Independent of Superset, use the latest release: https://github.com/astral-sh/uv/releases
uv-version = "0.11.18"
# https://github.com/apache/superset/blob/6.1.0/superset-frontend/.nvmrc
nodejs-version = "22.22.0"
# Independent of Superset, use the latest release: https://github.com/nvm-sh/nvm/releases
nvm-version = "v0.40.4"
3 changes: 3 additions & 0 deletions superset/stackable/constraints/6.1.0/build-constraints.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# It is not yet known how and when to change this
# I will try without it overridden for now
# Cython==3.0.12
Loading