Skip to content

Commit

Permalink
Merge branch 'main' into fix/parsing_dates
Browse files Browse the repository at this point in the history
  • Loading branch information
hussein-awala committed Aug 19, 2023
2 parents 0302e02 + bcefe61 commit cc1e4b6
Show file tree
Hide file tree
Showing 76 changed files with 2,385 additions and 384 deletions.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/airflow_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ body:
the latest release or main to see if the issue is fixed before reporting it.
multiple: false
options:
- "2.7.0rc2"
- "2.6.3"
- "2.7.0"
- "main (development)"
- "Other Airflow 2 version (please specify below)"
validations:
Expand Down
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ repos:
- --comment-style
- "/*||*/"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all RST files
Expand All @@ -61,7 +61,7 @@ repos:
- --comment-style
- "||"
- --license-filepath
- license-templates/LICENSE.rst
- scripts/ci/license-templates/LICENSE.rst
- --fuzzy-match-generates-todo
files: \.rst$
- id: insert-license
Expand All @@ -72,7 +72,7 @@ repos:
- --comment-style
- "/*!| *| */"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all JINJA template files
Expand All @@ -82,7 +82,7 @@ repos:
- --comment-style
- "{#||#}"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all Shell files
Expand All @@ -92,7 +92,7 @@ repos:
- --comment-style
- "|#|"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all Python files
Expand All @@ -102,7 +102,7 @@ repos:
- --comment-style
- "|#|"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all XML files
Expand All @@ -112,7 +112,7 @@ repos:
- --comment-style
- "<!--||-->"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all Helm template files
Expand All @@ -121,7 +121,7 @@ repos:
- --comment-style
- "{{/*||*/}}"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all YAML files except Helm templates
Expand All @@ -132,7 +132,7 @@ repos:
- --comment-style
- "|#|"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all Markdown files
Expand All @@ -142,7 +142,7 @@ repos:
- --comment-style
- "<!--|| -->"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
- id: insert-license
name: Add license for all other files
Expand All @@ -151,7 +151,7 @@ repos:
- --comment-style
- "|#|"
- --license-filepath
- license-templates/LICENSE.txt
- scripts/ci/license-templates/LICENSE.txt
- --fuzzy-match-generates-todo
files: >
\.cfg$|\.conf$|\.ini$|\.ldif$|\.properties$|\.readthedocs$|\.service$|\.tf$|Dockerfile.*$
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ARG AIRFLOW_UID="50000"
ARG AIRFLOW_USER_HOME_DIR=/home/airflow

# latest released version here
ARG AIRFLOW_VERSION="2.6.3"
ARG AIRFLOW_VERSION="2.7.0"

ARG PYTHON_BASE_IMAGE="python:3.8-slim-bullseye"

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ Airflow is not a streaming solution, but it is often used to process real-time d

Apache Airflow is tested with:

| | Main version (dev) | Stable version (2.6.3) |
| | Main version (dev) | Stable version (2.7.0) |
|-------------|------------------------|---------------------------|
| Python | 3.8, 3.9, 3.10, 3.11 | 3.7, 3.8, 3.9, 3.10, 3.11 |
| Python | 3.8, 3.9, 3.10, 3.11 | 3.8, 3.9, 3.10, 3.11 |
| Platform | AMD64/ARM64(\*) | AMD64/ARM64(\*) |
| Kubernetes | 1.24, 1.25, 1.26, 1.27 | 1.23, 1.24, 1.25, 1.26 |
| Kubernetes | 1.24, 1.25, 1.26, 1.27 | 1.24, 1.25, 1.26, 1.27 |
| PostgreSQL | 11, 12, 13, 14, 15 | 11, 12, 13, 14, 15 |
| MySQL | 5.7, 8 | 5.7, 8 |
| SQLite | 3.15.0+ | 3.15.0+ |
Expand Down Expand Up @@ -163,15 +163,15 @@ them to the appropriate format and workflow that your tool requires.


```bash
pip install 'apache-airflow==2.6.3' \
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.6.3/constraints-3.8.txt"
pip install 'apache-airflow==2.7.0' \
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.7.0/constraints-3.8.txt"
```

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

```bash
pip install 'apache-airflow[postgres,google]==2.6.3' \
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.6.3/constraints-3.8.txt"
pip install 'apache-airflow[postgres,google]==2.7.0' \
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.7.0/constraints-3.8.txt"
```

For information on installing provider packages, check
Expand Down Expand Up @@ -280,7 +280,7 @@ Apache Airflow version life cycle:

| Version | Current Patch/Minor | State | First Release | Limited Support | EOL/Terminated |
|-----------|-----------------------|-----------|-----------------|-------------------|------------------|
| 2 | 2.6.3 | Supported | Dec 17, 2020 | TBD | TBD |
| 2 | 2.7.0 | Supported | Dec 17, 2020 | TBD | TBD |
| 1.10 | 1.10.15 | EOL | Aug 27, 2018 | Dec 17, 2020 | June 17, 2021 |
| 1.9 | 1.9.0 | EOL | Jan 03, 2018 | Aug 27, 2018 | Aug 27, 2018 |
| 1.8 | 1.8.2 | EOL | Mar 19, 2017 | Jan 03, 2018 | Jan 03, 2018 |
Expand Down
Loading

0 comments on commit cc1e4b6

Please sign in to comment.