apache-airflow-providers-standard 1.9.2rc1__py3-none-any.whl → 1.11.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. airflow/providers/standard/__init__.py +3 -3
  2. airflow/providers/standard/decorators/bash.py +1 -2
  3. airflow/providers/standard/example_dags/example_bash_decorator.py +1 -1
  4. airflow/providers/standard/example_dags/example_python_decorator.py +17 -0
  5. airflow/providers/standard/example_dags/example_python_operator.py +18 -0
  6. airflow/providers/standard/exceptions.py +1 -1
  7. airflow/providers/standard/get_provider_info.py +1 -0
  8. airflow/providers/standard/operators/bash.py +7 -3
  9. airflow/providers/standard/operators/datetime.py +1 -2
  10. airflow/providers/standard/operators/hitl.py +9 -2
  11. airflow/providers/standard/operators/latest_only.py +17 -8
  12. airflow/providers/standard/operators/python.py +93 -8
  13. airflow/providers/standard/operators/trigger_dagrun.py +86 -28
  14. airflow/providers/standard/sensors/bash.py +1 -2
  15. airflow/providers/standard/sensors/date_time.py +1 -16
  16. airflow/providers/standard/sensors/external_task.py +28 -7
  17. airflow/providers/standard/sensors/filesystem.py +2 -19
  18. airflow/providers/standard/sensors/time.py +2 -18
  19. airflow/providers/standard/sensors/time_delta.py +7 -6
  20. airflow/providers/standard/triggers/external_task.py +11 -8
  21. airflow/providers/standard/triggers/hitl.py +2 -2
  22. airflow/providers/standard/utils/openlineage.py +185 -0
  23. airflow/providers/standard/utils/python_virtualenv.py +4 -3
  24. airflow/providers/standard/utils/python_virtualenv_script.jinja2 +18 -3
  25. airflow/providers/standard/utils/skipmixin.py +2 -2
  26. {apache_airflow_providers_standard-1.9.2rc1.dist-info → apache_airflow_providers_standard-1.11.0.dist-info}/METADATA +22 -10
  27. {apache_airflow_providers_standard-1.9.2rc1.dist-info → apache_airflow_providers_standard-1.11.0.dist-info}/RECORD +31 -30
  28. {apache_airflow_providers_standard-1.9.2rc1.dist-info → apache_airflow_providers_standard-1.11.0.dist-info}/licenses/NOTICE +1 -1
  29. {apache_airflow_providers_standard-1.9.2rc1.dist-info → apache_airflow_providers_standard-1.11.0.dist-info}/WHEEL +0 -0
  30. {apache_airflow_providers_standard-1.9.2rc1.dist-info → apache_airflow_providers_standard-1.11.0.dist-info}/entry_points.txt +0 -0
  31. {apache_airflow_providers_standard-1.9.2rc1.dist-info → apache_airflow_providers_standard-1.11.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,9 +1,9 @@
1
- airflow/providers/standard/__init__.py,sha256=jfNXXadd0prAQ-FCHal8rq0weWZ0Rb2en5O2wHveHE0,1497
2
- airflow/providers/standard/exceptions.py,sha256=m2Ryv36yrzAk8xMIA4lhR11n1gA1CKPFwRok8ksl_tk,2416
3
- airflow/providers/standard/get_provider_info.py,sha256=NVstkG2ZeAiTZnvmbrMpxcYgJzcdITKdQvgDOZYX1Rk,7227
1
+ airflow/providers/standard/__init__.py,sha256=cnnm9_0d8faHw6BVGMhW4_v_qqK8_eRCiXpWvc9CfCE,1498
2
+ airflow/providers/standard/exceptions.py,sha256=d5BzPvWfKGMZbgvlkFQCFyVijh2Y2_CB2_2tOmU2djE,2433
3
+ airflow/providers/standard/get_provider_info.py,sha256=XP3pB1hX-5xAWLULorLNUB4upJusulXZdd-b_BUCy-Y,7309
4
4
  airflow/providers/standard/version_compat.py,sha256=wzS7qPjUGZp-zZeL2YnvAlxD-Sdtt7ff6KnlFk3xlUA,2166
5
5
  airflow/providers/standard/decorators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
6
- airflow/providers/standard/decorators/bash.py,sha256=7njtxxSfAwBdcOz8ZPTH1MLsXTgyL-oxEE7kXMZvv3Q,4132
6
+ airflow/providers/standard/decorators/bash.py,sha256=JFEC7uKb8LJfk2EeRnmo1P5s6Yp5onfqDm7l5jQne1Q,4105
7
7
  airflow/providers/standard/decorators/branch_external_python.py,sha256=sGtSrCK137HLm77fcxbYgpDeMMuYdMJp6oVbPrQHvPU,2403
8
8
  airflow/providers/standard/decorators/branch_python.py,sha256=-p3Mwm0CURcPrh4nHHIUK8KCS_R2fXLaGYPWK62CTSY,2323
9
9
  airflow/providers/standard/decorators/branch_virtualenv.py,sha256=D1vbkyMB6dOItIVvd3evMT4WC0XX39vp0USs-ZJ9N6A,2405
@@ -14,7 +14,7 @@ airflow/providers/standard/decorators/sensor.py,sha256=vF-AeZN0Fl4cOV1l7r-J6Nac_
14
14
  airflow/providers/standard/decorators/short_circuit.py,sha256=lhcnnhgVMq7yOJvQrWGMYxATYJPOe9UOmdf-LLg-N8c,2352
15
15
  airflow/providers/standard/decorators/stub.py,sha256=faKSBFIaLOZSbf4fD7WwLGKclW-bMAUlGf8b_HLWX0Q,3020
16
16
  airflow/providers/standard/example_dags/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
17
- airflow/providers/standard/example_dags/example_bash_decorator.py,sha256=4K_LYEpqgHKQeKxHZ_oHL1x1LPbJQZonU3m6kzxK6EE,3729
17
+ airflow/providers/standard/example_dags/example_bash_decorator.py,sha256=pIwJcGzwWO9EMznljSQfopn9ug3UkOb86jRtbejuoAg,3733
18
18
  airflow/providers/standard/example_dags/example_bash_operator.py,sha256=tAS4cBsKW9B1nUukmYTpUw5Vf63476v_-tYjffyAtd4,2352
19
19
  airflow/providers/standard/example_dags/example_branch_datetime_operator.py,sha256=6sGzn1xlMaF3I-HMI7bvx78oyxZUw5WAF_Gja_ZUch0,3765
20
20
  airflow/providers/standard/example_dags/example_branch_day_of_week_operator.py,sha256=75ncMaGfkjxN0ULszqeXrSL5rHauUTNOhGiGAGPm3pw,2362
@@ -25,8 +25,8 @@ airflow/providers/standard/example_dags/example_external_task_marker_dag.py,sha2
25
25
  airflow/providers/standard/example_dags/example_external_task_parent_deferrable.py,sha256=7mAZHndZyETYMIDfuh0YPJnIHWyGLSzeXGCIcWBP2Uw,2092
26
26
  airflow/providers/standard/example_dags/example_hitl_operator.py,sha256=nPlDpxVFD_9JMB_A_ryXP-rNHmtXZh_paBftohBfYWg,6025
27
27
  airflow/providers/standard/example_dags/example_latest_only.py,sha256=ac9WpLMWLzyuxZks74t3HojS7vRG2gynmQfGm13gwOI,1456
28
- airflow/providers/standard/example_dags/example_python_decorator.py,sha256=jveqPOw1GZzD3Z37_rYc8Q8hcyx8vCNjgetpO_P6qmg,4281
29
- airflow/providers/standard/example_dags/example_python_operator.py,sha256=3L6CZHK2Fb7zmA9tDhZ5QaEe38WJYlS4l35Gc7xJAoE,4761
28
+ airflow/providers/standard/example_dags/example_python_decorator.py,sha256=S37ScXEgNRO-qJuZomHoUsyqhGyj5g7BEIwsKCXjz4A,4941
29
+ airflow/providers/standard/example_dags/example_python_operator.py,sha256=nWh5w8PgaGhc1yMam1ZCRMTA4lERBE9rTdki0Gnm6xs,5474
30
30
  airflow/providers/standard/example_dags/example_sensor_decorator.py,sha256=zEZUh2YD17T8-bX-HGjar5cCqgi6qHIB0fXY29lboJA,1873
31
31
  airflow/providers/standard/example_dags/example_sensors.py,sha256=SoaLeoKK4r41EqJbF1UmcCNqMDnqwWd_qf211_VMUeM,4667
32
32
  airflow/providers/standard/example_dags/example_short_circuit_decorator.py,sha256=rtEOT4P_B8JRM0M6TAjmIstUJFHUkqJdWQhU9L3YD6I,2429
@@ -40,39 +40,40 @@ airflow/providers/standard/hooks/package_index.py,sha256=BgPZB9z0UKV1jO-QERdxZTw
40
40
  airflow/providers/standard/hooks/subprocess.py,sha256=bO6xV9JBfQ_iZAdV1JiycHSqd_HWYgKUOSGCd32H2Js,4667
41
41
  airflow/providers/standard/models/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
42
42
  airflow/providers/standard/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
43
- airflow/providers/standard/operators/bash.py,sha256=BJaW76cjLdio8ldTytA03lKlDw16xJYl_zF4mWF39Ts,11053
43
+ airflow/providers/standard/operators/bash.py,sha256=IP9-Ji7dL9FSoWGA95DZEIz4P1K1kylKL1BzZY2-Bdc,11060
44
44
  airflow/providers/standard/operators/branch.py,sha256=NtQVkB63nvZCnFoYlfhM-fG1c9zakEDIid20KfuoLW4,4247
45
- airflow/providers/standard/operators/datetime.py,sha256=U9hSX5wP0e0NfgM2gYitqOIoqvJxrGxTU2TUV82pHPg,4879
45
+ airflow/providers/standard/operators/datetime.py,sha256=G7wBc9bn0YSJqNQCgEBPiu_Qmsn9Ic4mt3W1aoU0N2A,4849
46
46
  airflow/providers/standard/operators/empty.py,sha256=flxN2BhuHegEOiiAcJR9QOuMO8PcxQu353Q9p-Yk82s,1342
47
- airflow/providers/standard/operators/hitl.py,sha256=rsCkEKBeK-f0nCd17yvjMzPXqUdmTfKwhnwTgd9Xqo0,18209
48
- airflow/providers/standard/operators/latest_only.py,sha256=95c4z3tjjTlJQ-I90AbfQRnYeUPxxSjJI-TaTWkrCWs,5017
49
- airflow/providers/standard/operators/python.py,sha256=vxwTKJJ22ZCrMVWtzmWgKgfh6tO7oKeMVXOdItowPbc,53650
47
+ airflow/providers/standard/operators/hitl.py,sha256=BRMrUsdDjc4snZdXdaMD6u15gvjn1AqDWb7A-JbVrIg,18669
48
+ airflow/providers/standard/operators/latest_only.py,sha256=CjlffWV9bK2UZ8L5KTPLNq3EG_EF6tQl7CLT4uz-eBg,5292
49
+ airflow/providers/standard/operators/python.py,sha256=Sq2OXgLK6v00CyaAP4AspMGEo87-EK-FUZZ_cqbPAek,57307
50
50
  airflow/providers/standard/operators/smooth.py,sha256=WamRqmeSm6BcGCCBAqBEVYIRk4ZXbeI_Q7OjPgLfnUI,1400
51
- airflow/providers/standard/operators/trigger_dagrun.py,sha256=b4mkLIn0knBqeGZMJYr-SkBpqPLjhnrjAArtnMExkQo,16816
51
+ airflow/providers/standard/operators/trigger_dagrun.py,sha256=ctmkJ5Yw5m_OuXuwRblgQ4LcSVHP5WCoiMes1A7OSNA,19651
52
52
  airflow/providers/standard/operators/weekday.py,sha256=s8C6T-x9Hvkj4YQWCguTRyhiAqdJYCBr12rPm2qYC3M,4957
53
53
  airflow/providers/standard/sensors/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
54
- airflow/providers/standard/sensors/bash.py,sha256=W_RUdczpEfta7WZVzNHuPbsnZq5YvchmlqEGp3tiLYI,4822
55
- airflow/providers/standard/sensors/date_time.py,sha256=_Pc4DBL807sJInvaTFxBvAirb3FtBbdpoBYGZj-u4dQ,6355
56
- airflow/providers/standard/sensors/external_task.py,sha256=oGB71ZkyzuDE4p2GaGyaRBSEiMy4twATD5OTnG9HRFk,30357
57
- airflow/providers/standard/sensors/filesystem.py,sha256=tuKzvQhv-FO9yQOZ1lhDLAOTHtKlaMXPBmq1asSzlfU,5896
54
+ airflow/providers/standard/sensors/bash.py,sha256=EkG1zl2yoUirWAg03BjEpdDTSJbo1ugE-AxhE5s40Ks,4792
55
+ airflow/providers/standard/sensors/date_time.py,sha256=WEbbniUQZU1pGURDieEGWZcsEy0RRxjoKPIxCYdsObg,5838
56
+ airflow/providers/standard/sensors/external_task.py,sha256=TfoZjv8DmhrAplPqMze3eEPLsqI_VjZaBa9j4meTty8,31146
57
+ airflow/providers/standard/sensors/filesystem.py,sha256=fTI6FsBXOI9NE2zlipGAKJE1kvQ5gLaNJf5dOi1pgE8,5316
58
58
  airflow/providers/standard/sensors/python.py,sha256=eBfy0QRgsQHw4H4pZ4u7DNzu7ZdMH7TtPQWOdP4wWqA,3221
59
- airflow/providers/standard/sensors/time.py,sha256=ymNNjJmtcUKumlbSfPq6krCF_4lsuFtdjqTNr-gPlOM,4986
60
- airflow/providers/standard/sensors/time_delta.py,sha256=aEz9VMxnILWafac6sdZRXDYAvV_XukVYFRFYB2buVAY,7453
59
+ airflow/providers/standard/sensors/time.py,sha256=qgHENTcppShQUtxGJrvPeFPGoDK41zCB3TbLJLpBJzQ,4436
60
+ airflow/providers/standard/sensors/time_delta.py,sha256=7sqmAcaCtnfZeSW6DTSNQbf6TEVH2Doe58OqLHhOusA,7468
61
61
  airflow/providers/standard/sensors/weekday.py,sha256=Jb_QPJNN7_Os1X0Y-MA0-J_tv-rtWjZcU0C_5edo8X0,4291
62
62
  airflow/providers/standard/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
63
- airflow/providers/standard/triggers/external_task.py,sha256=LKjoLC--pIBWBDqt9uOVHeGqlmr8svSprh8beFGUSF8,11652
63
+ airflow/providers/standard/triggers/external_task.py,sha256=jmHxCg96NPudD-HytsFiGsaI75_X6Cj1qlc5drG8KYU,11808
64
64
  airflow/providers/standard/triggers/file.py,sha256=mkZuOBNMHON9DQSBRO1NIqcNNjxGM5dbYOQ1Cfsm-BQ,4877
65
- airflow/providers/standard/triggers/hitl.py,sha256=cJfFqiuEq5nZRisfktJ2DgviJqxV9tiBIbS8CYmPaOQ,8501
65
+ airflow/providers/standard/triggers/hitl.py,sha256=z8Mf9S9WQTKIagMdrjWm1TcqC9GY5dKmQHHDbNCO7fs,8535
66
66
  airflow/providers/standard/triggers/temporal.py,sha256=-Zxu96xqt40bhsyzFSK2gv-Ddb2GNr2UogeIoyBX684,4468
67
67
  airflow/providers/standard/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
68
- airflow/providers/standard/utils/python_virtualenv.py,sha256=CyAn1rix-BCvtf6CI6fAMfLZWZx2GRhjfugpyrbRnZc,9522
69
- airflow/providers/standard/utils/python_virtualenv_script.jinja2,sha256=3Z334hVq6hQ9EHkOoGnAHc2_XNkZQkOJGxZArDKLc-c,2770
68
+ airflow/providers/standard/utils/openlineage.py,sha256=B5oON4f9C1Pl69Sl7nMdL9G4aZWXd8s-BjabxoQwbgo,7530
69
+ airflow/providers/standard/utils/python_virtualenv.py,sha256=wUKF6l7fLXD_OKKMcxkQ9O7yoTc52HzbFwT9ezrQjf4,9644
70
+ airflow/providers/standard/utils/python_virtualenv_script.jinja2,sha256=yg4FngvJFX7f3KKv7qbWiuNnq7L-_9hemstywJls1uM,3403
70
71
  airflow/providers/standard/utils/sensor_helper.py,sha256=ZcJeWAGymwUma7R6U7pQXhmQLC2UEeiyjQOrH4uFxt0,5407
71
- airflow/providers/standard/utils/skipmixin.py,sha256=YDgyVUv6XBmsMJzv5AhatZvymgcThBmBD0Yr2_lh40E,8012
72
+ airflow/providers/standard/utils/skipmixin.py,sha256=gVmICO2CjH6faJPhzVC8_NkwwnhcEhnULifGJF1tVtg,8046
72
73
  airflow/providers/standard/utils/weekday.py,sha256=ySDrIkWv-lqqxURo9E98IGInDqERec2O4y9o2hQTGiQ,2685
73
- apache_airflow_providers_standard-1.9.2rc1.dist-info/entry_points.txt,sha256=mW2YRh3mVdZdaP5-iGSNgmcCh3YYdALIn28BCLBZZ40,104
74
- apache_airflow_providers_standard-1.9.2rc1.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
75
- apache_airflow_providers_standard-1.9.2rc1.dist-info/licenses/NOTICE,sha256=E3-_E02gwwSEFzeeWPKmnIjOoos3hW28CLISV6sYrbQ,168
76
- apache_airflow_providers_standard-1.9.2rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
77
- apache_airflow_providers_standard-1.9.2rc1.dist-info/METADATA,sha256=C7vbo6Vt_Zmx2cfqp0IM3DqMLA5fE9cA8cK6l_kY10I,5131
78
- apache_airflow_providers_standard-1.9.2rc1.dist-info/RECORD,,
74
+ apache_airflow_providers_standard-1.11.0.dist-info/entry_points.txt,sha256=mW2YRh3mVdZdaP5-iGSNgmcCh3YYdALIn28BCLBZZ40,104
75
+ apache_airflow_providers_standard-1.11.0.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
76
+ apache_airflow_providers_standard-1.11.0.dist-info/licenses/NOTICE,sha256=_cWHznIoUSbLCY_KfmKqetlKlsoH0c2VBjmZjElAzuc,168
77
+ apache_airflow_providers_standard-1.11.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
78
+ apache_airflow_providers_standard-1.11.0.dist-info/METADATA,sha256=NTh5yAEJkEyrs5gLiP4BswUHCBGmU0-dCRcGwVffhIo,5662
79
+ apache_airflow_providers_standard-1.11.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Apache Airflow
2
- Copyright 2016-2025 The Apache Software Foundation
2
+ Copyright 2016-2026 The Apache Software Foundation
3
3
 
4
4
  This product includes software developed at
5
5
  The Apache Software Foundation (http://www.apache.org/).