Skip to content

Commit 4d2201f

Browse files
ephraimbuddyutkarsharma2
authored andcommitted
Update Airflow version to 2.10.2
1 parent 4a35216 commit 4d2201f

File tree

19 files changed

+36
-36
lines changed

19 files changed

+36
-36
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Airflow is not a streaming solution, but it is often used to process real-time d
9797

9898
Apache Airflow is tested with:
9999

100-
| | Main version (dev) | Stable version (2.10.1) |
100+
| | Main version (dev) | Stable version (2.10.2) |
101101
|-------------|------------------------------|------------------------------|
102102
| Python | 3.8, 3.9, 3.10, 3.11, 3.12 | 3.8, 3.9, 3.10, 3.11, 3.12 |
103103
| Platform | AMD64/ARM64(\*) | AMD64/ARM64(\*) |
@@ -177,15 +177,15 @@ them to the appropriate format and workflow that your tool requires.
177177

178178

179179
```bash
180-
pip install 'apache-airflow==2.10.1' \
181-
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.1/constraints-3.8.txt"
180+
pip install 'apache-airflow==2.10.2' \
181+
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.2/constraints-3.8.txt"
182182
```
183183

184184
2. Installing with extras (i.e., postgres, google)
185185

186186
```bash
187187
pip install 'apache-airflow[postgres,google]==2.8.3' \
188-
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.1/constraints-3.8.txt"
188+
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.2/constraints-3.8.txt"
189189
```
190190

191191
For information on installing provider packages, check
@@ -290,7 +290,7 @@ Apache Airflow version life cycle:
290290

291291
| Version | Current Patch/Minor | State | First Release | Limited Support | EOL/Terminated |
292292
|-----------|-----------------------|-----------|-----------------|-------------------|------------------|
293-
| 2 | 2.10.1 | Supported | Dec 17, 2020 | TBD | TBD |
293+
| 2 | 2.10.2 | Supported | Dec 17, 2020 | TBD | TBD |
294294
| 1.10 | 1.10.15 | EOL | Aug 27, 2018 | Dec 17, 2020 | June 17, 2021 |
295295
| 1.9 | 1.9.0 | EOL | Jan 03, 2018 | Aug 27, 2018 | Aug 27, 2018 |
296296
| 1.8 | 1.8.2 | EOL | Mar 19, 2017 | Jan 03, 2018 | Jan 03, 2018 |

airflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
from __future__ import annotations
1919

20-
__version__ = "2.10.1"
20+
__version__ = "2.10.2"
2121

2222
import os
2323
import sys

airflow/api_connexion/openapi/v1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ info:
231231
This means that the server encountered an unexpected condition that prevented it from
232232
fulfilling the request.
233233
234-
version: "2.10.1"
234+
version: "2.10.2"
235235
license:
236236
name: Apache 2.0
237237
url: http://www.apache.org/licenses/LICENSE-2.0.html

docs/apache-airflow/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 Support EOL/Terminated
3131
========= ===================== ========= =============== ================= ================
32-
2 2.10.1 Supported Dec 17, 2020 TBD TBD
32+
2 2.10.2 Supported Dec 17, 2020 TBD TBD
3333
1.10 1.10.15 EOL Aug 27, 2018 Dec 17, 2020 June 17, 2021
3434
1.9 1.9.0 EOL Jan 03, 2018 Aug 27, 2018 Aug 27, 2018
3535
1.8 1.8.2 EOL Mar 19, 2017 Jan 03, 2018 Jan 03, 2018

docs/docker-stack/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 `2.10.1`):
34+
You can find the following images there (Assuming Airflow version `2.10.2`):
3535

3636
* `apache/airflow:latest` - the latest released Airflow image with default Python version (3.8 currently)
3737
* `apache/airflow:latest-pythonX.Y` - the latest released Airflow image with specific Python version
38-
* `apache/airflow:2.10.1` - the versioned Airflow image with default Python version (3.8 currently)
39-
* `apache/airflow:2.10.1-pythonX.Y` - the versioned Airflow image with specific Python version
38+
* `apache/airflow:2.10.2` - the versioned Airflow image with default Python version (3.8 currently)
39+
* `apache/airflow:2.10.2-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.8 currently)
4949
* `apache/airflow:slim-latest-pythonX.Y` - the latest released Airflow image with specific Python version
50-
* `apache/airflow:slim-2.10.1` - the versioned Airflow image with default Python version (3.8 currently)
51-
* `apache/airflow:slim-2.10.1-pythonX.Y` - the versioned Airflow image with specific Python version
50+
* `apache/airflow:slim-2.10.2` - the versioned Airflow image with default Python version (3.8 currently)
51+
* `apache/airflow:slim-2.10.2-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

