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

Add missing significant newsfragments and migration rules needed #45740

Merged
merged 1 commit into from
Jan 20, 2025
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
25 changes: 25 additions & 0 deletions newsfragments/41564.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Move all time operators and sensors from airflow core to standard provider

* Types of change

* [x] Dag changes
* [ ] Config changes
* [ ] API changes
* [ ] CLI changes
* [ ] Behaviour changes
* [ ] Plugin changes
* [ ] Dependency changes
* [ ] Code interface changes

* Migration rules needed

* ruff

* AIR303

* [ ] ``airflow.operators.datetime.*`` → ``airflow.providers.standard.time.operators.datetime.*``
* [ ] ``airflow.operators.weekday.*`` → ``airflow.providers.standard.time.operators.weekday.*``
* [ ] ``airflow.sensors.date_time.*`` → ``airflow.providers.standard.time.sensors.date_time.*``
* [ ] ``airflow.sensors.time_sensor.*`` → ``airflow.providers.standard.time.sensors.time.*``
* [ ] ``airflow.sensors.time_delta.*`` → ``airflow.providers.standard.time.sensors.time_delta.*``
* [ ] ``airflow.sensors.weekday.*`` → ``airflow.providers.standard.time.sensors.weekday.*``
22 changes: 22 additions & 0 deletions newsfragments/42794.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Move filesystem, package_index, subprocess hooks to standard provider

* Types of change

* [x] Dag changes
* [ ] Config changes
* [ ] API changes
* [ ] CLI changes
* [ ] Behaviour changes
* [ ] Plugin changes
* [ ] Dependency changes
* [ ] Code interface changes

* Migration rules needed

* ruff

* AIR303

* [ ] ``airflow.hooks.filesystem.*`` → ``airflow.providers.standard.hooks.filesystem.*``
* [ ] ``airflow.hooks.package_index.*`` → ``airflow.providers.standard.hooks.package_index.*``
* [ ] ``airflow.hooks.subprocess.*`` → ``airflow.providers.standard.hooks.subprocess.*``
22 changes: 22 additions & 0 deletions newsfragments/43608.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Move Airflow core triggers to standard provider

* Types of change

* [x] Dag changes
* [ ] Config changes
* [ ] API changes
* [ ] CLI changes
* [ ] Behaviour changes
* [ ] Plugin changes
* [ ] Dependency changes
* [ ] Code interface changes

* Migration rules needed

* ruff

* AIR303

* [ ] ``airflow.triggers.external_task.*`` → ``airflow.providers.standard.triggers.external_task.*``
* [ ] ``airflow.triggers.file.*`` → ``airflow.providers.standard.triggers.file.*``
* [ ] ``airflow.triggers.temporal.*`` → ``airflow.providers.standard.triggers.temporal.*``
20 changes: 20 additions & 0 deletions newsfragments/43890.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Move filesystem sensor to standard provider

* Types of change

* [x] Dag changes
* [ ] Config changes
* [ ] API changes
* [ ] CLI changes
* [ ] Behaviour changes
* [ ] Plugin changes
* [ ] Dependency changes
* [ ] Code interface changes

* Migration rules needed

* ruff

* AIR303

* [ ] ``airflow.sensors.filesystem.FileSensor`` → ``airflow.providers.standard.sensors.filesystem.FileSensor``
20 changes: 20 additions & 0 deletions newsfragments/44053.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Move ``TriggerDagRunOperator`` to standard provider

* Types of change

* [x] Dag changes
* [ ] Config changes
* [ ] API changes
* [ ] CLI changes
* [ ] Behaviour changes
* [ ] Plugin changes
* [ ] Dependency changes
* [ ] Code interface changes

* Migration rules needed

* ruff

* AIR303

* [ ] ``airflow.operators.trigger_dagrun import TriggerDagRunOperator`` → ``airflow.providers.standard.operators.trigger_dagrun.TriggerDagRunOperator``
21 changes: 21 additions & 0 deletions newsfragments/44288.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Move external task sensor to standard provider #44288

* Types of change

* [x] Dag changes
* [ ] Config changes
* [ ] API changes
* [ ] CLI changes
* [ ] Behaviour changes
* [ ] Plugin changes
* [ ] Dependency changes
* [ ] Code interface changes

* Migration rules needed

* ruff

* AIR303

* [ ] ``airflow.sensors.external_task.ExternalTaskMarker`` → ``airflow.providers.standard.sensors.external_task.ExternalTaskMarker``
* [ ] ``airflow.sensors.external_task.ExternalTaskSensor`` → ``airflow.providers.standard.sensors.external_task.ExternalTaskSensor``