Skip to content

Commit a7eb32a

Browse files
authored
1 parent 4ee2de1 commit a7eb32a

File tree

78 files changed

+161
-159
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+161
-159
lines changed

β€Ž.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ jobs:
766766

767767
provider-airflow-compatibility-check:
768768
timeout-minutes: 80
769-
name: "Providers Airflow 2.3 compatibility check"
769+
name: "Providers Airflow 2.4 compatibility check"
770770
runs-on: "${{needs.build-info.outputs.runs-on}}"
771771
needs: [build-info, wait-for-ci-images]
772772
env:
@@ -789,10 +789,10 @@ jobs:
789789
run: >
790790
breeze release-management prepare-provider-packages --version-suffix-for-pypi dev0
791791
--package-format wheel ${{ needs.build-info.outputs.affected-providers-list-as-string }}
792-
- name: "Fix incompatible 2.3 provider packages"
792+
- name: "Fix incompatible 2.4 provider packages"
793793
run: |
794-
# This step should remove the provider packages that are not compatible with 2.3
795-
# or replace them with 2.3 compatible versions. Sometimes we have good reasons to bump
794+
# This step should remove the provider packages that are not compatible with 2.4
795+
# or replace them with 2.4 compatible versions. Sometimes we have good reasons to bump
796796
# the min airflow versions for some providers and then we need to add exclusions here.
797797
#
798798
# The Removal can be done with:
@@ -813,15 +813,15 @@ jobs:
813813
providers = json.loads(Path("generated/provider_dependencies.json").read_text())
814814
provider_keys = ",".join(providers.keys())
815815
print("AIRFLOW_EXTRAS={}".format(provider_keys))' >> $GITHUB_ENV
816-
- name: "Install and verify all provider packages and airflow on Airflow 2.3 files"
816+
- name: "Install and verify all provider packages and airflow on Airflow 2.4 files"
817817
run: >
818-
breeze release-management verify-provider-packages --use-airflow-version 2.3.0
819-
--use-packages-from-dist --airflow-constraints-reference constraints-2.3.0
818+
breeze release-management verify-provider-packages --use-airflow-version 2.4.0
819+
--use-packages-from-dist --airflow-constraints-reference constraints-2.4.0
820820
if: needs.build-info.outputs.affected-providers-list-as-string == ''
821-
- name: "Install affected provider packages and airflow on Airflow 2.3 files"
821+
- name: "Install affected provider packages and airflow on Airflow 2.4 files"
822822
run: >
823-
breeze release-management install-provider-packages --use-airflow-version 2.3.0
824-
--airflow-constraints-reference constraints-2.3.0 --run-in-parallel
823+
breeze release-management install-provider-packages --use-airflow-version 2.4.0
824+
--airflow-constraints-reference constraints-2.4.0 --run-in-parallel
825825
# Make sure to skip the run if the only provider to be installed has been removed
826826
# in the previous step
827827
if: >

β€ŽPROVIDERS.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ Airflow version to the next MINOR release, when 12 months passed since the first
120120
MINOR version of Airflow.
121121

122122
For example this means that by default we upgrade the minimum version of Airflow supported by providers
123-
to 2.4.0 in the first Provider's release after 30th of April 2023. The 30th of April 2022 is the date when the
124-
first ``PATCHLEVEL`` of 2.3 (2.3.0) has been released.
123+
to 2.5.0 in the first Provider's release after 19th of September 2023. The 19th of September 2022 is the date when the
124+
first ``PATCHLEVEL`` of 2.4 (2.4.0) has been released.
125125

126126
When we increase the minimum Airflow version, this is not a reason to bump ``MAJOR`` version of the providers
127127
(unless there are other breaking changes in the provider). The reason for that is that people who use

β€Žairflow/providers/airbyte/provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ versions:
3636
- 1.0.0
3737

3838
dependencies:
39-
- apache-airflow>=2.3.0
39+
- apache-airflow>=2.4.0
4040
- apache-airflow-providers-http
4141

4242
integrations:

β€Žairflow/providers/alibaba/provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ versions:
3434
- 1.0.0
3535

3636
dependencies:
37-
- apache-airflow>=2.3.0
37+
- apache-airflow>=2.4.0
3838
- oss2>=2.14.0
3939

4040
integrations:

β€Žairflow/providers/amazon/provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ versions:
5757
- 1.0.0
5858

5959
dependencies:
60-
- apache-airflow>=2.3.0
60+
- apache-airflow>=2.4.0
6161
- apache-airflow-providers-common-sql>=1.3.1
6262
- boto3>=1.24.0
6363
- asgiref

β€Žairflow/providers/apache/beam/provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ versions:
4141
- 1.0.0
4242

4343
dependencies:
44-
- apache-airflow>=2.3.0
44+
- apache-airflow>=2.4.0
4545
- apache-beam>=2.33.0
4646

4747
integrations:

β€Žairflow/providers/apache/cassandra/provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ versions:
3636
- 1.0.0
3737

3838
dependencies:
39-
- apache-airflow>=2.3.0
39+
- apache-airflow>=2.4.0
4040
- cassandra-driver>=3.13.0
4141

4242
integrations:

β€Žairflow/providers/apache/drill/provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ versions:
3737
- 1.0.0
3838

3939
dependencies:
40-
- apache-airflow>=2.3.0
40+
- apache-airflow>=2.4.0
4141
- apache-airflow-providers-common-sql>=1.3.1
4242
- sqlalchemy-drill>=1.1.0
4343

β€Žairflow/providers/apache/druid/provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ versions:
4343
- 1.0.0
4444

4545
dependencies:
46-
- apache-airflow>=2.3.0
46+
- apache-airflow>=2.4.0
4747
- apache-airflow-providers-common-sql>=1.3.1
4848
- pydruid>=0.4.1
4949

β€Žairflow/providers/apache/flink/provider.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ versions:
2727
- 1.0.0
2828

2929
dependencies:
30-
- apache-airflow>=2.3.0
30+
- apache-airflow>=2.4.0
3131
- cryptography>=2.0.0
3232
- apache-airflow-providers-cncf-kubernetes>=5.1.0
3333

0 commit comments

Comments
 (0)