Skip to content

Commit 6c0cc89

Browse files
committed
docs(newsframgents): add significant newsfragments and migration rules needed for PR 41564, 42794, 43609, 43890, 44053, 44288
1 parent 16eaa5e commit 6c0cc89

6 files changed

Lines changed: 130 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Move all time operators and sensors from airflow core to standard provider
2+
3+
* Types of change
4+
5+
* [x] DAG changes
6+
* [ ] Config changes
7+
* [ ] API changes
8+
* [ ] CLI changes
9+
* [ ] Behaviour changes
10+
* [ ] Plugin changes
11+
* [ ] Dependency change
12+
* [ ] Code interface change
13+
14+
* Migration rules needed
15+
16+
* ruff
17+
18+
* AIR303
19+
20+
* [ ] ``airflow.operators.datetime.*`` → ``airflow.providers.standard.time.operators.datetime.*``
21+
* [ ] ``airflow.operators.weekday.*`` → ``airflow.providers.standard.time.operators.weekday.*``
22+
* [ ] ``airflow.sensors.date_time.*`` → ``airflow.providers.standard.time.sensors.date_time.*``
23+
* [ ] ``airflow.sensors.time_sensor.*`` → ``airflow.providers.standard.time.sensors.time.*``
24+
* [ ] ``airflow.sensors.time_delta.*`` → ``airflow.providers.standard.time.sensors.time_delta.*``
25+
* [ ] ``airflow.sensors.weekday.*`` → ``airflow.providers.standard.time.sensors.weekday.*``
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Move filesystem, package_index, subprocess hooks to standard provider
2+
3+
* Types of change
4+
5+
* [x] DAG changes
6+
* [ ] Config changes
7+
* [ ] API changes
8+
* [ ] CLI changes
9+
* [ ] Behaviour changes
10+
* [ ] Plugin changes
11+
* [ ] Dependency change
12+
* [ ] Code interface change
13+
14+
* Migration rules needed
15+
16+
* ruff
17+
18+
* AIR303
19+
20+
* [ ] ``airflow.hooks.filesystem.*`` → ``airflow.providers.standard.hooks.filesystem.*``
21+
* [ ] ``airflow.hooks.package_index.*`` → ``airflow.providers.standard.hooks.package_index.*``
22+
* [ ] ``airflow.hooks.subprocess.*`` → ``airflow.providers.standard.hooks.subprocess.*``
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Move Airflow core triggers to standard provider
2+
3+
* Types of change
4+
5+
* [x] DAG changes
6+
* [ ] Config changes
7+
* [ ] API changes
8+
* [ ] CLI changes
9+
* [ ] Behaviour changes
10+
* [ ] Plugin changes
11+
* [ ] Dependency change
12+
* [ ] Code interface change
13+
14+
* Migration rules needed
15+
16+
* ruff
17+
18+
* AIR303
19+
20+
* [ ] ``airflow.triggers.external_task.*`` → ``airflow.providers.standard.triggers.external_task.*``
21+
* [ ] ``airflow.triggers.file.*`` → ``airflow.providers.standard.triggers.file.*``
22+
* [ ] ``airflow.triggers.temporal.*`` → ``airflow.providers.standard.triggers.temporal.*``
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Move filesystem sensor to standard provider
2+
3+
* Types of change
4+
5+
* [x] DAG changes
6+
* [ ] Config changes
7+
* [ ] API changes
8+
* [ ] CLI changes
9+
* [ ] Behaviour changes
10+
* [ ] Plugin changes
11+
* [ ] Dependency change
12+
* [ ] Code interface change
13+
14+
* Migration rules needed
15+
16+
* ruff
17+
18+
* AIR303
19+
20+
* [ ] ``airflow.sensors.filesystem.FileSensor`` → ``airflow.providers.standard.sensors.filesystem.FileSensor``
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Move ``TriggerDagRunOperator`` to standard provider
2+
3+
* Types of change
4+
5+
* [x] DAG changes
6+
* [ ] Config changes
7+
* [ ] API changes
8+
* [ ] CLI changes
9+
* [ ] Behaviour changes
10+
* [ ] Plugin changes
11+
* [ ] Dependency change
12+
* [ ] Code interface change
13+
14+
* Migration rules needed
15+
16+
* ruff
17+
18+
* AIR303
19+
20+
* [ ] ``airflow.operators.trigger_dagrun import TriggerDagRunOperator`` → ``airflow.providers.standard.operators.trigger_dagrun.TriggerDagRunOperator``
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Move external task sensor to standard provider #44288
2+
3+
* Types of change
4+
5+
* [x] DAG changes
6+
* [ ] Config changes
7+
* [ ] API changes
8+
* [ ] CLI changes
9+
* [ ] Behaviour changes
10+
* [ ] Plugin changes
11+
* [ ] Dependency change
12+
* [ ] Code interface change
13+
14+
* Migration rules needed
15+
16+
* ruff
17+
18+
* AIR303
19+
20+
* [ ] ``airflow.sensors.external_task.ExternalTaskMarker`` → ``airflow.providers.standard.sensors.external_task.ExternalTaskMarker``
21+
* [ ] ``airflow.sensors.external_task.ExternalTaskSensor`` → ``airflow.providers.standard.sensors.external_task.ExternalTaskSensor``

0 commit comments

Comments
 (0)