apache-airflow-providers-yandex 4.3.0rc1__py3-none-any.whl → 4.3.3__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.
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "4.3.0"
32
+ __version__ = "4.3.3"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.11.0"
@@ -21,8 +21,7 @@ from typing import TYPE_CHECKING
21
21
  from airflow.providers.common.compat.sdk import BaseOperatorLink, XCom
22
22
 
23
23
  if TYPE_CHECKING:
24
- from airflow.models.taskinstancekey import TaskInstanceKey
25
- from airflow.providers.common.compat.sdk import BaseOperator, Context
24
+ from airflow.providers.common.compat.sdk import BaseOperator, Context, TaskInstanceKey
26
25
 
27
26
  XCOM_WEBLINK_KEY = "web_link"
28
27
 
@@ -145,11 +145,12 @@ class LockboxSecretBackend(BaseSecretsBackend, LoggingMixin):
145
145
  self.sep = sep
146
146
  self.endpoint = endpoint
147
147
 
148
- def get_conn_value(self, conn_id: str) -> str | None:
148
+ def get_conn_value(self, conn_id: str, team_name: str | None = None) -> str | None:
149
149
  """
150
150
  Retrieve from Secrets Backend a string value representing the Connection object.
151
151
 
152
152
  :param conn_id: Connection ID
153
+ :param team_name: Team name associated to the task trying to access the connection (if any)
153
154
  :return: Connection Value
154
155
  """
155
156
  if self.connections_prefix is None:
@@ -160,11 +161,12 @@ class LockboxSecretBackend(BaseSecretsBackend, LoggingMixin):
160
161
 
161
162
  return self._get_secret_value(self.connections_prefix, conn_id)
162
163
 
163
- def get_variable(self, key: str) -> str | None:
164
+ def get_variable(self, key: str, team_name: str | None = None) -> str | None:
164
165
  """
165
166
  Return value for Airflow Variable.
166
167
 
167
168
  :param key: Variable Key
169
+ :param team_name: Team name associated to the task trying to access the variable (if any)
168
170
  :return: Variable Value
169
171
  """
170
172
  if self.variables_prefix is None:
@@ -24,7 +24,7 @@ from airflow.providers.yandex.utils.defaults import conn_type, hook_name
24
24
  def provider_user_agent() -> str | None:
25
25
  """Construct User-Agent from Airflow core & provider package versions."""
26
26
  from airflow import __version__ as airflow_version
27
- from airflow.configuration import conf
27
+ from airflow.providers.common.compat.sdk import conf
28
28
  from airflow.providers_manager import ProvidersManager
29
29
 
30
30
  try:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-yandex
3
- Version: 4.3.0rc1
3
+ Version: 4.3.3
4
4
  Summary: Provider package apache-airflow-providers-yandex for Apache Airflow
5
5
  Keywords: airflow-provider,yandex,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -21,19 +21,17 @@ Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Topic :: System :: Monitoring
22
22
  License-File: LICENSE
23
23
  License-File: NOTICE
24
- Requires-Dist: apache-airflow>=2.11.0rc1
24
+ Requires-Dist: apache-airflow>=2.11.0
25
25
  Requires-Dist: yandexcloud>=0.308.0; python_version < '3.13'
26
26
  Requires-Dist: yandex-query-client>=0.1.4; python_version < '3.13'
27
- Requires-Dist: apache-airflow-providers-common-compat>=1.8.0rc1
28
- Requires-Dist: apache-airflow-providers-common-compat ; extra == "common-compat"
27
+ Requires-Dist: apache-airflow-providers-common-compat>=1.13.0
29
28
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
30
- Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-yandex/4.3.0/changelog.html
31
- Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-yandex/4.3.0
29
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.3/changelog.html
30
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.3
32
31
  Project-URL: Mastodon, https://fosstodon.org/@airflow
33
32
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
34
33
  Project-URL: Source Code, https://github.com/apache/airflow
35
34
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
36
- Provides-Extra: common-compat
37
35
 
38
36
 
39
37
  .. Licensed to the Apache Software Foundation (ASF) under one
@@ -60,7 +58,7 @@ Provides-Extra: common-compat
60
58
 
61
59
  Package ``apache-airflow-providers-yandex``
62
60
 
63
- Release: ``4.3.0``
61
+ Release: ``4.3.3``
64
62
 
65
63
 
66
64
  This package is for Yandex, including:
@@ -75,7 +73,7 @@ This is a provider package for ``yandex`` provider. All classes for this provide
75
73
  are in ``airflow.providers.yandex`` python package.
76
74
 
77
75
  You can find package information and changelog for the provider
78
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.0/>`_.
76
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.3/>`_.
79
77
 
80
78
  Installation
81
79
  ------------
@@ -95,7 +93,7 @@ PIP package Version required
95
93
  ``apache-airflow`` ``>=2.11.0``
96
94
  ``yandexcloud`` ``>=0.308.0; python_version < "3.13"``
97
95
  ``yandex-query-client`` ``>=0.1.4; python_version < "3.13"``
98
- ``apache-airflow-providers-common-compat`` ``>=1.8.0``
96
+ ``apache-airflow-providers-common-compat`` ``>=1.13.0``
99
97
  ========================================== ======================================
100
98
 
101
99
  Cross provider package dependencies
