apache-airflow-providers-sqlite 4.0.1rc1__tar.gz → 4.0.2rc1__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 (31) hide show
  1. {apache_airflow_providers_sqlite-4.0.1rc1 → apache_airflow_providers_sqlite-4.0.2rc1}/PKG-INFO +8 -10
  2. {apache_airflow_providers_sqlite-4.0.1rc1 → apache_airflow_providers_sqlite-4.0.2rc1}/README.rst +4 -5
  3. apache_airflow_providers_sqlite-4.0.2rc1/docs/.latest-doc-only-change.txt +1 -0
  4. apache_airflow_providers_sqlite-4.0.2rc1/docs/changelog.rst +517 -0
  5. apache_airflow_providers_sqlite-4.0.2rc1/docs/commits.rst +560 -0
  6. apache_airflow_providers_sqlite-4.0.2rc1/docs/conf.py +27 -0
  7. apache_airflow_providers_sqlite-4.0.2rc1/docs/connections/sqlite.rst +73 -0
  8. apache_airflow_providers_sqlite-4.0.2rc1/docs/index.rst +133 -0
  9. apache_airflow_providers_sqlite-4.0.2rc1/docs/installing-providers-from-sources.rst +18 -0
  10. apache_airflow_providers_sqlite-4.0.2rc1/docs/integration-logos/SQLite.png +0 -0
  11. apache_airflow_providers_sqlite-4.0.2rc1/docs/operators.rst +69 -0
  12. apache_airflow_providers_sqlite-4.0.2rc1/docs/redirects.txt +1 -0
  13. apache_airflow_providers_sqlite-4.0.2rc1/docs/security.rst +18 -0
  14. apache_airflow_providers_sqlite-4.0.2rc1/provider.yaml +76 -0
  15. {apache_airflow_providers_sqlite-4.0.1rc1 → apache_airflow_providers_sqlite-4.0.2rc1}/pyproject.toml +22 -7
  16. apache_airflow_providers_sqlite-4.0.2rc1/src/airflow/__init__.py +17 -0
  17. apache_airflow_providers_sqlite-4.0.2rc1/src/airflow/providers/__init__.py +17 -0
  18. {apache_airflow_providers_sqlite-4.0.1rc1 → apache_airflow_providers_sqlite-4.0.2rc1}/src/airflow/providers/sqlite/__init__.py +1 -1
  19. {apache_airflow_providers_sqlite-4.0.1rc1 → apache_airflow_providers_sqlite-4.0.2rc1}/src/airflow/providers/sqlite/get_provider_info.py +0 -41
  20. apache_airflow_providers_sqlite-4.0.2rc1/tests/conftest.py +19 -0
  21. apache_airflow_providers_sqlite-4.0.2rc1/tests/system/__init__.py +17 -0
  22. apache_airflow_providers_sqlite-4.0.2rc1/tests/system/sqlite/__init__.py +16 -0
  23. apache_airflow_providers_sqlite-4.0.2rc1/tests/system/sqlite/create_table.sql +24 -0
  24. apache_airflow_providers_sqlite-4.0.2rc1/tests/system/sqlite/example_sqlite.py +103 -0
  25. apache_airflow_providers_sqlite-4.0.2rc1/tests/unit/__init__.py +17 -0
  26. apache_airflow_providers_sqlite-4.0.2rc1/tests/unit/sqlite/__init__.py +17 -0
  27. apache_airflow_providers_sqlite-4.0.2rc1/tests/unit/sqlite/hooks/__init__.py +17 -0
  28. apache_airflow_providers_sqlite-4.0.2rc1/tests/unit/sqlite/hooks/test_sqlite.py +151 -0
  29. {apache_airflow_providers_sqlite-4.0.1rc1 → apache_airflow_providers_sqlite-4.0.2rc1}/src/airflow/providers/sqlite/LICENSE +0 -0
  30. {apache_airflow_providers_sqlite-4.0.1rc1 → apache_airflow_providers_sqlite-4.0.2rc1}/src/airflow/providers/sqlite/hooks/__init__.py +0 -0
  31. {apache_airflow_providers_sqlite-4.0.1rc1 → apache_airflow_providers_sqlite-4.0.2rc1}/src/airflow/providers/sqlite/hooks/sqlite.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-sqlite
3
- Version: 4.0.1rc1
3
+ Version: 4.0.2rc1
4
4
  Summary: Provider package apache-airflow-providers-sqlite for Apache Airflow
5
5
  Keywords: airflow-provider,sqlite,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -21,14 +21,13 @@ Classifier: Programming Language :: Python :: 3.11
21
21
  Classifier: Programming Language :: Python :: 3.12
22
22
  Classifier: Topic :: System :: Monitoring
23
23
  Requires-Dist: apache-airflow>=2.9.0rc0
24
- Requires-Dist: aiosqlite>=0.20.0
25
24
  Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
26
25
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
27
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.1/changelog.html
28
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.1
26
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.2/changelog.html
27
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.2
28
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
29
29
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
30
30
  Project-URL: Source Code, https://github.com/apache/airflow
31
- Project-URL: Twitter, https://x.com/ApacheAirflow
32
31
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
33
32
 
34
33
 
@@ -56,7 +55,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
56
55
 
57
56
  Package ``apache-airflow-providers-sqlite``
58
57
 
59
- Release: ``4.0.1``
58
+ Release: ``4.0.2``
60
59
 
61
60
 
62
61
  `SQLite <https://www.sqlite.org/>`__
@@ -69,7 +68,7 @@ This is a provider package for ``sqlite`` provider. All classes for this provide
69
68
  are in ``airflow.providers.sqlite`` python package.
70
69
 
71
70
  You can find package information and changelog for the provider
72
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.1/>`_.
71
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.2/>`_.
73
72
 
74
73
  Installation
75
74
  ------------
@@ -87,7 +86,6 @@ Requirements
87
86
  PIP package Version required
88
87
  ======================================= ==================
89
88
  ``apache-airflow`` ``>=2.9.0``
90
- ``aiosqlite`` ``>=0.20.0``
91
89
  ``apache-airflow-providers-common-sql`` ``>=1.20.0``
92
90
  ======================================= ==================
93
91
 
@@ -95,7 +93,7 @@ Cross provider package dependencies
95
93
  -----------------------------------
96
94
 
97
95
  Those are dependencies that might be needed in order to use all the features of the package.
98
- You need to install the specified provider packages in order to use them.
96
+ You need to install the specified providers in order to use them.
99
97
 
100
98
  You can install such cross-provider dependencies when installing from PyPI. For example:
101
99
 
@@ -111,5 +109,5 @@ Dependent package
111
109
  ============================================================================================================ ==============
112
110
 
113
111
  The changelog for the provider package can be found in the
114
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.1/changelog.html>`_.
112
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.2/changelog.html>`_.
115
113
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-sqlite``
25
25
 
26
- Release: ``4.0.1``
26
+ Release: ``4.0.2``
27
27
 
28
28
 
29
29
  `SQLite <https://www.sqlite.org/>`__
@@ -36,7 +36,7 @@ This is a provider package for ``sqlite`` provider. All classes for this provide
36
36
  are in ``airflow.providers.sqlite`` python package.
37
37
 
38
38
  You can find package information and changelog for the provider
39
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.1/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.2/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
@@ -54,7 +54,6 @@ Requirements
54
54
  PIP package Version required
55
55
  ======================================= ==================
56
56
  ``apache-airflow`` ``>=2.9.0``
57
- ``aiosqlite`` ``>=0.20.0``
58
57
  ``apache-airflow-providers-common-sql`` ``>=1.20.0``
59
58
  ======================================= ==================
60
59
 
@@ -62,7 +61,7 @@ Cross provider package dependencies
62
61
  -----------------------------------
63
62
 
64
63
  Those are dependencies that might be needed in order to use all the features of the package.
65
- You need to install the specified provider packages in order to use them.
64
+ You need to install the specified providers in order to use them.
66
65
 
67
66
  You can install such cross-provider dependencies when installing from PyPI. For example:
68
67
 
@@ -78,4 +77,4 @@ Dependent package
78
77
  ============================================================================================================ ==============
79
78
 
80
79
  The changelog for the provider package can be found in the
81
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.1/changelog.html>`_.
80
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.0.2/changelog.html>`_.
@@ -0,0 +1 @@
1
+ d4473555c0e7022e073489b7163d49102881a1a6
@@ -0,0 +1,517 @@
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-sqlite``
25
+
26
+
27
+ Changelog
28
+ ---------
29
+
30
+ 4.0.2
31
+ .....
32
+
33
+ Misc
34
+ ~~~~
35
+
36
+ * ``Remove sqlite provider from preinstalled and use aiosqlite as core dep (#48966)``
37
+
38
+ .. Below changes are excluded from the changelog. Move them to
39
+ appropriate section above if needed. Do not delete the lines(!):
40
+ * ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
41
+ * ``Remove fab from preinstalled providers (#48457)``
42
+ * ``Improve documentation building iteration (#48760)``
43
+ * ``Prepare docs for Apr 1st wave of providers (#48828)``
44
+ * ``Simplify tooling by switching completely to uv (#48223)``
45
+ * ``Prepare docs for Mar 2nd wave of providers (#48383)``
46
+ * ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
47
+ * ``Move airflow sources to airflow-core package (#47798)``
48
+ * ``Remove links to x/twitter.com (#47801)``
49
+
50
+ 4.0.1
51
+ .....
52
+
53
+ Misc
54
+ ~~~~
55
+
56
+ * ``Upgrade flit to 3.11.0 (#46938)``
57
+
58
+ .. Below changes are excluded from the changelog. Move them to
59
+ appropriate section above if needed. Do not delete the lines(!):
60
+ * ``Move tests_common package to devel-common project (#47281)``
61
+ * ``Improve documentation for updating provider dependencies (#47203)``
62
+ * ``Add legacy namespace packages to airflow.providers (#47064)``
63
+ * ``Remove extra whitespace in provider readme template (#46975)``
64
+ * ``Prepare docs for Feb 1st wave of providers (#46893)``
65
+ * ``Move provider_tests to unit folder in provider tests (#46800)``
66
+ * ``Removed the unused provider's distribution (#46608)``
67
+ * ``Fix doc issues found with recent moves (#46372)``
68
+ * ``init run on redis,sqlite (#46101)``
69
+
70
+ 4.0.0
71
+ .....
72
+
73
+ .. note::
74
+ This release of provider is only available for Airflow 2.9+ as explained in the
75
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
76
+
77
+ Breaking changes
78
+ ~~~~~~~~~~~~~~~~
79
+
80
+ .. warning::
81
+ All deprecated classes, parameters and features have been removed from the Sqlite provider package.
82
+ The following breaking changes were introduced:
83
+
84
+ * Operators
85
+ * Remove ``airflow.providers.sqlite.operators.sqlite.SqliteOperator``. Please use ``airflow.providers.common.sql.operators.sql.SQLExecuteQueryOperator``.
86
+
87
+ * ``Remove Provider Deprecations in Sqlite (#44707)``
88
+
89
+ Misc
90
+ ~~~~
91
+
92
+ * ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
93
+ * ``Update DAG example links in multiple providers documents (#44034)``
94
+ * ``Add basic asyncio support (#43944)``
95
+
96
+
97
+ .. Below changes are excluded from the changelog. Move them to
98
+ appropriate section above if needed. Do not delete the lines(!):
99
+ * ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
100
+
101
+ .. Review and move the new changes to one of the sections above:
102
+ * ``Update path of example dags in docs (#45069)``
103
+
104
+ 3.9.1
105
+ .....
106
+
107
+ Misc
108
+ ~~~~
109
+
110
+ * ``Add support for semicolon stripping to DbApiHook, PrestoHook, and TrinoHook (#41916)``
111
+
112
+
113
+ .. Below changes are excluded from the changelog. Move them to
114
+ appropriate section above if needed. Do not delete the lines(!):
115
+ * ``Start porting DAG definition code to the Task SDK (#43076)``
116
+ * ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
117
+
118
+ 3.9.0
119
+ .....
120
+
121
+ .. note::
122
+ This release of provider is only available for Airflow 2.8+ as explained in the
123
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
124
+
125
+ Misc
126
+ ~~~~
127
+
128
+ * ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
129
+
130
+
131
+ .. Below changes are excluded from the changelog. Move them to
132
+ appropriate section above if needed. Do not delete the lines(!):
133
+
134
+ 3.8.2
135
+ .....
136
+
137
+ Misc
138
+ ~~~~
139
+
140
+ * ``Clean up remaining getattr connection DbApiHook (#40665)``
141
+
142
+
143
+ .. Below changes are excluded from the changelog. Move them to
144
+ appropriate section above if needed. Do not delete the lines(!):
145
+
146
+ 3.8.1
147
+ .....
148
+
149
+ Misc
150
+ ~~~~
151
+
152
+ * ``Faster 'airflow_version' imports (#39552)``
153
+ * ``Simplify 'airflow_version' imports (#39497)``
154
+
155
+ .. Below changes are excluded from the changelog. Move them to
156
+ appropriate section above if needed. Do not delete the lines(!):
157
+ * ``Reapply templates for all providers (#39554)``
158
+
159
+ 3.8.0
160
+ .....
161
+
162
+ .. note::
163
+ This release of provider is only available for Airflow 2.7+ as explained in the
164
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
165
+
166
+ Misc
167
+ ~~~~
168
+
169
+ * ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
170
+
171
+ .. Below changes are excluded from the changelog. Move them to
172
+ appropriate section above if needed. Do not delete the lines(!):
173
+ * ``Add comment about versions updated by release manager (#37488)``
174
+ * ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
175
+ * ``Update yanked versions in providers changelogs (#38262)``
176
+ * ``Prepare docs 1st wave (RC1) March 2024 (#37876)``
177
+
178
+ 3.7.1
179
+ .....
180
+
181
+ Misc
182
+ ~~~~
183
+
184
+ * ``feat: Switch all class, functions, methods deprecations to decorators (#36876)``
185
+
186
+ .. Below changes are excluded from the changelog. Move them to
187
+ appropriate section above if needed. Do not delete the lines(!):
188
+ * ``D401 Support in Providers (simple) (#37258)``
189
+ * ``Add docs for RC2 wave of providers for 2nd round of Jan 2024 (#37019)``
190
+ * ``Prepare docs 2nd wave of Providers January 2024 (#36945)``
191
+ * ``Prepare docs 1st wave of Providers January 2024 (#36640)``
192
+ * ``Speed up autocompletion of Breeze by simplifying provider state (#36499)``
193
+
194
+ 3.7.0
195
+ .....
196
+
197
+ Features
198
+ ~~~~~~~~
199
+
200
+ * ``Make "placeholder" of ODBC configurable in UI (#36000)``
201
+
202
+ .. Below changes are excluded from the changelog. Move them to
203
+ appropriate section above if needed. Do not delete the lines(!):
204
+
205
+ 3.6.0
206
+ .....
207
+
208
+ .. note::
209
+ This release of provider is only available for Airflow 2.6+ as explained in the
210
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
211
+
212
+ Misc
213
+ ~~~~
214
+
215
+ * ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
216
+
217
+ .. Below changes are excluded from the changelog. Move them to
218
+ appropriate section above if needed. Do not delete the lines(!):
219
+ * ``Fix and reapply templates for provider documentation (#35686)``
220
+ * ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
221
+ * ``Prepare docs 2nd wave of Providers November 2023 (#35836)``
222
+ * ``Use reproducible builds for providers (#35693)``
223
+ * ``Prepare docs 1st wave of Providers November 2023 (#35537)``
224
+ * ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
225
+ * ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
226
+
227
+ 3.5.0
228
+ .....
229
+
230
+ .. note::
231
+ This release of provider is only available for Airflow 2.5+ as explained in the
232
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
233
+
234
+ Misc
235
+ ~~~~
236
+
237
+ * ``Bump min airflow version of providers (#34728)``
238
+
239
+ 3.4.3
240
+ .....
241
+
242
+ Misc
243
+ ~~~~
244
+
245
+ * ``Add deprecation info to the providers modules and classes docstring (#32536)``
246
+
247
+ .. Below changes are excluded from the changelog. Move them to
248
+ appropriate section above if needed. Do not delete the lines(!):
249
+ * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
250
+ * ``Remove spurious headers for provider changelogs (#32373)``
251
+ * ``Prepare docs for July 2023 wave of Providers (#32298)``
252
+ * ``Improve provider documentation and README structure (#32125)``
253
+
254
+ 3.4.2
255
+ .....
256
+
257
+ .. note::
258
+ This release dropped support for Python 3.7
259
+
260
+ Misc
261
+ ~~~~
262
+
263
+ * ``Add note about dropping Python 3.7 for providers (#32015)``
264
+
265
+ .. Below changes are excluded from the changelog. Move them to
266
+ appropriate section above if needed. Do not delete the lines(!):
267
+ * ``Add D400 pydocstyle check - Providers (#31427)``
268
+
269
+ 3.4.1
270
+ .....
271
+
272
+ Misc
273
+ ~~~~
274
+
275
+ * ``Bring back min-airflow-version for preinstalled providers (#31469)``
276
+
277
+ 3.4.0 (YANKED)
278
+ ..............
279
+
280
+ .. warning:: This release has been **yanked** with a reason: ``This version might cause unconstrained installation of old airflow version lead to Runtime Error.``
281
+
282
+ .. note::
283
+ This release of provider is only available for Airflow 2.4+ as explained in the
284
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
285
+
286
+ Misc
287
+ ~~~~
288
+
289
+ * ``Bump minimum Airflow version in providers (#30917)``
290
+
291
+ .. Below changes are excluded from the changelog. Move them to
292
+ appropriate section above if needed. Do not delete the lines(!):
293
+ * ``Add full automation for min Airflow version for providers (#30994)``
294
+ * ``Use '__version__' in providers not 'version' (#31393)``
295
+ * ``Fixing circular import error in providers caused by airflow version check (#31379)``
296
+ * ``Prepare docs for May 2023 wave of Providers (#31252)``
297
+ * ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)``
298
+
299
+ 3.3.2
300
+ .....
301
+
302
+ Misc
303
+ ~~~~
304
+
305
+ * ``Use connection URI in SqliteHook (#28721)``
306
+
307
+ .. Below changes are excluded from the changelog. Move them to
308
+ appropriate section above if needed. Do not delete the lines(!):
309
+ * ``Add mechanism to suspend providers (#30422)``
310
+
311
+ 3.3.1
312
+ .....
313
+
314
+ Bug Fixes
315
+ ~~~~~~~~~
316
+
317
+ * ``Bump common.sql provider to 1.3.1 (#27888)``
318
+
319
+ .. Below changes are excluded from the changelog. Move them to
320
+ appropriate section above if needed. Do not delete the lines(!):
321
+ * ``Prepare for follow-up release for November providers (#27774)``
322
+
323
+ 3.3.0
324
+ .....
325
+
326
+ .. note::
327
+ This release of provider is only available for Airflow 2.3+ as explained in the
328
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
329
+
330
+ Misc
331
+ ~~~~
332
+
333
+ * ``Move min airflow version to 2.3.0 for all providers (#27196)``
334
+
335
+ Features
336
+ ~~~~~~~~
337
+
338
+ * ``Add SQLExecuteQueryOperator (#25717)``
339
+
340
+ .. Below changes are excluded from the changelog. Move them to
341
+ appropriate section above if needed. Do not delete the lines(!):
342
+ * ``Enable string normalization in python formatting - providers (#27205)``
343
+ * ``Update docs for September Provider's release (#26731)``
344
+ * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
345
+
346
+ 3.2.1
347
+ .....
348
+
349
+ Features
350
+ ~~~~~~~~
351
+
352
+ * ``Add common-sql lower bound for common-sql (#25789)``
353
+
354
+ Bug Fixes
355
+ ~~~~~~~~~
356
+
357
+ * ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)``
358
+
359
+ .. Below changes are excluded from the changelog. Move them to
360
+ appropriate section above if needed. Do not delete the lines(!):
361
+
362
+ 3.2.0
363
+ .....
364
+
365
+ Features
366
+ ~~~~~~~~
367
+
368
+ * ``Unify DbApiHook.run() method with the methods which override it (#23971)``
369
+
370
+ 3.1.0
371
+ .....
372
+
373
+ Features
374
+ ~~~~~~~~
375
+
376
+ * ``Move all SQL classes to common-sql provider (#24836)``
377
+
378
+ .. Below changes are excluded from the changelog. Move them to
379
+ appropriate section above if needed. Do not delete the lines(!):
380
+ * ``Move provider dependencies to inside provider folders (#24672)``
381
+ * ``Remove 'hook-class-names' from provider.yaml (#24702)``
382
+
383
+ 3.0.0
384
+ .....
385
+
386
+ Breaking changes
387
+ ~~~~~~~~~~~~~~~~
388
+
389
+ .. note::
390
+ This release of provider is only available for Airflow 2.2+ as explained in the
391
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
392
+
393
+ Bug Fixes
394
+ ~~~~~~~~~
395
+
396
+ * ``Fix ''SqliteHook'' compatibility with SQLAlchemy engine (#23790)``
397
+
398
+ .. Below changes are excluded from the changelog. Move them to
399
+ appropriate section above if needed. Do not delete the lines(!):
400
+ * ``Migrate SQLite example DAGs to new design #22461 (#24150)``
401
+ * ``Add explanatory note for contributors about updating Changelog (#24229)``
402
+ * ``Prepare docs for May 2022 provider's release (#24231)``
403
+ * ``Update package description to remove double min-airflow specification (#24292)``
404
+
405
+ 2.1.3
406
+ .....
407
+
408
+ Bug Fixes
409
+ ~~~~~~~~~
410
+
411
+ * ``Fix mistakenly added install_requires for all providers (#22382)``
412
+
413
+ 2.1.2
414
+ .....
415
+
416
+ Misc
417
+ ~~~~~
418
+
419
+ * ``Add Trove classifiers in PyPI (Framework :: Apache Airflow :: Provider)``
420
+
421
+ 2.1.1
422
+ .....
423
+
424
+ Misc
425
+ ~~~~
426
+
427
+ * ``Support for Python 3.10``
428
+
429
+ .. Below changes are excluded from the changelog. Move them to
430
+ appropriate section above if needed. Do not delete the lines(!):
431
+
432
+ 2.1.0
433
+ .....
434
+
435
+ Features
436
+ ~~~~~~~~
437
+
438
+ * ``Add more SQL template fields renderers (#21237)``
439
+
440
+ .. Below changes are excluded from the changelog. Move them to
441
+ appropriate section above if needed. Do not delete the lines(!):
442
+ * ``Fix K8S changelog to be PyPI-compatible (#20614)``
443
+ * ``Fix template_fields type to have MyPy friendly Sequence type (#20571)``
444
+ * ``Remove ':type' lines now sphinx-autoapi supports typehints (#20951)``
445
+ * ``Update documentation for provider December 2021 release (#20523)``
446
+ * ``Even more typing in operators (template_fields/ext) (#20608)``
447
+ * ``Update documentation for November 2021 provider's release (#19882)``
448
+ * ``Misc. documentation typos and language improvements (#19599)``
449
+ * ``Prepare documentation for October Provider's release (#19321)``
450
+ * ``Update documentation for September providers release (#18613)``
451
+ * ``Static start_date and default arg cleanup for misc. provider example DAGs (#18597)``
452
+ * ``Updating miscellaneous provider DAGs to use TaskFlow API where applicable (#18278)``
453
+ * ``Add documentation for January 2021 providers release (#21257)``
454
+
455
+ 2.0.1
456
+ .....
457
+
458
+ Misc
459
+ ~~~~
460
+
461
+ * ``Optimise connection importing for Airflow 2.2.0``
462
+
463
+ Bug Fixes
464
+ ~~~~~~~~~
465
+
466
+ * ``Fix sqlite hook - insert and replace functions (#17695)``
467
+
468
+ .. Below changes are excluded from the changelog. Move them to
469
+ appropriate section above if needed. Do not delete the lines(!):
470
+ * ``Update description about the new ''connection-types'' provider meta-data (#17767)``
471
+ * ``Import Hooks lazily individually in providers manager (#17682)``
472
+ * ``Fix type annotations in OracleOperator, JdbcOperator, SqliteOperator (#17406)``
473
+ * ``Prepares docs for Rc2 release of July providers (#17116)``
474
+ * ``Remove/refactor default_args pattern for miscellaneous providers (#16872)``
475
+
476
+ 2.0.0
477
+ .....
478
+
479
+ Breaking changes
480
+ ~~~~~~~~~~~~~~~~
481
+
482
+ * ``Auto-apply apply_default decorator (#15667)``
483
+
484
+ .. warning:: Due to apply_default decorator removal, this version of the provider requires Airflow 2.1.0+.
485
+ If your Airflow version is < 2.1.0, and you want to install this provider version, first upgrade
486
+ Airflow to at least version 2.1.0. Otherwise your Airflow package version will be upgraded
487
+ automatically and you will have to manually run ``airflow upgrade db`` to complete the migration.
488
+
489
+ .. Below changes are excluded from the changelog. Move them to
490
+ appropriate section above if needed. Do not delete the lines(!):
491
+ * ``Adds interactivity when generating provider documentation. (#15518)``
492
+ * ``Prepares provider release after PIP 21 compatibility (#15576)``
493
+ * ``Remove Backport Providers (#14886)``
494
+ * ``Updated documentation for June 2021 provider release (#16294)``
495
+ * ``More documentation update for June providers release (#16405)``
496
+ * ``Synchronizes updated changelog after buggfix release (#16464)``
497
+
498
+ 1.0.2
499
+ .....
500
+
501
+ Bug fixes
502
+ ~~~~~~~~~
503
+
504
+ * ``Corrections in docs and tools after releasing provider RCs (#14082)``
505
+
506
+
507
+ 1.0.1
508
+ .....
509
+
510
+ Updated documentation and readme files.
511
+
512
+ * ``Add example DAG & how-to guide for sqlite (#13196)``
513
+
514
+ 1.0.0
515
+ .....
516
+
517
+ Initial version of the provider.