docs/docker-stack/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:2.10.1
18+
FROM apache/airflow:2.10.2
1919
ENV AIRFLOW__CORE__LOAD_EXAMPLES=True
2020
ENV AIRFLOW__DATABASE__SQL_ALCHEMY_CONN=my_conn_string
2121
# [END Dockerfile]

docs/docker-stack/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:2.10.1
18+
FROM apache/airflow:2.10.2
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

docs/docker-stack/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:2.10.1
18+
FROM apache/airflow:2.10.2
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

docs/docker-stack/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:2.10.1
18+
FROM apache/airflow:2.10.2
1919
USER root
2020
RUN apt-get update \
2121
&& apt-get install -y --no-install-recommends \

docs/docker-stack/docker-examples/extending/add-pypi-packages-constraints/Dockerfile

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

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:2.10.1
18+
FROM apache/airflow:2.10.2
1919
RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}" lxml --constraint "${HOME}/constraints.txt"
2020
# [END Dockerfile]

docs/docker-stack/docker-examples/extending/add-pypi-packages-uv/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:2.10.1
18+
FROM apache/airflow:2.10.2
1919

2020
# The `uv` tools is Rust packaging tool that is much faster than `pip` and other installer
2121
# Support for uv as installation tool is experimental

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

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

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:2.10.1
18+
FROM apache/airflow:2.10.2
1919
RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}" lxml
2020
# [END Dockerfile]

docs/docker-stack/docker-examples/extending/add-requirement-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:2.10.1
18+
FROM apache/airflow:2.10.2
1919
COPY requirements.txt /
2020
RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}" -r /requirements.txt
2121
# [END Dockerfile]

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

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

1616
# This is an example Dockerfile. It is not intended for PRODUCTION use
1717
# [START Dockerfile]
18-
FROM apache/airflow:2.10.1
18+
FROM apache/airflow:2.10.2
1919
RUN pip install "apache-airflow==${AIRFLOW_VERSION}" --no-cache-dir apache-airflow-providers-docker==2.5.1
2020
# [END Dockerfile]

docs/docker-stack/docker-examples/extending/embedding-dags/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:2.10.1
18+
FROM apache/airflow:2.10.2
1919

2020
COPY --chown=airflow:root test_dag.py /opt/airflow/dags
2121

docs/docker-stack/docker-examples/extending/writable-directory/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:2.10.1
18+
FROM apache/airflow:2.10.2
1919
RUN umask 0002; \
2020
mkdir -p ~/writeable-directory
2121
# [END Dockerfile]

docs/docker-stack/entrypoint.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ if you specify extra arguments. For example:
132132

133133
.. code-block:: bash
134134
135-
docker run -it apache/airflow:2.10.1-python3.8 bash -c "ls -la"
135+
docker run -it apache/airflow:2.10.2-python3.8 bash -c "ls -la"
136136
total 16
137137
drwxr-xr-x 4 airflow root 4096 Jun 5 18:12 .
138138
drwxr-xr-x 1 root root 4096 Jun 5 18:12 ..
@@ -144,21 +144,21 @@ you pass extra parameters. For example:
144144

145145
.. code-block:: bash
146146
147-
> docker run -it apache/airflow:2.10.1-python3.8 python -c "print('test')"
147+
> docker run -it apache/airflow:2.10.2-python3.8 python -c "print('test')"
148148
test
149149
150150
If first argument equals to "airflow" - the rest of the arguments is treated as an airflow command
151151
to execute. Example:
152152

153153
.. code-block:: bash
154154
155-
docker run -it apache/airflow:2.10.1-python3.8 airflow webserver
155+
docker run -it apache/airflow:2.10.2-python3.8 airflow webserver
156156
157157
If there are any other arguments - they are simply passed to the "airflow" command
158158

