Skip to content
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
2 changes: 1 addition & 1 deletion dev/breeze/src/airflow_breeze/utils/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ def _update_dependency_line_with_new_version(
updated_line = line.replace(old_constraint, new_constraint)

# Remove the "# use next version" comment after upgrading
updated_line = updated_line.replace(", # use next version", "").replace(" # use next version", "")
updated_line = updated_line.replace(" # use next version", "")

# Track the update
provider_id_short = pyproject_file.parent.relative_to(AIRFLOW_PROVIDERS_ROOT_PATH)
Expand Down
2 changes: 1 addition & 1 deletion providers/.last_release_date.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2025-11-14
2025-11-18
3 changes: 2 additions & 1 deletion providers/apprise/docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@ Misc
~~~~

* ``Convert all airflow distributions to be compliant with ASF requirements (#58138)``
* ``Add 'use-next-version' comment in providers that will need rc2 (#58390)``

.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
* ``Delete all unnecessary LICENSE Files (#58191)``

* ``Update documentation for providers 14 Nov 2025 (#58284)``

2.1.3
.....
Expand Down
2 changes: 1 addition & 1 deletion providers/apprise/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ requires-python = ">=3.10"
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
dependencies = [
"apache-airflow>=2.10.0",
"apache-airflow-providers-common-compat>=1.8.0", # use next version
"apache-airflow-providers-common-compat>=1.9.0",
"apprise>=1.8.0",
]

Expand Down
4 changes: 4 additions & 0 deletions providers/slack/docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,15 @@ Misc

* ``Convert all airflow distributions to be compliant with ASF requirements (#58138)``
* ``Migrate slack provider to ''common.compat'' (#57110)``
* ``Add 'use-next-version' comment in providers that will need rc2 (#58390)``
* ``Remove SDK reference for NOTSET in Airflow Core (#58258)``

.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
* ``Delete all unnecessary LICENSE Files (#58191)``
* ``Enable PT006 rule to slack Provider test (#57963)``
* ``Updates to release process of providers (#58316)``
* ``Update documentation for providers 14 Nov 2025 (#58284)``

9.4.0
.....
Expand Down
2 changes: 1 addition & 1 deletion providers/slack/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ requires-python = ">=3.10"
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
dependencies = [
"apache-airflow>=2.10.0",
"apache-airflow-providers-common-compat>=1.8.0", # use next version
"apache-airflow-providers-common-compat>=1.9.0",
"apache-airflow-providers-common-sql>=1.27.0",
"slack-sdk>=3.36.0",
"asgiref>=2.3.0",
Expand Down
Loading