dondaum commented on issue #58315:
URL: https://github.com/apache/airflow/issues/58315#issuecomment-3540880369

   I have tested all my changes with Airflow==3.1.3:
   #57541
   #57894
   #57143
   
   I installed the pre-release provider packages and ran some DAGs. They 
successfully sent asynchronous notifications for Apprise and Slack.
   
   For `apache-airflow-providers-common-compat`, I can confirm that the source 
code looks good.
   
   However, there is a problem with the pinned dependency for
   `apache-airflow-providers-apprise==2.2.0rc1`
   `apache-airflow-providers-slack==9.5.0rc1`
   
   they have
   ```
   dependencies = [
       "apache-airflow-providers-common-compat>=1.8.0",
       ...
   ]
   ```
   
   However, they both depend on the next version of 
`apache-airflow-providers-common-compat`, which is most likely 
`apache-airflow-providers-common-compat==1.9.0`.
   
   That's how it should be
   
   ```
   dependencies = [
       "apache-airflow-providers-common-compat>=1.9.0",
       ...
   ]
   ```
   
   At that time I couldn't assign the dependency to a correct version because 
it hadn't been released yet. 
   
   But can I just open a PR and change the dependencies? Although 
`apache-airflow-providers-common-compat==1.9.0` has not been released yet?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to