Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare fab ad-hoc release December 2024 #45218

Merged
merged 1 commit into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion docs/apache-airflow-providers-fab/commits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog <ind



1.5.2
.....

Latest change: 2024-12-24

================================================================================================= =========== ===========================================================================
Commit Committed Subject
================================================================================================= =========== ===========================================================================
`111e82634a <https://github.com/apache/airflow/commit/111e82634a807885a8f9b74d191505284a4dd698>`_ 2024-12-24 ``Correctly import isabs from os.path (#45178)``
`c95b84cfed <https://github.com/apache/airflow/commit/c95b84cfed7554e4fe0370600be6af3130a0d1c6>`_ 2024-12-24 ``[providers-fab/v1-5] Invalidate user session on password reset (#45139)``
================================================================================================= =========== ===========================================================================

1.5.1
.....

Latest change: 2024-11-12
Latest change: 2024-11-14

================================================================================================= =========== ==================================================================================================
Commit Committed Subject
================================================================================================= =========== ==================================================================================================
`a53d9f6d25 <https://github.com/apache/airflow/commit/a53d9f6d257f193ea5026ba4cd007d5ddeab968f>`_ 2024-11-14 ``Prepare docs for Nov 1st wave of providers (#44011)``
`c047c87aed <https://github.com/apache/airflow/commit/c047c87aed0ba191ada035c47ed9f6de9756b4e3>`_ 2024-11-12 ``Expand and improve the kerberos api authentication documentation (#43682)``
`d536ec4bd1 <https://github.com/apache/airflow/commit/d536ec4bd1da958d2f2e5822a6fec647baa12ba9>`_ 2024-11-05 ``fab_auth_manager: allow get_user method to return the user authenticated via Kerberos (#43662)``
================================================================================================= =========== ==================================================================================================
Expand Down
6 changes: 3 additions & 3 deletions docs/apache-airflow-providers-fab/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ apache-airflow-providers-fab package
`Flask App Builder <https://flask-appbuilder.readthedocs.io/>`__


Release: 1.5.1
Release: 1.5.2

Provider package
----------------
Expand Down Expand Up @@ -140,5 +140,5 @@ Downloading official packages
You can download officially released packages and verify their checksums and signatures from the
`Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_

* `The apache-airflow-providers-fab 1.5.1 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.1.tar.gz.sha512>`__)
* `The apache-airflow-providers-fab 1.5.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.1-py3-none-any.whl.sha512>`__)
* `The apache-airflow-providers-fab 1.5.2 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.2.tar.gz.sha512>`__)
* `The apache-airflow-providers-fab 1.5.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-1.5.2-py3-none-any.whl.sha512>`__)
13 changes: 13 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,19 @@
Changelog
---------

1.5.2
.....

Misc
~~~~

* ``Correctly import isabs from os.path (#45178)``
* ``[providers-fab/v1-5] Invalidate user session on password reset (#45139)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):

1.5.1
.....

Expand Down
2 changes: 1 addition & 1 deletion providers/src/airflow/providers/fab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "1.5.1"
__version__ = "1.5.2"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.9.0"
Expand Down
3 changes: 2 additions & 1 deletion providers/src/airflow/providers/fab/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ description: |
# For providers until we think it should be released.
state: ready

source-date-epoch: 1731570160
source-date-epoch: 1735219867

# note that those versions are maintained by release manager - do not update them manually
versions:
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.1
Expand Down