@@ -117,15 +115,6 @@ Dependent package
117
115
  `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
118
116
  ================================================================================================================== =================
119
117
 
120
- Optional dependencies
121
- ----------------------
122
-
123
- ================= ==========================================
124
- Extra Dependencies
125
- ================= ==========================================
126
- ``common.compat`` ``apache-airflow-providers-common-compat``
127
- ================= ==========================================
128
-
129
118
  The changelog for the provider package can be found in the
130
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.0/changelog.html>`_.
119
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.3.3/changelog.html>`_.
131
120
 
@@ -1,4 +1,4 @@
1
- airflow/providers/yandex/__init__.py,sha256=DW1uyyV6tskuQaYgwGpKh03MPLaTxgR33L7_3C0evWI,1495
1
+ airflow/providers/yandex/__init__.py,sha256=asRgq1tCW_juD54ImktT5RLRuHnq5Y8kD8PkxRrQUDk,1495
2
2
  airflow/providers/yandex/get_provider_info.py,sha256=eihBGmOy9ljwxZQLES-Fi0RdSKWGze07VtFBRUITLP0,4015
3
3
  airflow/providers/yandex/version_compat.py,sha256=vtJvU2K5KMXOjTPGDc58tkbBn6Ys8SEro15TNMrIO5Q,1296
4
4
  airflow/providers/yandex/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
@@ -6,20 +6,20 @@ airflow/providers/yandex/hooks/dataproc.py,sha256=8ykGvlZUAjAKHpypiOYcWVJk7u-WNj
6
6
  airflow/providers/yandex/hooks/yandex.py,sha256=TJKvsawI8N1PDqeJPolpGg-pS80rV-ke58tbhbPGz2g,6451
7
7
  airflow/providers/yandex/hooks/yq.py,sha256=Qh1ZTp8OVKvQ6sFzmKUMe3kbkYT5v7D4qEq6VsKtB2k,3503
8
8
  airflow/providers/yandex/links/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
9
- airflow/providers/yandex/links/yq.py,sha256=ijtwys-BlDhDWOY0wMoyKujfjYsbbzUVzeMZ8thBHhQ,1545
9
+ airflow/providers/yandex/links/yq.py,sha256=8JHSE8Awyi9-WbdYDgnD2edXRMuneFxm-EolhfKtsWY,1499
10
10
  airflow/providers/yandex/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
11
11
  airflow/providers/yandex/operators/dataproc.py,sha256=vsToeSUXmQLD6anhcs8vO_i63A_G0HhundhCNRmQw4k,26275
12
12
  airflow/providers/yandex/operators/yq.py,sha256=WBF7sVVeiACA5iPcoi69mcXPE1H--_xuuT4LoZLK1mQ,3279
13
13
  airflow/providers/yandex/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
14
- airflow/providers/yandex/secrets/lockbox.py,sha256=gUYWJE2qEvAZRz35qv0iKYK33BGnWesahZFuQgK5_kM,12168
14
+ airflow/providers/yandex/secrets/lockbox.py,sha256=rpMVl064WK5hl3MFb9pCkKNmVUokGkDZyZK8qn7D120,12426
15
15
  airflow/providers/yandex/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
16
16
  airflow/providers/yandex/utils/credentials.py,sha256=l-8lIkQaIXTsNP_hMfP_tVADM54ZdV70J4563Ig7r4M,3487
17
17
  airflow/providers/yandex/utils/defaults.py,sha256=CXt75MhGJe8echoDpl1vR4VG5bEvYDDjIHmFqckDh2w,950
18
18
  airflow/providers/yandex/utils/fields.py,sha256=1D8SDWH8h0djj5Hnk50w6BpPeNJyP-689Qfjpkr-yCg,1728
19
- airflow/providers/yandex/utils/user_agent.py,sha256=AC-WEzhjxkgUYOy4LdX2-nnUZdMhKRRUCJ2_TjfNm6k,1839
20
- apache_airflow_providers_yandex-4.3.0rc1.dist-info/entry_points.txt,sha256=ApXKRkvdgU2QNSQovjewC0b-LptwfBGBnJB3LTgBNx8,102
21
- apache_airflow_providers_yandex-4.3.0rc1.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
22
- apache_airflow_providers_yandex-4.3.0rc1.dist-info/licenses/NOTICE,sha256=E3-_E02gwwSEFzeeWPKmnIjOoos3hW28CLISV6sYrbQ,168
23
- apache_airflow_providers_yandex-4.3.0rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
24
- apache_airflow_providers_yandex-4.3.0rc1.dist-info/METADATA,sha256=WQSx0M3I8wfhGjcnBERQFqmPsFHkv-DC-ls7yGKfdqM,5913
25
- apache_airflow_providers_yandex-4.3.0rc1.dist-info/RECORD,,
19
+ airflow/providers/yandex/utils/user_agent.py,sha256=sTPOXgRv3EKyYKDjZ7iKaV2FUsCZgBWE92qEfoiSLKI,1853
20
+ apache_airflow_providers_yandex-4.3.3.dist-info/entry_points.txt,sha256=ApXKRkvdgU2QNSQovjewC0b-LptwfBGBnJB3LTgBNx8,102
21
+ apache_airflow_providers_yandex-4.3.3.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
22
+ apache_airflow_providers_yandex-4.3.3.dist-info/licenses/NOTICE,sha256=_cWHznIoUSbLCY_KfmKqetlKlsoH0c2VBjmZjElAzuc,168
23
+ apache_airflow_providers_yandex-4.3.3.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
24
+ apache_airflow_providers_yandex-4.3.3.dist-info/METADATA,sha256=SUDE0THS1oVb_31aAVd7-dHrr5ivFlYYz81NVmy3h1E,5454
25
+ apache_airflow_providers_yandex-4.3.3.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/).