This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 2a89b43b154 Add 'use-next-version` comment in providers that will need
rc2 (#58390)
2a89b43b154 is described below
commit 2a89b43b154f288d07ecdb386be1ea95211ed889
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Nov 17 23:33:15 2025 +0100
Add 'use-next-version` comment in providers that will need rc2 (#58390)
Apprise and Slack need to use the next version of common provider
and for that we want to implement automated convention of bumping
the version by release manager based on comment left by contributor
that the version should be bumped.
This attempts to add the comment so that we can test the upgrade.
---
providers/apprise/pyproject.toml | 2 +-
providers/slack/pyproject.toml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/providers/apprise/pyproject.toml b/providers/apprise/pyproject.toml
index da275989979..491e3a6832f 100644
--- a/providers/apprise/pyproject.toml
+++ b/providers/apprise/pyproject.toml
@@ -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",
+ "apache-airflow-providers-common-compat>=1.8.0", # use next version
"apprise>=1.8.0",
]
diff --git a/providers/slack/pyproject.toml b/providers/slack/pyproject.toml
index ecf963ac96b..05f5f0fccd9 100644
--- a/providers/slack/pyproject.toml
+++ b/providers/slack/pyproject.toml
@@ -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",
+ "apache-airflow-providers-common-compat>=1.8.0", # use next version
"apache-airflow-providers-common-sql>=1.27.0",
"slack-sdk>=3.36.0",
"asgiref>=2.3.0",