Skip to content

Commit

Permalink
docs(newsframgents): add significant newsfragments and migration rule…
Browse files Browse the repository at this point in the history
…s needed for PR 41564, 42794, 43609, 43890, 44053, 44288
  • Loading branch information
Lee-W committed Jan 17, 2025
1 parent 051e617 commit 99f5825
Show file tree
Hide file tree
Showing 6 changed files with 130 additions and 0 deletions.
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``

0 comments on commit 99f5825

Please sign in to comment.