Skip to content

Commit

Permalink
Prepare FAB provider to set next version as major version
Browse files Browse the repository at this point in the history
  • Loading branch information
vincbeck committed Nov 13, 2024
1 parent 981ecef commit 2e0def4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
8 changes: 4 additions & 4 deletions dev/breeze/tests/test_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def test_get_documentation_package_path():
"",
"""
"apache-airflow-providers-common-compat>=1.2.1",
"apache-airflow>=2.9.0",
"apache-airflow>=3.0.0.dev0",
"flask-appbuilder==4.5.2",
"flask-login>=0.6.2",
"flask>=2.2,<2.3",
Expand All @@ -182,7 +182,7 @@ def test_get_documentation_package_path():
"dev0",
"""
"apache-airflow-providers-common-compat>=1.2.1.dev0",
"apache-airflow>=2.9.0.dev0",
"apache-airflow>=3.0.0.dev0",
"flask-appbuilder==4.5.2",
"flask-login>=0.6.2",
"flask>=2.2,<2.3",
Expand All @@ -196,7 +196,7 @@ def test_get_documentation_package_path():
"beta0",
"""
"apache-airflow-providers-common-compat>=1.2.1b0",
"apache-airflow>=2.9.0b0",
"apache-airflow>=3.0.0b0",
"flask-appbuilder==4.5.2",
"flask-login>=0.6.2",
"flask>=2.2,<2.3",
Expand Down Expand Up @@ -440,7 +440,7 @@ def test_validate_provider_info_with_schema():
"provider_id, min_version",
[
("amazon", "2.8.0"),
("fab", "2.9.0"),
("fab", "3.0.0.dev0"),
],
)
def test_get_min_airflow_version(provider_id: str, min_version: str):
Expand Down
2 changes: 1 addition & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@
"fab": {
"deps": [
"apache-airflow-providers-common-compat>=1.2.1",
"apache-airflow>=2.9.0",
"apache-airflow>=3.0.0.dev0",
"flask-appbuilder==4.5.2",
"flask-login>=0.6.2",
"flask>=2.2,<2.3",
Expand Down
11 changes: 11 additions & 0 deletions providers/src/airflow/providers/fab/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@
Changelog
---------

2.0.0
.....

Breaking changes
~~~~~~~~~~~~~~~~

.. warning::
The new version of the Fab provider is only compatible with Airflow 3.
It is impossible to use ``apache-airflow-providers-fab`` >= 2.0 with Airflow 2.X.
If you use Airflow 2.X, please use ``apache-airflow-providers-fab`` 1.X.

1.5.0
.....

Expand Down
2 changes: 1 addition & 1 deletion providers/src/airflow/providers/fab/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ versions:
- 1.0.0

dependencies:
- apache-airflow>=2.9.0
- apache-airflow>=3.0.0.dev0
- apache-airflow-providers-common-compat>=1.2.1
- flask>=2.2,<2.3
# We are tightly coupled with FAB version as we vendored-in part of FAB code related to security manager
Expand Down

0 comments on commit 2e0def4

Please sign in to comment.