apache-airflow-providers-microsoft-azure 12.2.1__py3-none-any.whl → 12.2.2rc1__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.
- airflow/providers/microsoft/azure/__init__.py +1 -1
- airflow/providers/microsoft/azure/get_provider_info.py +4 -2
- airflow/providers/microsoft/azure/operators/data_factory.py +3 -1
- airflow/providers/microsoft/azure/operators/synapse.py +3 -1
- {apache_airflow_providers_microsoft_azure-12.2.1.dist-info → apache_airflow_providers_microsoft_azure-12.2.2rc1.dist-info}/METADATA +11 -9
- {apache_airflow_providers_microsoft_azure-12.2.1.dist-info → apache_airflow_providers_microsoft_azure-12.2.2rc1.dist-info}/RECORD +8 -8
- {apache_airflow_providers_microsoft_azure-12.2.1.dist-info → apache_airflow_providers_microsoft_azure-12.2.2rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_microsoft_azure-12.2.1.dist-info → apache_airflow_providers_microsoft_azure-12.2.2rc1.dist-info}/entry_points.txt +0 -0
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
29
29
|
|
30
30
|
__all__ = ["__version__"]
|
31
31
|
|
32
|
-
__version__ = "12.2.
|
32
|
+
__version__ = "12.2.2"
|
33
33
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
35
35
|
"2.9.0"
|
@@ -27,8 +27,9 @@ def get_provider_info():
|
|
27
27
|
"name": "Microsoft Azure",
|
28
28
|
"description": "`Microsoft Azure <https://azure.microsoft.com/>`__\n",
|
29
29
|
"state": "ready",
|
30
|
-
"source-date-epoch":
|
30
|
+
"source-date-epoch": 1742980868,
|
31
31
|
"versions": [
|
32
|
+
"12.2.2",
|
32
33
|
"12.2.1",
|
33
34
|
"12.2.0",
|
34
35
|
"12.0.0",
|
@@ -486,6 +487,7 @@ def get_provider_info():
|
|
486
487
|
"microsoft-kiota-serialization-json==1.0.0",
|
487
488
|
"microsoft-kiota-serialization-text==1.0.0",
|
488
489
|
"microsoft-kiota-abstractions<1.4.0",
|
490
|
+
"msal-extensions>=1.1.0",
|
489
491
|
],
|
490
492
|
"optional-dependencies": {
|
491
493
|
"amazon": ["apache-airflow-providers-amazon"],
|
@@ -493,5 +495,5 @@ def get_provider_info():
|
|
493
495
|
"oracle": ["apache-airflow-providers-oracle"],
|
494
496
|
"sftp": ["apache-airflow-providers-sftp"],
|
495
497
|
},
|
496
|
-
"devel-dependencies": ["pywinrm>=0.
|
498
|
+
"devel-dependencies": ["pywinrm>=0.5.0"],
|
497
499
|
}
|
@@ -25,7 +25,7 @@ from typing import TYPE_CHECKING, Any
|
|
25
25
|
from airflow.configuration import conf
|
26
26
|
from airflow.exceptions import AirflowException
|
27
27
|
from airflow.hooks.base import BaseHook
|
28
|
-
from airflow.models import BaseOperator
|
28
|
+
from airflow.models import BaseOperator
|
29
29
|
from airflow.providers.microsoft.azure.hooks.data_factory import (
|
30
30
|
AzureDataFactoryHook,
|
31
31
|
AzureDataFactoryPipelineRunException,
|
@@ -43,7 +43,9 @@ from airflow.providers.microsoft.azure.version_compat import AIRFLOW_V_3_0_PLUS
|
|
43
43
|
|
44
44
|
if AIRFLOW_V_3_0_PLUS:
|
45
45
|
from airflow.sdk import BaseOperatorLink
|
46
|
+
from airflow.sdk.execution_time.xcom import XCom
|
46
47
|
else:
|
48
|
+
from airflow.models import XCom # type: ignore[no-redef]
|
47
49
|
from airflow.models.baseoperatorlink import BaseOperatorLink # type: ignore[no-redef]
|
48
50
|
|
49
51
|
|
@@ -23,7 +23,7 @@ from urllib.parse import urlencode
|
|
23
23
|
|
24
24
|
from airflow.exceptions import AirflowException
|
25
25
|
from airflow.hooks.base import BaseHook
|
26
|
-
from airflow.models import BaseOperator
|
26
|
+
from airflow.models import BaseOperator
|
27
27
|
from airflow.providers.microsoft.azure.hooks.synapse import (
|
28
28
|
AzureSynapseHook,
|
29
29
|
AzureSynapsePipelineHook,
|
@@ -42,7 +42,9 @@ from airflow.providers.microsoft.azure.version_compat import AIRFLOW_V_3_0_PLUS
|
|
42
42
|
|
43
43
|
if AIRFLOW_V_3_0_PLUS:
|
44
44
|
from airflow.sdk import BaseOperatorLink
|
45
|
+
from airflow.sdk.execution_time.xcom import XCom
|
45
46
|
else:
|
47
|
+
from airflow.models import XCom # type: ignore[no-redef]
|
46
48
|
from airflow.models.baseoperatorlink import BaseOperatorLink # type: ignore[no-redef]
|
47
49
|
|
48
50
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: apache-airflow-providers-microsoft-azure
|
3
|
-
Version: 12.2.
|
3
|
+
Version: 12.2.2rc1
|
4
4
|
Summary: Provider package apache-airflow-providers-microsoft-azure for Apache Airflow
|
5
5
|
Keywords: airflow-provider,microsoft.azure,airflow,integration
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
23
|
-
Requires-Dist: apache-airflow>=2.9.
|
23
|
+
Requires-Dist: apache-airflow>=2.9.0rc0
|
24
24
|
Requires-Dist: adlfs>=2023.10.0
|
25
25
|
Requires-Dist: azure-batch>=8.0.0
|
26
26
|
Requires-Dist: azure-cosmos>=4.6.0
|
@@ -47,16 +47,17 @@ Requires-Dist: microsoft-kiota-http>=1.3.0,!=1.3.4
|
|
47
47
|
Requires-Dist: microsoft-kiota-serialization-json==1.0.0
|
48
48
|
Requires-Dist: microsoft-kiota-serialization-text==1.0.0
|
49
49
|
Requires-Dist: microsoft-kiota-abstractions<1.4.0
|
50
|
+
Requires-Dist: msal-extensions>=1.1.0
|
50
51
|
Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
|
51
52
|
Requires-Dist: apache-airflow-providers-common-compat ; extra == "common-compat"
|
52
53
|
Requires-Dist: apache-airflow-providers-oracle ; extra == "oracle"
|
53
54
|
Requires-Dist: apache-airflow-providers-sftp ; extra == "sftp"
|
54
55
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
55
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/12.2.
|
56
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/12.2.
|
56
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/12.2.2/changelog.html
|
57
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/12.2.2
|
58
|
+
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
57
59
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
58
60
|
Project-URL: Source Code, https://github.com/apache/airflow
|
59
|
-
Project-URL: Twitter, https://x.com/ApacheAirflow
|
60
61
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
61
62
|
Provides-Extra: amazon
|
62
63
|
Provides-Extra: common-compat
|
@@ -88,7 +89,7 @@ Provides-Extra: sftp
|
|
88
89
|
|
89
90
|
Package ``apache-airflow-providers-microsoft-azure``
|
90
91
|
|
91
|
-
Release: ``12.2.
|
92
|
+
Release: ``12.2.2``
|
92
93
|
|
93
94
|
|
94
95
|
`Microsoft Azure <https://azure.microsoft.com/>`__
|
@@ -101,7 +102,7 @@ This is a provider package for ``microsoft.azure`` provider. All classes for thi
|
|
101
102
|
are in ``airflow.providers.microsoft.azure`` python package.
|
102
103
|
|
103
104
|
You can find package information and changelog for the provider
|
104
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/12.2.
|
105
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/12.2.2/>`_.
|
105
106
|
|
106
107
|
Installation
|
107
108
|
------------
|
@@ -145,13 +146,14 @@ PIP package Version required
|
|
145
146
|
``microsoft-kiota-serialization-json`` ``==1.0.0``
|
146
147
|
``microsoft-kiota-serialization-text`` ``==1.0.0``
|
147
148
|
``microsoft-kiota-abstractions`` ``<1.4.0``
|
149
|
+
``msal-extensions`` ``>=1.1.0``
|
148
150
|
====================================== ===================
|
149
151
|
|
150
152
|
Cross provider package dependencies
|
151
153
|
-----------------------------------
|
152
154
|
|
153
155
|
Those are dependencies that might be needed in order to use all the features of the package.
|
154
|
-
You need to install the specified
|
156
|
+
You need to install the specified providers in order to use them.
|
155
157
|
|
156
158
|
You can install such cross-provider dependencies when installing from PyPI. For example:
|
157
159
|
|
@@ -170,5 +172,5 @@ Dependent package
|
|
170
172
|
================================================================================================================== =================
|
171
173
|
|
172
174
|
The changelog for the provider package can be found in the
|
173
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/12.2.
|
175
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure/12.2.2/changelog.html>`_.
|
174
176
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
airflow/providers/microsoft/azure/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
2
|
-
airflow/providers/microsoft/azure/__init__.py,sha256=
|
3
|
-
airflow/providers/microsoft/azure/get_provider_info.py,sha256=
|
2
|
+
airflow/providers/microsoft/azure/__init__.py,sha256=QZioieanZ2reR_854HtswGALyUjv-C6g_jfQ5q5ZcMc,1503
|
3
|
+
airflow/providers/microsoft/azure/get_provider_info.py,sha256=ToHenPaEPDa3gB94zyeZ4J463llv3Hhdt_Jp9REMg6g,22032
|
4
4
|
airflow/providers/microsoft/azure/utils.py,sha256=pvBiwBKRYMtEnqkQWLTqvhrsCOkMTRiPH97GkIYHUQc,8429
|
5
5
|
airflow/providers/microsoft/azure/version_compat.py,sha256=aHg90_DtgoSnQvILFICexMyNlHlALBdaeWqkX3dFDug,1605
|
6
6
|
airflow/providers/microsoft/azure/fs/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
@@ -30,10 +30,10 @@ airflow/providers/microsoft/azure/operators/asb.py,sha256=xEgObtCO6oF88A0e0yeDk3
|
|
30
30
|
airflow/providers/microsoft/azure/operators/batch.py,sha256=QgtmaUYgejLtER68o0dDhLRJSGM4WqmstW5Guy7I30U,16270
|
31
31
|
airflow/providers/microsoft/azure/operators/container_instances.py,sha256=EL2c4uBlFTgvi4gm8xNkxGnyhFnwI8IvltG-tcklOFY,18410
|
32
32
|
airflow/providers/microsoft/azure/operators/cosmos.py,sha256=apq0wVYslRaO-ThXGnVyf7v_DovK951vaE7LxcVYU4E,2814
|
33
|
-
airflow/providers/microsoft/azure/operators/data_factory.py,sha256=
|
33
|
+
airflow/providers/microsoft/azure/operators/data_factory.py,sha256=kiVoQ1hYPG725rVhCfpE0MuxiufIQYwXNurCkwtKfY8,12806
|
34
34
|
airflow/providers/microsoft/azure/operators/msgraph.py,sha256=jb0yA7GLaoK3QVhlRq_PcsmCQm8SrM6LkbHEKxw9PxA,13558
|
35
35
|
airflow/providers/microsoft/azure/operators/powerbi.py,sha256=Lp6uzuLw_hNNrQJVy6XhCMCS2wNqhA4OEyTuDHUxMNo,6284
|
36
|
-
airflow/providers/microsoft/azure/operators/synapse.py,sha256=
|
36
|
+
airflow/providers/microsoft/azure/operators/synapse.py,sha256=fqd3W9uHQYidJY-LAJZaQv1okr-pImXokyMd7iLeY-Q,12751
|
37
37
|
airflow/providers/microsoft/azure/operators/wasb_delete_blob.py,sha256=RQQz_xvcjyfY3AuIVkK-J-rkPF3rT-z4SJNPY-fpyZQ,2714
|
38
38
|
airflow/providers/microsoft/azure/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
39
39
|
airflow/providers/microsoft/azure/secrets/key_vault.py,sha256=EmtGfyBtfefGu1ZTtZ5WswIleOx-nx8wst7xfcua2rI,8962
|
@@ -53,7 +53,7 @@ airflow/providers/microsoft/azure/triggers/data_factory.py,sha256=U3vY_pj4yORxE7
|
|
53
53
|
airflow/providers/microsoft/azure/triggers/msgraph.py,sha256=Hsyh9XLtxGhRzxK34xjh5iW9_ghFUHsN0_I7QbLe9Uk,8850
|
54
54
|
airflow/providers/microsoft/azure/triggers/powerbi.py,sha256=14RFR5HfuoX4qKG_FkFc72GhEf34ISg3TxQkBAD9TpA,9758
|
55
55
|
airflow/providers/microsoft/azure/triggers/wasb.py,sha256=RF-C6iqDEs6_pWireCWZXqxcqWK-sFJ695Okdd_EJOA,7456
|
56
|
-
apache_airflow_providers_microsoft_azure-12.2.
|
57
|
-
apache_airflow_providers_microsoft_azure-12.2.
|
58
|
-
apache_airflow_providers_microsoft_azure-12.2.
|
59
|
-
apache_airflow_providers_microsoft_azure-12.2.
|
56
|
+
apache_airflow_providers_microsoft_azure-12.2.2rc1.dist-info/entry_points.txt,sha256=6iWHenOoUC3YZBb3OKn6g0HlJsV58Ba56i8USmQrcJI,111
|
57
|
+
apache_airflow_providers_microsoft_azure-12.2.2rc1.dist-info/WHEEL,sha256=_2ozNFCLWc93bK4WKHCO-eDUENDlo-dgc9cU3qokYO4,82
|
58
|
+
apache_airflow_providers_microsoft_azure-12.2.2rc1.dist-info/METADATA,sha256=ND93B5j7dEIRuR4--reVmF0gzjep1iJjF5sDNvAw7Fc,8458
|
59
|
+
apache_airflow_providers_microsoft_azure-12.2.2rc1.dist-info/RECORD,,
|
File without changes
|