159159
.. code-block:: bash
160160
161-
> docker run -it apache/airflow:2.10.1-python3.8 help
161+
> docker run -it apache/airflow:2.10.2-python3.8 help
162162
usage: airflow [-h] GROUP_OR_COMMAND ...
163163
164164
positional arguments:
@@ -363,7 +363,7 @@ database and creating an ``admin/admin`` Admin user with the following command:
363363
--env "_AIRFLOW_DB_MIGRATE=true" \
364364
--env "_AIRFLOW_WWW_USER_CREATE=true" \
365365
--env "_AIRFLOW_WWW_USER_PASSWORD=admin" \
366-
apache/airflow:2.10.1-python3.8 webserver
366+
apache/airflow:2.10.2-python3.8 webserver
367367
368368
369369
.. code-block:: bash
@@ -372,7 +372,7 @@ database and creating an ``admin/admin`` Admin user with the following command:
372372
--env "_AIRFLOW_DB_MIGRATE=true" \
373373
--env "_AIRFLOW_WWW_USER_CREATE=true" \
374374
--env "_AIRFLOW_WWW_USER_PASSWORD_CMD=echo admin" \
375-
apache/airflow:2.10.1-python3.8 webserver
375+
apache/airflow:2.10.2-python3.8 webserver
376376
377377
The commands above perform initialization of the SQLite database, create admin user with admin password
378378
and Admin role. They also forward local port ``8080`` to the webserver port and finally start the webserver.
@@ -412,6 +412,6 @@ Example:
412412
--env "_AIRFLOW_DB_MIGRATE=true" \
413413
--env "_AIRFLOW_WWW_USER_CREATE=true" \
414414
--env "_AIRFLOW_WWW_USER_PASSWORD_CMD=echo admin" \
415-
apache/airflow:2.10.1-python3.8 webserver
415+
apache/airflow:2.10.2-python3.8 webserver
416416
417417
This method is only available starting from Docker image of Airflow 2.1.1 and above.

generated/PYPI_README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Use Airflow to author workflows as directed acyclic graphs (DAGs) of tasks. The
5454

5555
Apache Airflow is tested with:
5656

57-
| | Main version (dev) | Stable version (2.10.1) |
57+
| | Main version (dev) | Stable version (2.10.2) |
5858
|-------------|------------------------------|------------------------------|
5959
| Python | 3.8, 3.9, 3.10, 3.11, 3.12 | 3.8, 3.9, 3.10, 3.11, 3.12 |
6060
| Platform | AMD64/ARM64(\*) | AMD64/ARM64(\*) |
@@ -130,15 +130,15 @@ them to the appropriate format and workflow that your tool requires.
130130

131131

132132
```bash
133-
pip install 'apache-airflow==2.10.1' \
134-
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.1/constraints-3.8.txt"
133+
pip install 'apache-airflow==2.10.2' \
134+
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.2/constraints-3.8.txt"
135135
```
136136

137137
2. Installing with extras (i.e., postgres, google)
138138

139139
```bash
140140
pip install 'apache-airflow[postgres,google]==2.8.3' \
141-
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.1/constraints-3.8.txt"
141+
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.10.2/constraints-3.8.txt"
142142
```
143143

144144
For information on installing provider packages, check

scripts/ci/pre_commit/supported_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
HEADERS = ("Version", "Current Patch/Minor", "State", "First Release", "Limited Support", "EOL/Terminated")
2828

2929
SUPPORTED_VERSIONS = (
30-
("2", "2.10.1", "Supported", "Dec 17, 2020", "TBD", "TBD"),
30+
("2", "2.10.2", "Supported", "Dec 17, 2020", "TBD", "TBD"),
3131
("1.10", "1.10.15", "EOL", "Aug 27, 2018", "Dec 17, 2020", "June 17, 2021"),
3232
("1.9", "1.9.0", "EOL", "Jan 03, 2018", "Aug 27, 2018", "Aug 27, 2018"),
3333
("1.8", "1.8.2", "EOL", "Mar 19, 2017", "Jan 03, 2018", "Jan 03, 2018"),

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy