apache-airflow-providers-yandex 4.0.3rc1__tar.gz → 4.1.0__tar.gz

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 (64) hide show
  1. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/PKG-INFO +8 -8
  2. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/README.rst +4 -4
  3. apache_airflow_providers_yandex-4.1.0/docs/.latest-doc-only-change.txt +1 -0
  4. apache_airflow_providers_yandex-4.1.0/docs/changelog.rst +525 -0
  5. apache_airflow_providers_yandex-4.1.0/docs/commits.rst +37 -0
  6. apache_airflow_providers_yandex-4.1.0/docs/conf.py +27 -0
  7. apache_airflow_providers_yandex-4.1.0/docs/configurations-ref.rst +19 -0
  8. apache_airflow_providers_yandex-4.1.0/docs/connections/yandexcloud.rst +95 -0
  9. apache_airflow_providers_yandex-4.1.0/docs/index.rst +138 -0
  10. apache_airflow_providers_yandex-4.1.0/docs/installing-providers-from-sources.rst +18 -0
  11. apache_airflow_providers_yandex-4.1.0/docs/integration-logos/Yandex-Cloud.png +0 -0
  12. apache_airflow_providers_yandex-4.1.0/docs/operators/dataproc.rst +37 -0
  13. apache_airflow_providers_yandex-4.1.0/docs/operators/index.rst +28 -0
  14. apache_airflow_providers_yandex-4.1.0/docs/operators/yq.rst +28 -0
  15. apache_airflow_providers_yandex-4.1.0/docs/secrets-backends/yandex-cloud-lockbox-secret-backend.rst +298 -0
  16. apache_airflow_providers_yandex-4.1.0/docs/security.rst +18 -0
  17. apache_airflow_providers_yandex-4.1.0/provider.yaml +121 -0
  18. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/pyproject.toml +20 -5
  19. apache_airflow_providers_yandex-4.1.0/src/airflow/__init__.py +17 -0
  20. apache_airflow_providers_yandex-4.1.0/src/airflow/providers/__init__.py +17 -0
  21. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/__init__.py +3 -3
  22. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/get_provider_info.py +0 -35
  23. apache_airflow_providers_yandex-4.1.0/tests/conftest.py +19 -0
  24. apache_airflow_providers_yandex-4.1.0/tests/system/__init__.py +17 -0
  25. apache_airflow_providers_yandex-4.1.0/tests/system/yandex/__init__.py +16 -0
  26. apache_airflow_providers_yandex-4.1.0/tests/system/yandex/example_yandexcloud.py +210 -0
  27. apache_airflow_providers_yandex-4.1.0/tests/system/yandex/example_yandexcloud_dataproc.py +175 -0
  28. apache_airflow_providers_yandex-4.1.0/tests/system/yandex/example_yandexcloud_dataproc_lightweight.py +83 -0
  29. apache_airflow_providers_yandex-4.1.0/tests/system/yandex/example_yandexcloud_yq.py +52 -0
  30. apache_airflow_providers_yandex-4.1.0/tests/unit/__init__.py +17 -0
  31. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/__init__.py +16 -0
  32. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/hooks/__init__.py +16 -0
  33. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/hooks/test_dataproc.py +191 -0
  34. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/hooks/test_yandex.py +150 -0
  35. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/hooks/test_yq.py +132 -0
  36. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/links/__init__.py +16 -0
  37. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/links/test_yq.py +69 -0
  38. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/operators/__init__.py +16 -0
  39. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/operators/test_dataproc.py +382 -0
  40. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/operators/test_yq.py +128 -0
  41. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/secrets/__init__.py +16 -0
  42. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/secrets/test_lockbox.py +474 -0
  43. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/utils/__init__.py +16 -0
  44. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/utils/test_credentials.py +168 -0
  45. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/utils/test_defaults.py +16 -0
  46. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/utils/test_fields.py +83 -0
  47. apache_airflow_providers_yandex-4.1.0/tests/unit/yandex/utils/test_user_agent.py +56 -0
  48. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/LICENSE +0 -0
  49. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/hooks/__init__.py +0 -0
  50. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/hooks/dataproc.py +0 -0
  51. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/hooks/yandex.py +0 -0
  52. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/hooks/yq.py +0 -0
  53. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/links/__init__.py +0 -0
  54. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/links/yq.py +0 -0
  55. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/operators/__init__.py +0 -0
  56. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/operators/dataproc.py +0 -0
  57. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/operators/yq.py +0 -0
  58. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/secrets/__init__.py +0 -0
  59. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/secrets/lockbox.py +0 -0
  60. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/utils/__init__.py +0 -0
  61. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/utils/credentials.py +0 -0
  62. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/utils/defaults.py +0 -0
  63. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/utils/fields.py +0 -0
  64. {apache_airflow_providers_yandex-4.0.3rc1 → apache_airflow_providers_yandex-4.1.0}/src/airflow/providers/yandex/utils/user_agent.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-yandex
3
- Version: 4.0.3rc1
3
+ Version: 4.1.0
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>
@@ -20,13 +20,13 @@ 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.0rc0
23
+ Requires-Dist: apache-airflow>=2.10.0
24
24
  Requires-Dist: yandexcloud>=0.308.0
25
25
  Requires-Dist: yandex-query-client>=0.1.4
26
26
  Requires-Dist: apache-airflow-providers-common-compat ; extra == "common-compat"
27
27
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
28
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3/changelog.html
29
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3
28
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.1.0/changelog.html
29
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.1.0
30
30
  Project-URL: Mastodon, https://fosstodon.org/@airflow
31
31
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
32
32
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -58,7 +58,7 @@ Provides-Extra: common-compat
58
58
 
59
59
  Package ``apache-airflow-providers-yandex``
60
60
 
61
- Release: ``4.0.3``
61
+ Release: ``4.1.0``
62
62
 
63
63
 
64
64
  This package is for Yandex, including:
@@ -73,7 +73,7 @@ This is a provider package for ``yandex`` provider. All classes for this provide
73
73
  are in ``airflow.providers.yandex`` python package.
74
74
 
75
75
  You can find package information and changelog for the provider
76
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3/>`_.
76
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.1.0/>`_.
77
77
 
78
78
  Installation
79
79
  ------------
@@ -90,7 +90,7 @@ Requirements
90
90
  ======================= ==================
91
91
  PIP package Version required
92
92
  ======================= ==================
93
- ``apache-airflow`` ``>=2.9.0``
93
+ ``apache-airflow`` ``>=2.10.0``
94
94
  ``yandexcloud`` ``>=0.308.0``
95
95
  ``yandex-query-client`` ``>=0.1.4``
96
96
  ======================= ==================
@@ -115,5 +115,5 @@ Dependent package
115
115
  ================================================================================================================== =================
116
116
 
117
117
  The changelog for the provider package can be found in the
118
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3/changelog.html>`_.
118
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.1.0/changelog.html>`_.
119
119
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-yandex``
25
25
 
26
- Release: ``4.0.3``
26
+ Release: ``4.1.0``
27
27
 
28
28
 
29
29
  This package is for Yandex, including:
@@ -38,7 +38,7 @@ This is a provider package for ``yandex`` provider. All classes for this provide
38
38
  are in ``airflow.providers.yandex`` python package.
39
39
 
40
40
  You can find package information and changelog for the provider
41
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3/>`_.
41
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.1.0/>`_.
42
42
 
43
43
  Installation
44
44
  ------------
@@ -55,7 +55,7 @@ Requirements
55
55
  ======================= ==================
56
56
  PIP package Version required
57
57
  ======================= ==================
58
- ``apache-airflow`` ``>=2.9.0``
58
+ ``apache-airflow`` ``>=2.10.0``
59
59
  ``yandexcloud`` ``>=0.308.0``
60
60
  ``yandex-query-client`` ``>=0.1.4``
61
61
  ======================= ==================
@@ -80,4 +80,4 @@ Dependent package
80
80
  ================================================================================================================== =================
81
81
 
82
82
  The changelog for the provider package can be found in the
83
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3/changelog.html>`_.
83
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.1.0/changelog.html>`_.
@@ -0,0 +1 @@
1
+ 7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f
@@ -0,0 +1,525 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+
19
+ .. NOTE TO CONTRIBUTORS:
20
+ Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
21
+ and you want to add an explanation to the users on how they are supposed to deal with them.
22
+ The changelog is updated and maintained semi-automatically by release manager.
23
+
24
+ ``apache-airflow-providers-yandex``
25
+
26
+
27
+ Changelog
28
+ ---------
29
+
30
+ 4.1.0
31
+ .....
32
+
33
+ .. note::
34
+ This release of provider is only available for Airflow 2.10+ as explained in the
35
+ Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
36
+
37
+ Misc
38
+ ~~~~
39
+
40
+ * ``Bump min Airflow version in providers to 2.10 (#49843)``
41
+
42
+ .. Below changes are excluded from the changelog. Move them to
43
+ appropriate section above if needed. Do not delete the lines(!):
44
+ * ``Update description of provider.yaml dependencies (#50231)``
45
+ * ``Avoid committing history for providers (#49907)``
46
+ * ``Prepare docs for Apr 2nd wave of providers (#49051)``
47
+ * ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
48
+ * ``Remove fab from preinstalled providers (#48457)``
49
+ * ``Improve documentation building iteration (#48760)``
50
+ * ``Prepare docs for Apr 1st wave of providers (#48828)``
51
+ * ``Simplify tooling by switching completely to uv (#48223)``
52
+
53
+ 4.0.3
54
+ .....
55
+
56
+ Misc
57
+ ~~~~
58
+
59
+ * ``AIP-72: Handle Custom XCom Backend on Task SDK (#47339)``
60
+
61
+ .. Below changes are excluded from the changelog. Move them to
62
+ appropriate section above if needed. Do not delete the lines(!):
63
+ * ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
64
+ * ``Move airflow sources to airflow-core package (#47798)``
65
+ * ``Remove links to x/twitter.com (#47801)``
66
+
67
+ 4.0.2
68
+ .....
69
+
70
+ Misc
71
+ ~~~~
72
+
73
+ * ``AIP-72: Moving BaseOperatorLink to task sdk (#47008)``
74
+ * ``Remove yandexcloud exclusions (#47309)``
75
+ * ``Replace ydb limitation with yandexcloud exclusion (#47142)``
76
+ * ``Upgrade flit to 3.11.0 (#46938)``
77
+
78
+ .. Below changes are excluded from the changelog. Move them to
79
+ appropriate section above if needed. Do not delete the lines(!):
80
+ * ``Move tests_common package to devel-common project (#47281)``
81
+ * ``Improve documentation for updating provider dependencies (#47203)``
82
+ * ``Add legacy namespace packages to airflow.providers (#47064)``
83
+ * ``Remove extra whitespace in provider readme template (#46975)``
84
+
85
+ 4.0.1
86
+ .....
87
+
88
+ Misc
89
+ ~~~~
90
+
91
+ * ``AIP-72: Support better type-hinting for Context dict in SDK (#45583)``
92
+
93
+ .. Below changes are excluded from the changelog. Move them to
94
+ appropriate section above if needed. Do not delete the lines(!):
95
+ * ``Move provider_tests to unit folder in provider tests (#46800)``
96
+ * ``Removed the unused provider's distribution (#46608)``
97
+ * ``Moving yandex provider to new provider structure (#46525)``
98
+ * ``Fix doc issues found with recent moves (#46372)``
99
+ * ``Move TERADATA provider to new structure (#46060)``
100
+
101
+ 4.0.0
102
+ .....
103
+
104
+ .. note::
105
+ This release of provider is only available for Airflow 2.9+ as explained in the
106
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
107
+
108
+ Breaking changes
109
+ ~~~~~~~~~~~~~~~~
110
+
111
+ .. warning::
112
+ All deprecated classes, parameters and features have been removed from the {provider_name} provider package.
113
+ The following breaking changes were introduced:
114
+
115
+ * removed ``YandexCloudBaseHook.provider_user_agent`` . Use ``utils.user_agent.provider_user_agent`` instead.
116
+ * removed ``connection_id`` parameter from ``YandexCloudBaseHook``. Use ``yandex_conn_id`` parameter.
117
+ * removed ``yandex.hooks.yandexcloud_dataproc`` module.
118
+ * removed ``yandex.operators.yandexcloud_dataproc`` module.
119
+ * removed implicit passing of ``yandex_conn_id`` in ``DataprocBaseOperator``. Please pass it as a parameter.
120
+
121
+ * ``Remove Provider Deprecations in Yandex provider (#44754)``
122
+
123
+ Misc
124
+ ~~~~
125
+
126
+ * ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
127
+ * ``Update DAG example links in multiple providers documents (#44034)``
128
+
129
+
130
+ .. Below changes are excluded from the changelog. Move them to
131
+ appropriate section above if needed. Do not delete the lines(!):
132
+ * ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
133
+ * ``Prepare docs for Nov 1st wave of providers (#44011)``
134
+ * ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
135
+
136
+ .. Review and move the new changes to one of the sections above:
137
+ * ``Update path of example dags in docs (#45069)``
138
+
139
+ 3.12.0
140
+ ......
141
+
142
+ .. note::
143
+ This release of provider is only available for Airflow 2.8+ as explained in the
144
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
145
+
146
+ Bug Fixes
147
+ ~~~~~~~~~
148
+
149
+ * ``providers/yandex: fix typing (#40997)``
150
+
151
+ Misc
152
+ ~~~~
153
+
154
+ * ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
155
+
156
+ .. Below changes are excluded from the changelog. Move them to
157
+ appropriate section above if needed. Do not delete the lines(!):
158
+ * ``Prepare docs for Aug 1st wave of providers (#41230)``
159
+ * ``Prepare docs 1st wave July 2024 (#40644)``
160
+ * ``Enable enforcing pydocstyle rule D213 in ruff. (#40448)``
161
+
162
+ 3.11.2
163
+ ......
164
+
165
+ Bug Fixes
166
+ ~~~~~~~~~
167
+
168
+ * ``Exclude yandex versions 0.289.0, 0.290.0 (#39974)``
169
+
170
+ Misc
171
+ ~~~~
172
+
173
+ * ``Fix typos in Providers docs and Yandex hook (#40277)``
174
+
175
+ .. Below changes are excluded from the changelog. Move them to
176
+ appropriate section above if needed. Do not delete the lines(!):
177
+ * ``Limit yandex provider to avoid mypy errors (#39990)``
178
+ * ``Workaround new yandexcloud breaking dataproc integration (#39964)``
179
+
180
+ 3.11.1
181
+ ......
182
+
183
+ Misc
184
+ ~~~~
185
+
186
+ * `` AIP-21: yandexcloud: rename files, emit deprecation warning (#39618)``
187
+ * ``yandex provider: bump version for yq http client package (#39548)``
188
+ * ``Faster 'airflow_version' imports (#39552)``
189
+ * ``add doc about Yandex Query operator (#39445)``
190
+ * ``Simplify 'airflow_version' imports (#39497)``
191
+
192
+ .. Below changes are excluded from the changelog. Move them to
193
+ appropriate section above if needed. Do not delete the lines(!):
194
+ * ``Reapply templates for all providers (#39554)``
195
+
196
+ 3.11.0
197
+ ......
198
+
199
+ .. note::
200
+ This release of provider is only available for Airflow 2.7+ as explained in the
201
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
202
+
203
+ Misc
204
+ ~~~~
205
+
206
+ * ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
207
+
208
+ 3.10.0
209
+ ......
210
+
211
+ Features
212
+ ~~~~~~~~
213
+
214
+ * ``Add Yandex Query support from Yandex.Cloud (#37458)``
215
+
216
+ Misc
217
+ ~~~~
218
+
219
+ * ``support iam token from metadata, simplify code (#38411)``
220
+ * ``Avoid use of 'assert' outside of the tests (#37718)``
221
+
222
+ .. Below changes are excluded from the changelog. Move them to
223
+ appropriate section above if needed. Do not delete the lines(!):
224
+ * ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
225
+ * ``docs: yandex provider grammatical improvements (#38589)``
226
+ * ``Bump ruff to 0.3.3 (#38240)``
227
+ * ``Prepare docs 1st wave (RC1) March 2024 (#37876)``
228
+ * ``Add comment about versions updated by release manager (#37488)``
229
+
230
+ 3.9.0
231
+ .....
232
+
233
+ Features
234
+ ~~~~~~~~
235
+
236
+ * ``Add secrets-backends section into the Yandex provider yaml definition (#37065)``
237
+
238
+ Bug Fixes
239
+ ~~~~~~~~~
240
+
241
+ * ``fix: using endpoint from connection if not specified (#37076)``
242
+
243
+ .. Below changes are excluded from the changelog. Move them to
244
+ appropriate section above if needed. Do not delete the lines(!):
245
+ * ``D401 Support in Providers (simple) (#37258)``
246
+ * ``docs: update description in airflow provider.yaml (#37096)``
247
+
248
+ 3.8.0
249
+ .....
250
+
251
+ Features
252
+ ~~~~~~~~
253
+
254
+ * ``feat: add Yandex Cloud Lockbox secrets backend (#36449)``
255
+
256
+
257
+ Bug Fixes
258
+ ~~~~~~~~~
259
+
260
+ * ``Fix stacklevel in warnings.warn into the providers (#36831)``
261
+
262
+ .. Below changes are excluded from the changelog. Move them to
263
+ appropriate section above if needed. Do not delete the lines(!):
264
+ * ``Prepare docs 1st wave of Providers January 2024 (#36640)``
265
+ * ``Speed up autocompletion of Breeze by simplifying provider state (#36499)``
266
+ * ``Provide the logger_name param in providers hooks in order to override the logger name (#36675)``
267
+ * ``Revert "Provide the logger_name param in providers hooks in order to override the logger name (#36675)" (#37015)``
268
+ * ``Prepare docs 2nd wave of Providers January 2024 (#36945)``
269
+
270
+ 3.7.1
271
+ .....
272
+
273
+ Bug Fixes
274
+ ~~~~~~~~~
275
+
276
+ * ``Follow BaseHook connection fields method signature in child classes (#36086)``
277
+
278
+ .. Below changes are excluded from the changelog. Move them to
279
+ appropriate section above if needed. Do not delete the lines(!):
280
+
281
+ 3.7.0
282
+ .....
283
+
284
+ .. note::
285
+ This release of provider is only available for Airflow 2.6+ as explained in the
286
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
287
+
288
+ Misc
289
+ ~~~~
290
+
291
+ * ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
292
+
293
+ .. Below changes are excluded from the changelog. Move them to
294
+ appropriate section above if needed. Do not delete the lines(!):
295
+ * ``Fix and reapply templates for provider documentation (#35686)``
296
+ * ``Prepare docs 2nd wave of Providers November 2023 (#35836)``
297
+ * ``Use reproducible builds for providers (#35693)``
298
+
299
+ 3.6.0
300
+ .....
301
+
302
+ Features
303
+ ~~~~~~~~
304
+
305
+ * ``Yandex dataproc deduce default service account (#35059)``
306
+
307
+ .. Below changes are excluded from the changelog. Move them to
308
+ appropriate section above if needed. Do not delete the lines(!):
309
+ * ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
310
+ * ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
311
+ * ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
312
+
313
+ 3.5.0
314
+ .....
315
+
316
+ .. note::
317
+ This release of provider is only available for Airflow 2.5+ as explained in the
318
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
319
+
320
+ Misc
321
+ ~~~~
322
+
323
+ * ``Bump min airflow version of providers (#34728)``
324
+
325
+ 3.4.0
326
+ .....
327
+
328
+ .. note::
329
+ This release dropped support for Python 3.7
330
+
331
+ Features
332
+ ~~~~~~~~
333
+
334
+ * ``add support for Yandex Dataproc cluster labels (#29811)``
335
+
336
+ .. Below changes are excluded from the changelog. Move them to
337
+ appropriate section above if needed. Do not delete the lines(!):
338
+ * ``Add note about dropping Python 3.7 for providers (#32015)``
339
+ * ``Add D400 pydocstyle check - Providers (#31427)``
340
+ * ``Add full automation for min Airflow version for providers (#30994)``
341
+ * ``Add mechanism to suspend providers (#30422)``
342
+ * ``Resume yandex provider (#33574)``
343
+ * ``Remove spurious headers for provider changelogs (#32373)``
344
+ * ``Improve provider documentation and README structure (#32125)``
345
+ * ``Use '__version__' in providers not 'version' (#31393)``
346
+ * ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)``
347
+ * ``Bump minimum Airflow version in providers (#30917)``
348
+ * ``Suspend Yandex provider due to protobuf limitation (#30667)``
349
+
350
+ 3.3.0
351
+ .....
352
+
353
+ Features
354
+ ~~~~~~~~
355
+
356
+ * ``support Yandex SDK feature "endpoint" (#29635)``
357
+
358
+ 3.2.0
359
+ .....
360
+
361
+ .. note::
362
+ This release of provider is only available for Airflow 2.3+ as explained in the
363
+ Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
364
+
365
+ Features
366
+ ~~~~~~~~
367
+
368
+ * In YandexCloudBaseHook, non-prefixed extra fields are supported and are preferred (#27040). E.g. ``folder_id`` will be preferred if ``extra__yandexcloud__folder_id`` is also present.
369
+
370
+ Misc
371
+ ~~~~
372
+
373
+ * ``Move min airflow version to 2.3.0 for all providers (#27196)``
374
+
375
+ .. Below changes are excluded from the changelog. Move them to
376
+ appropriate section above if needed. Do not delete the lines(!):
377
+ * ``Enable string normalization in python formatting - providers (#27205)``
378
+ * ``Update docs for September Provider's release (#26731)``
379
+ * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
380
+ * ``pRepare docs for November 2022 wave of Providers (#27613)``
381
+ * ``Prepare for follow-up release for November providers (#27774)``
382
+
383
+ 3.1.0
384
+ .....
385
+
386
+ Features
387
+ ~~~~~~~~
388
+
389
+ * ``YandexCloud provider: Support new Yandex SDK features for DataProc (#25158)``
390
+
391
+ .. Below changes are excluded from the changelog. Move them to
392
+ appropriate section above if needed. Do not delete the lines(!):
393
+ * ``Add documentation for July 2022 Provider's release (#25030)``
394
+ * ``Move provider dependencies to inside provider folders (#24672)``
395
+ * ``Remove 'hook-class-names' from provider.yaml (#24702)``
396
+
397
+ 3.0.0
398
+ .....
399
+
400
+ Breaking changes
401
+ ~~~~~~~~~~~~~~~~
402
+
403
+ .. note::
404
+ This release of provider is only available for Airflow 2.2+ as explained in the Apache Airflow
405
+ Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
406
+
407
+ .. Below changes are excluded from the changelog. Move them to
408
+ appropriate section above if needed. Do not delete the lines(!):
409
+ * ``Migrate Yandex example DAGs to new design AIP-47 (#24082)``
410
+ * ``Add explanatory note for contributors about updating Changelog (#24229)``
411
+ * ``Prepare docs for May 2022 provider's release (#24231)``
412
+ * ``Update package description to remove double min-airflow specification (#24292)``
413
+
414
+ 2.2.3
415
+ .....
416
+
417
+ Bug Fixes
418
+ ~~~~~~~~~
419
+
420
+ * ``Fix mistakenly added install_requires for all providers (#22382)``
421
+
422
+ 2.2.2
423
+ .....
424
+
425
+ Misc
426
+ ~~~~~
427
+
428
+ * ``Add Trove classifiers in PyPI (Framework :: Apache Airflow :: Provider)``
429
+
430
+ 2.2.1
431
+ .....
432
+
433
+ Misc
434
+ ~~~~
435
+
436
+ * ``Support for Python 3.10``
437
+
438
+ .. Below changes are excluded from the changelog. Move them to
439
+ appropriate section above if needed. Do not delete the lines(!):
440
+ * ``Fixed changelog for January 2022 (delayed) provider's release (#21439)``
441
+ * ``Add documentation for January 2021 providers release (#21257)``
442
+ * ``Add optional features in providers. (#21074)``
443
+ * ``Remove ':type' lines now sphinx-autoapi supports typehints (#20951)``
444
+ * ``Fix spelling (#22054)``
445
+
446
+ 2.2.0
447
+ .....
448
+
449
+ Features
450
+ ~~~~~~~~
451
+
452
+ * ``YandexCloud provider: Support new Yandex SDK features: log_group_id, user-agent, maven packages (#20103)``
453
+
454
+
455
+ .. Below changes are excluded from the changelog. Move them to
456
+ appropriate section above if needed. Do not delete the lines(!):
457
+ * ``Fix mypy for providers: elasticsearch, oracle, yandex (#20344)``
458
+ * ``Fixup string concatenations (#19099)``
459
+ * ``Update documentation for November 2021 provider's release (#19882)``
460
+ * ``Prepare documentation for October Provider's release (#19321)``
461
+ * ``Update documentation for September providers release (#18613)``
462
+ * ``Static start_date and default arg cleanup for misc. provider example DAGs (#18597)``
463
+ * ``Inclusive Language (#18349)``
464
+ * ``Use typed Context EVERYWHERE (#20565)``
465
+ * ``Fix template_fields type to have MyPy friendly Sequence type (#20571)``
466
+ * ``Update documentation for provider December 2021 release (#20523)``
467
+
468
+ 2.1.0
469
+ .....
470
+
471
+ Misc
472
+ ~~~~
473
+
474
+ * ``Optimise connection importing for Airflow 2.2.0``
475
+
476
+
477
+ Features
478
+ ~~~~~~~~
479
+
480
+ * ``Add autoscaling subcluster support and remove defaults (#17033)``
481
+
482
+
483
+ .. Below changes are excluded from the changelog. Move them to
484
+ appropriate section above if needed. Do not delete the lines(!):
485
+ * ``Update description about the new ''connection-types'' provider meta-data (#17767)``
486
+ * ``Import Hooks lazily individually in providers manager (#17682)``
487
+ * ``Prepares docs for Rc2 release of July providers (#17116)``
488
+ * ``Remove/refactor default_args pattern for miscellaneous providers (#16872)``
489
+ * ``Prepare documentation for July release of providers. (#17015)``
490
+ * ``Removes pylint from our toolchain (#16682)``
491
+
492
+ 2.0.0
493
+ .....
494
+
495
+ Breaking changes
496
+ ~~~~~~~~~~~~~~~~
497
+
498
+ * ``Auto-apply apply_default decorator (#15667)``
499
+
500
+ .. warning:: Due to apply_default decorator removal, this version of the provider requires Airflow 2.1.0+.
501
+ If your Airflow version is < 2.1.0, and you want to install this provider version, first upgrade
502
+ Airflow to at least version 2.1.0. Otherwise your Airflow package version will be upgraded
503
+ automatically and you will have to manually run ``airflow upgrade db`` to complete the migration.
504
+
505
+ .. Below changes are excluded from the changelog. Move them to
506
+ appropriate section above if needed. Do not delete the lines(!):
507
+ * ``Adds interactivity when generating provider documentation. (#15518)``
508
+ * ``Prepares provider release after PIP 21 compatibility (#15576)``
509
+ * ``Update docstrings to adhere to sphinx standards (#14918)``
510
+ * ``Remove Backport Providers (#14886)``
511
+ * ``Update documentation for broken package releases (#14734)``
512
+ * ``Updated documentation for June 2021 provider release (#16294)``
513
+ * ``Fix Sphinx Issues with Docstrings (#14968)``
514
+ * ``More documentation update for June providers release (#16405)``
515
+ * ``Synchronizes updated changelog after buggfix release (#16464)``
516
+
517
+ 1.0.1
518
+ .....
519
+
520
+ Updated documentation and readme files.
521
+
522
+ 1.0.0
523
+ .....
524
+
525
+ Initial version of the provider.
@@ -0,0 +1,37 @@
1
+
2
+ .. Licensed to the Apache Software Foundation (ASF) under one
3
+ or more contributor license agreements. See the NOTICE file
4
+ distributed with this work for additional information
5
+ regarding copyright ownership. The ASF licenses this file
6
+ to you under the Apache License, Version 2.0 (the
7
+ "License"); you may not use this file except in compliance
8
+ with the License. You may obtain a copy of the License at
9
+
10
+ .. http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ .. Unless required by applicable law or agreed to in writing,
13
+ software distributed under the License is distributed on an
14
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ KIND, either express or implied. See the License for the
16
+ specific language governing permissions and limitations
17
+ under the License.
18
+
19
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
20
+
21
+ .. IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ `PROVIDER_COMMITS_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
23
+
24
+ .. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN!
25
+
26
+ Package apache-airflow-providers-yandex
27
+ ------------------------------------------------------
28
+
29
+ This package is for Yandex, including:
30
+
31
+ - `Yandex.Cloud <https://cloud.yandex.com/>`__
32
+
33
+
34
+ This is detailed commit list of changes for versions provider package: ``yandex``.
35
+ For high-level changelog, see :doc:`package information including changelog <index>`.
36
+
37
+ .. airflow-providers-commits::
@@ -0,0 +1,27 @@
1
+ # Disable Flake8 because of all the sphinx imports
2
+ #
3
+ # Licensed to the Apache Software Foundation (ASF) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The ASF licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+ """Configuration of Providers docs building."""
20
+
21
+ from __future__ import annotations
22
+
23
+ import os
24
+
25
+ os.environ["AIRFLOW_PACKAGE_NAME"] = "apache-airflow-providers-yandex"
26
+
27
+ from docs.provider_conf import * # noqa: F403