Skip to content

Commit a39132b

Browse files
committed
Bump Airflow to 3.0.3 and Task SDK to 1.0.3
1 parent bcd3274 commit a39132b

File tree

22 files changed

+34
-34
lines changed

22 files changed

+34
-34
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ Apache Airflow version life cycle:
299299

300300
| Version | Current Patch/Minor | State | First Release | Limited Maintenance | EOL/Terminated |
301301
|-----------|-----------------------|-----------|-----------------|-----------------------|------------------|
302-
| 3 | 3.0.2 | Supported | Apr 22, 2025 | TBD | TBD |
302+
| 3 | 3.0.3 | Supported | Apr 22, 2025 | TBD | TBD |
303303
| 2 | 2.11.0 | Supported | Dec 17, 2020 | Oct 22, 2025 | Apr 22, 2026 |
304304
| 1.10 | 1.10.15 | EOL | Aug 27, 2018 | Dec 17, 2020 | June 17, 2021 |
305305
| 1.9 | 1.9.0 | EOL | Jan 03, 2018 | Aug 27, 2018 | Aug 27, 2018 |

airflow-core/docs/installation/supported-versions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Apache Airflow® version life cycle:
2929
========= ===================== ========= =============== ===================== ================
3030
Version Current Patch/Minor State First Release Limited Maintenance EOL/Terminated
3131
========= ===================== ========= =============== ===================== ================
32-
3 3.0.2 Supported Apr 22, 2025 TBD TBD
32+
3 3.0.3 Supported Apr 22, 2025 TBD TBD
3333
2 2.11.0 Supported Dec 17, 2020 Oct 22, 2025 Apr 22, 2026
3434
1.10 1.10.15 EOL Aug 27, 2018 Dec 17, 2020 June 17, 2021
3535
1.9 1.9.0 EOL Jan 03, 2018 Aug 27, 2018 Aug 27, 2018

airflow-core/docs/start.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This quick start guide will help you bootstrap an Airflow standalone instance on
6666
:substitutions:
6767
6868
69-
AIRFLOW_VERSION=3.0.2
69+
AIRFLOW_VERSION=3.0.3
7070
7171
# Extract the version of Python you have installed. If you're currently using a Python version that is not supported by Airflow, you may want to set this manually.
7272
# See above for supported versions.

airflow-core/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ classifiers = [
5959
]
6060

6161
# Version is defined in src/airflow/__init__.py and it is automatically synchronized by pre-commit
62-
version = "3.0.2"
62+
version = "3.0.3"
6363

6464
dependencies = [
6565
"a2wsgi>=1.10.8",
@@ -139,7 +139,7 @@ dependencies = [
139139
# Does not work with it Tracked in https://github.com/fsspec/universal_pathlib/issues/276
140140
"universal-pathlib>=0.2.2,!=0.2.4",
141141
"uuid6>=2024.7.10",
142-
"apache-airflow-task-sdk<1.1.0,>=1.0.2",
142+
"apache-airflow-task-sdk<1.1.0,>=1.0.3",
143143
# pre-installed providers
144144
"apache-airflow-providers-common-compat>=1.6.0",
145145
"apache-airflow-providers-common-io>=1.5.3",

airflow-core/src/airflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# lib.) This is required by some IDEs to resolve the import paths.
2626
__path__ = __import__("pkgutil").extend_path(__path__, __name__) # type: ignore
2727

28-
__version__ = "3.0.2"
28+
__version__ = "3.0.3"
2929

3030

3131
import os

docker-stack-docs/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ Every time a new version of Airflow is released, the images are prepared in the
3131
[apache/airflow DockerHub](https://hub.docker.com/r/apache/airflow)
3232
for all the supported Python versions.
3333

34-
You can find the following images there (Assuming Airflow version `3.0.2`):
34+
You can find the following images there (Assuming Airflow version `3.0.3`):
3535

3636
* `apache/airflow:latest` - the latest released Airflow image with default Python version (3.12 currently)
3737
* `apache/airflow:latest-pythonX.Y` - the latest released Airflow image with specific Python version
38-
* `apache/airflow:3.0.2` - the versioned Airflow image with default Python version (3.12 currently)
39-
* `apache/airflow:3.0.2-pythonX.Y` - the versioned Airflow image with specific Python version
38+
* `apache/airflow:3.0.3` - the versioned Airflow image with default Python version (3.12 currently)
39+
* `apache/airflow:3.0.3-pythonX.Y` - the versioned Airflow image with specific Python version
4040

4141
Those are "reference" regular images. They contain the most common set of extras, dependencies and providers that are
4242
often used by the users and they are good to "try-things-out" when you want to just take Airflow for a spin,
@@ -47,8 +47,8 @@ via [Building the image](https://airflow.apache.org/docs/docker-stack/build.html
4747

4848
* `apache/airflow:slim-latest` - the latest released Airflow image with default Python version (3.12 currently)
4949
* `apache/airflow:slim-latest-pythonX.Y` - the latest released Airflow image with specific Python version
50-
* `apache/airflow:slim-3.0.2` - the versioned Airflow image with default Python version (3.12 currently)
51-
* `apache/airflow:slim-3.0.2-pythonX.Y` - the versioned Airflow image with specific Python version
50+
* `apache/airflow:slim-3.0.3` - the versioned Airflow image with default Python version (3.12 currently)
51+
* `apache/airflow:slim-3.0.3-pythonX.Y` - the versioned Airflow image with specific Python version
5252

5353
The Apache Airflow image provided as convenience package is optimized for size, and
5454
it provides just a bare minimal set of the extras and dependencies installed and in most cases

docker-stack-docs/docker-examples/extending/add-airflow-configuration/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.2
18+
FROM apache/airflow:3.0.3
1919
ENV AIRFLOW__CORE__LOAD_EXAMPLES=True
2020
ENV AIRFLOW__DATABASE__SQL_ALCHEMY_CONN=my_conn_string
2121
# [END Dockerfile]

docker-stack-docs/docker-examples/extending/add-apt-packages/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.2
18+
FROM apache/airflow:3.0.3
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

docker-stack-docs/docker-examples/extending/add-build-essential-extend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.2
18+
FROM apache/airflow:3.0.3
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

docker-stack-docs/docker-examples/extending/add-providers/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:3.0.2
18+
FROM apache/airflow:3.0.3
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)