-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(newsframgents): add significant newsfragments and migration rule…
…s needed for PR 41564, 42794, 43609, 43890, 44053, 44288
- Loading branch information
Showing
6 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`` |