Skip to content
Merged
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
11 changes: 9 additions & 2 deletions docker-stack-docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ the Airflow team.
any Airflow version from the ``Airflow 2`` line. There is no guarantee that it will work, but if it does,
then you can use latest features from that image to build images for previous Airflow versions.

Airflow 3.2.0
Airflow 3.1.0
~~~~~~~~~~~~~

In Airflow 3.2.0 we changed the base images used for building the Airflow images. Previously the images
In Airflow 3.1.0 we changed the base images used for building the Airflow images. Previously the images
were based on "official" Python images from DockerHub, however those images sometimes lag behind the
latest security patches and their maintainers made decisions about using older setuptools and pip versions,
however we want to be able to use the latest versions of those tools to build the images. Therefore
Expand All @@ -62,6 +62,13 @@ especially dev libraries installed with ``apt`` might not be installed by defaul
as a side-effect in the original image, however that should only affect those who want to customise the image.
They should be able to install in their custom images following the :doc:`Building the image <build>`

The Python 3.13 image for Airflow 3.1.0 (both slim and regular) does not contain ``fab`` provider because
at the time of release the ``fab`` provider did not support Python 3.13. It should be possible to install
future versions of ``fab`` provider (when they support Python 3.13) in the image using ``pip install``,
and until it is possible - if you need ``fab`` provider (and particularly FABAuthManager) in the
image, you should use Python 3.12 image. You can use experimental KeycloakAuthManager in Python 3.13 image
or develop your own AuthManager.

Airflow 3.0.2
~~~~~~~~~~~~~

Expand Down
Loading