apache-airflow-providers-sqlite 3.4.2__py3-none-any.whl → 3.5.0rc1__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.
@@ -28,14 +28,16 @@ import packaging.version
28
28
 
29
29
  __all__ = ["__version__"]
30
30
 
31
- __version__ = "3.4.2"
31
+ __version__ = "3.5.0"
32
32
 
33
33
  try:
34
34
  from airflow import __version__ as airflow_version
35
35
  except ImportError:
36
36
  from airflow.version import version as airflow_version
37
37
 
38
- if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"):
38
+ if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
39
+ "2.5.0"
40
+ ):
39
41
  raise RuntimeError(
40
- f"The package `apache-airflow-providers-sqlite:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501
42
+ f"The package `apache-airflow-providers-sqlite:{__version__}` requires Apache Airflow 2.5.0+" # NOQA: E501
41
43
  )
@@ -29,6 +29,8 @@ def get_provider_info():
29
29
  "description": "`SQLite <https://www.sqlite.org/>`__\n",
30
30
  "suspended": False,
31
31
  "versions": [
32
+ "3.5.0",
33
+ "3.4.3",
32
34
  "3.4.2",
33
35
  "3.4.1",
34
36
  "3.4.0",
@@ -49,7 +51,7 @@ def get_provider_info():
49
51
  "1.0.1",
50
52
  "1.0.0",
51
53
  ],
52
- "dependencies": ["apache-airflow>=2.4.0", "apache-airflow-providers-common-sql>=1.3.1"],
54
+ "dependencies": ["apache-airflow>=2.5.0", "apache-airflow-providers-common-sql>=1.3.1"],
53
55
  "integrations": [
54
56
  {
55
57
  "integration-name": "SQLite",
@@ -28,6 +28,10 @@ class SqliteOperator(SQLExecuteQueryOperator):
28
28
  """
29
29
  Executes sql code in a specific Sqlite database.
30
30
 
31
+ This class is deprecated.
32
+
33
+ Please use :class:`airflow.providers.common.sql.operators.sql.SQLExecuteQueryOperator`.
34
+
31
35
  .. seealso::
32
36
  For more information on how to use this operator, take a look at the guide:
33
37
  :ref:`howto/operator:SqliteOperator`
@@ -0,0 +1,132 @@
1
+ Metadata-Version: 2.1
2
+ Name: apache-airflow-providers-sqlite
3
+ Version: 3.5.0rc1
4
+ Summary: Provider for Apache Airflow. Implements apache-airflow-providers-sqlite package
5
+ Home-page: https://airflow.apache.org/
6
+ Download-URL: https://archive.apache.org/dist/airflow/providers
7
+ Author: Apache Software Foundation
8
+ Author-email: dev@airflow.apache.org
9
+ License: Apache License 2.0
10
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.5.0/
11
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.5.0/changelog.html
12
+ Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
13
+ Project-URL: Source Code, https://github.com/apache/airflow
14
+ Project-URL: Slack Chat, https://s.apache.org/airflow-slack
15
+ Project-URL: Twitter, https://twitter.com/ApacheAirflow
16
+ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
17
+ Classifier: Development Status :: 5 - Production/Stable
18
+ Classifier: Environment :: Console
19
+ Classifier: Environment :: Web Environment
20
+ Classifier: Intended Audience :: Developers
21
+ Classifier: Intended Audience :: System Administrators
22
+ Classifier: Framework :: Apache Airflow
23
+ Classifier: Framework :: Apache Airflow :: Provider
24
+ Classifier: License :: OSI Approved :: Apache Software License
25
+ Classifier: Programming Language :: Python :: 3.8
26
+ Classifier: Programming Language :: Python :: 3.9
27
+ Classifier: Programming Language :: Python :: 3.10
28
+ Classifier: Programming Language :: Python :: 3.11
29
+ Classifier: Topic :: System :: Monitoring
30
+ Requires-Python: ~=3.8
31
+ Description-Content-Type: text/x-rst
32
+ License-File: LICENSE
33
+ License-File: NOTICE
34
+ Requires-Dist: apache-airflow-providers-common-sql >=1.3.1.dev0
35
+ Requires-Dist: apache-airflow >=2.5.0.dev0
36
+ Provides-Extra: common.sql
37
+ Requires-Dist: apache-airflow-providers-common-sql ; extra == 'common.sql'
38
+
39
+
40
+ .. Licensed to the Apache Software Foundation (ASF) under one
41
+ or more contributor license agreements. See the NOTICE file
42
+ distributed with this work for additional information
43
+ regarding copyright ownership. The ASF licenses this file
44
+ to you under the Apache License, Version 2.0 (the
45
+ "License"); you may not use this file except in compliance
46
+ with the License. You may obtain a copy of the License at
47
+
48
+ .. http://www.apache.org/licenses/LICENSE-2.0
49
+
50
+ .. Unless required by applicable law or agreed to in writing,
51
+ software distributed under the License is distributed on an
52
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
53
+ KIND, either express or implied. See the License for the
54
+ specific language governing permissions and limitations
55
+ under the License.
56
+
57
+ .. Licensed to the Apache Software Foundation (ASF) under one
58
+ or more contributor license agreements. See the NOTICE file
59
+ distributed with this work for additional information
60
+ regarding copyright ownership. The ASF licenses this file
61
+ to you under the Apache License, Version 2.0 (the
62
+ "License"); you may not use this file except in compliance
63
+ with the License. You may obtain a copy of the License at
64
+
65
+ .. http://www.apache.org/licenses/LICENSE-2.0
66
+
67
+ .. Unless required by applicable law or agreed to in writing,
68
+ software distributed under the License is distributed on an
69
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
70
+ KIND, either express or implied. See the License for the
71
+ specific language governing permissions and limitations
72
+ under the License.
73
+
74
+
75
+ Package ``apache-airflow-providers-sqlite``
76
+
77
+ Release: ``3.5.0rc1``
78
+
79
+
80
+ `SQLite <https://www.sqlite.org/>`__
81
+
82
+
83
+ Provider package
84
+ ----------------
85
+
86
+ This is a provider package for ``sqlite`` provider. All classes for this provider package
87
+ are in ``airflow.providers.sqlite`` python package.
88
+
89
+ You can find package information and changelog for the provider
90
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.5.0/>`_.
91
+
92
+
93
+ Installation
94
+ ------------
95
+
96
+ You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
97
+ for the minimum Airflow version supported) via
98
+ ``pip install apache-airflow-providers-sqlite``
99
+
100
+ The package supports the following python versions: 3.8,3.9,3.10,3.11
101
+
102
+ Requirements
103
+ ------------
104
+
105
+ ======================================= ==================
106
+ PIP package Version required
107
+ ======================================= ==================
108
+ ``apache-airflow`` ``>=2.5.0``
109
+ ``apache-airflow-providers-common-sql`` ``>=1.3.1``
110
+ ======================================= ==================
111
+
112
+ Cross provider package dependencies
113
+ -----------------------------------
114
+
115
+ Those are dependencies that might be needed in order to use all the features of the package.
116
+ You need to install the specified provider packages in order to use them.
117
+
118
+ You can install such cross-provider dependencies when installing from PyPI. For example:
119
+
120
+ .. code-block:: bash
121
+
122
+ pip install apache-airflow-providers-sqlite[common.sql]
123
+
124
+
125
+ ============================================================================================================ ==============
126
+ Dependent package Extra
127
+ ============================================================================================================ ==============
128
+ `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
129
+ ============================================================================================================ ==============
130
+
131
+ The changelog for the provider package can be found in the
132
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.5.0/changelog.html>`_.
@@ -0,0 +1,13 @@
1
+ airflow/providers/sqlite/__init__.py,sha256=T8mXROUSZmQcLEgGO23TZyh9EM3wb9zwlOh4zcdp7ys,1575
2
+ airflow/providers/sqlite/get_provider_info.py,sha256=ZAphYZXqCxjMyhnyyLO3JHpcPSJ_0JAcIL0O9_y77qQ,2668
3
+ airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
4
+ airflow/providers/sqlite/hooks/sqlite.py,sha256=wJ-S6DX0mhf0uiMDCIP-oxhxOBYaCSfL7r1_S_6krOg,2402
5
+ airflow/providers/sqlite/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
6
+ airflow/providers/sqlite/operators/sqlite.py,sha256=zJ8uBl_X0u77apwgOUmYKhoBCT6bykiJQwhKDbQgi1k,2352
7
+ apache_airflow_providers_sqlite-3.5.0rc1.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
8
+ apache_airflow_providers_sqlite-3.5.0rc1.dist-info/METADATA,sha256=xGWhR1MYoY1gptOhnMns6CMU0r12jULE5RBg80655xg,5768
9
+ apache_airflow_providers_sqlite-3.5.0rc1.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
10
+ apache_airflow_providers_sqlite-3.5.0rc1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
11
+ apache_airflow_providers_sqlite-3.5.0rc1.dist-info/entry_points.txt,sha256=9smeDg_SEzaOhSSxtKRpSfm_ADofjjWN2GMa9PBanAc,103
12
+ apache_airflow_providers_sqlite-3.5.0rc1.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
13
+ apache_airflow_providers_sqlite-3.5.0rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.41.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,400 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: apache-airflow-providers-sqlite
3
- Version: 3.4.2
4
- Summary: Provider for Apache Airflow. Implements apache-airflow-providers-sqlite package
5
- Home-page: https://airflow.apache.org/
6
- Download-URL: https://archive.apache.org/dist/airflow/providers
7
- Author: Apache Software Foundation
8
- Author-email: dev@airflow.apache.org
9
- License: Apache License 2.0
10
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.4.2/
11
- Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
12
- Project-URL: Source Code, https://github.com/apache/airflow
13
- Project-URL: Slack Chat, https://s.apache.org/airflow-slack
14
- Project-URL: Twitter, https://twitter.com/ApacheAirflow
15
- Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
16
- Classifier: Development Status :: 5 - Production/Stable
17
- Classifier: Environment :: Console
18
- Classifier: Environment :: Web Environment
19
- Classifier: Intended Audience :: Developers
20
- Classifier: Intended Audience :: System Administrators
21
- Classifier: Framework :: Apache Airflow
22
- Classifier: Framework :: Apache Airflow :: Provider
23
- Classifier: License :: OSI Approved :: Apache Software License
24
- Classifier: Programming Language :: Python :: 3.8
25
- Classifier: Programming Language :: Python :: 3.9
26
- Classifier: Programming Language :: Python :: 3.10
27
- Classifier: Programming Language :: Python :: 3.11
28
- Classifier: Topic :: System :: Monitoring
29
- Requires-Python: ~=3.8
30
- Description-Content-Type: text/x-rst
31
- License-File: LICENSE
32
- License-File: NOTICE
33
- Requires-Dist: apache-airflow-providers-common-sql (>=1.3.1)
34
- Requires-Dist: apache-airflow (>=2.4.0)
35
- Provides-Extra: common.sql
36
- Requires-Dist: apache-airflow-providers-common-sql ; extra == 'common.sql'
37
-
38
-
39
- .. Licensed to the Apache Software Foundation (ASF) under one
40
- or more contributor license agreements. See the NOTICE file
41
- distributed with this work for additional information
42
- regarding copyright ownership. The ASF licenses this file
43
- to you under the Apache License, Version 2.0 (the
44
- "License"); you may not use this file except in compliance
45
- with the License. You may obtain a copy of the License at
46
-
47
- .. http://www.apache.org/licenses/LICENSE-2.0
48
-
49
- .. Unless required by applicable law or agreed to in writing,
50
- software distributed under the License is distributed on an
51
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
52
- KIND, either express or implied. See the License for the
53
- specific language governing permissions and limitations
54
- under the License.
55
-
56
-
57
- Package ``apache-airflow-providers-sqlite``
58
-
59
- Release: ``3.4.2``
60
-
61
-
62
- `SQLite <https://www.sqlite.org/>`__
63
-
64
-
65
- Provider package
66
- ----------------
67
-
68
- This is a provider package for ``sqlite`` provider. All classes for this provider package
69
- are in ``airflow.providers.sqlite`` python package.
70
-
71
- You can find package information and changelog for the provider
72
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.4.2/>`_.
73
-
74
-
75
- Installation
76
- ------------
77
-
78
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
79
- for the minimum Airflow version supported) via
80
- ``pip install apache-airflow-providers-sqlite``
81
-
82
- The package supports the following python versions: 3.8,3.9,3.10,3.11
83
-
84
- Requirements
85
- ------------
86
-
87
- ======================================= ==================
88
- PIP package Version required
89
- ======================================= ==================
90
- ``apache-airflow`` ``>=2.4.0``
91
- ``apache-airflow-providers-common-sql`` ``>=1.3.1``
92
- ======================================= ==================
93
-
94
- Cross provider package dependencies
95
- -----------------------------------
96
-
97
- 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.
99
-
100
- You can install such cross-provider dependencies when installing from PyPI. For example:
101
-
102
- .. code-block:: bash
103
-
104
- pip install apache-airflow-providers-sqlite[common.sql]
105
-
106
-
107
- ============================================================================================================ ==============
108
- Dependent package Extra
109
- ============================================================================================================ ==============
110
- `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
111
- ============================================================================================================ ==============
112
-
113
- .. Licensed to the Apache Software Foundation (ASF) under one
114
- or more contributor license agreements. See the NOTICE file
115
- distributed with this work for additional information
116
- regarding copyright ownership. The ASF licenses this file
117
- to you under the Apache License, Version 2.0 (the
118
- "License"); you may not use this file except in compliance
119
- with the License. You may obtain a copy of the License at
120
-
121
- .. http://www.apache.org/licenses/LICENSE-2.0
122
-
123
- .. Unless required by applicable law or agreed to in writing,
124
- software distributed under the License is distributed on an
125
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
126
- KIND, either express or implied. See the License for the
127
- specific language governing permissions and limitations
128
- under the License.
129
-
130
-
131
- .. NOTE TO CONTRIBUTORS:
132
- Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
133
- and you want to add an explanation to the users on how they are supposed to deal with them.
134
- The changelog is updated and maintained semi-automatically by release manager.
135
-
136
- Changelog
137
- ---------
138
-
139
- 3.4.2
140
- .....
141
-
142
- .. note::
143
- This release dropped support for Python 3.7
144
-
145
- Misc
146
- ~~~~
147
-
148
- * ``Add note about dropping Python 3.7 for providers (#32015)``
149
-
150
- .. Below changes are excluded from the changelog. Move them to
151
- appropriate section above if needed. Do not delete the lines(!):
152
- * ``Add D400 pydocstyle check - Providers (#31427)``
153
-
154
- 3.4.1
155
- .....
156
-
157
- Misc
158
- ~~~~
159
-
160
- * ``Bring back min-airflow-version for preinstalled providers (#31469)``
161
-
162
- 3.4.0
163
- .....
164
-
165
- .. note::
166
- This release of provider is only available for Airflow 2.4+ as explained in the
167
- `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
168
-
169
- Misc
170
- ~~~~
171
-
172
- * ``Bump minimum Airflow version in providers (#30917)``
173
-
174
- .. Below changes are excluded from the changelog. Move them to
175
- appropriate section above if needed. Do not delete the lines(!):
176
- * ``Add full automation for min Airflow version for providers (#30994)``
177
- * ``Use '__version__' in providers not 'version' (#31393)``
178
- * ``Fixing circular import error in providers caused by airflow version check (#31379)``
179
- * ``Prepare docs for May 2023 wave of Providers (#31252)``
180
- * ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)``
181
-
182
- 3.3.2
183
- .....
184
-
185
- Misc
186
- ~~~~
187
-
188
- * ``Use connection URI in SqliteHook (#28721)``
189
-
190
- .. Below changes are excluded from the changelog. Move them to
191
- appropriate section above if needed. Do not delete the lines(!):
192
- * ``Add mechanism to suspend providers (#30422)``
193
-
194
- 3.3.1
195
- .....
196
-
197
- Bug Fixes
198
- ~~~~~~~~~
199
-
200
- * ``Bump common.sql provider to 1.3.1 (#27888)``
201
-
202
- .. Below changes are excluded from the changelog. Move them to
203
- appropriate section above if needed. Do not delete the lines(!):
204
- * ``Prepare for follow-up release for November providers (#27774)``
205
-
206
- 3.3.0
207
- .....
208
-
209
- .. note::
210
- This release of provider is only available for Airflow 2.3+ as explained in the
211
- `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
212
-
213
- Misc
214
- ~~~~
215
-
216
- * ``Move min airflow version to 2.3.0 for all providers (#27196)``
217
-
218
- Features
219
- ~~~~~~~~
220
-
221
- * ``Add SQLExecuteQueryOperator (#25717)``
222
-
223
- .. Below changes are excluded from the changelog. Move them to
224
- appropriate section above if needed. Do not delete the lines(!):
225
- * ``Enable string normalization in python formatting - providers (#27205)``
226
- * ``Update docs for September Provider's release (#26731)``
227
- * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
228
-
229
- 3.2.1
230
- .....
231
-
232
- Features
233
- ~~~~~~~~
234
-
235
- * ``Add common-sql lower bound for common-sql (#25789)``
236
-
237
- Bug Fixes
238
- ~~~~~~~~~
239
-
240
- * ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)``
241
-
242
- .. Below changes are excluded from the changelog. Move them to
243
- appropriate section above if needed. Do not delete the lines(!):
244
-
245
- 3.2.0
246
- .....
247
-
248
- Features
249
- ~~~~~~~~
250
-
251
- * ``Unify DbApiHook.run() method with the methods which override it (#23971)``
252
-
253
- 3.1.0
254
- .....
255
-
256
- Features
257
- ~~~~~~~~
258
-
259
- * ``Move all SQL classes to common-sql provider (#24836)``
260
-
261
- .. Below changes are excluded from the changelog. Move them to
262
- appropriate section above if needed. Do not delete the lines(!):
263
- * ``Move provider dependencies to inside provider folders (#24672)``
264
- * ``Remove 'hook-class-names' from provider.yaml (#24702)``
265
-
266
- 3.0.0
267
- .....
268
-
269
- Breaking changes
270
- ~~~~~~~~~~~~~~~~
271
-
272
- .. note::
273
- This release of provider is only available for Airflow 2.2+ as explained in the
274
- `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
275
-
276
- Bug Fixes
277
- ~~~~~~~~~
278
-
279
- * ``Fix ''SqliteHook'' compatibility with SQLAlchemy engine (#23790)``
280
-
281
- .. Below changes are excluded from the changelog. Move them to
282
- appropriate section above if needed. Do not delete the lines(!):
283
- * ``Migrate SQLite example DAGs to new design #22461 (#24150)``
284
- * ``Add explanatory note for contributors about updating Changelog (#24229)``
285
- * ``Prepare docs for May 2022 provider's release (#24231)``
286
- * ``Update package description to remove double min-airflow specification (#24292)``
287
-
288
- 2.1.3
289
- .....
290
-
291
- Bug Fixes
292
- ~~~~~~~~~
293
-
294
- * ``Fix mistakenly added install_requires for all providers (#22382)``
295
-
296
- 2.1.2
297
- .....
298
-
299
- Misc
300
- ~~~~~
301
-
302
- * ``Add Trove classifiers in PyPI (Framework :: Apache Airflow :: Provider)``
303
-
304
- 2.1.1
305
- .....
306
-
307
- Misc
308
- ~~~~
309
-
310
- * ``Support for Python 3.10``
311
-
312
- .. Below changes are excluded from the changelog. Move them to
313
- appropriate section above if needed. Do not delete the lines(!):
314
-
315
- 2.1.0
316
- .....
317
-
318
- Features
319
- ~~~~~~~~
320
-
321
- * ``Add more SQL template fields renderers (#21237)``
322
-
323
- .. Below changes are excluded from the changelog. Move them to
324
- appropriate section above if needed. Do not delete the lines(!):
325
- * ``Fix K8S changelog to be PyPI-compatible (#20614)``
326
- * ``Fix template_fields type to have MyPy friendly Sequence type (#20571)``
327
- * ``Remove ':type' lines now sphinx-autoapi supports typehints (#20951)``
328
- * ``Update documentation for provider December 2021 release (#20523)``
329
- * ``Even more typing in operators (template_fields/ext) (#20608)``
330
- * ``Update documentation for November 2021 provider's release (#19882)``
331
- * ``Misc. documentation typos and language improvements (#19599)``
332
- * ``Prepare documentation for October Provider's release (#19321)``
333
- * ``Update documentation for September providers release (#18613)``
334
- * ``Static start_date and default arg cleanup for misc. provider example DAGs (#18597)``
335
- * ``Updating miscellaneous provider DAGs to use TaskFlow API where applicable (#18278)``
336
- * ``Add documentation for January 2021 providers release (#21257)``
337
-
338
- 2.0.1
339
- .....
340
-
341
- Misc
342
- ~~~~
343
-
344
- * ``Optimise connection importing for Airflow 2.2.0``
345
-
346
- Bug Fixes
347
- ~~~~~~~~~
348
-
349
- * ``Fix sqlite hook - insert and replace functions (#17695)``
350
-
351
- .. Below changes are excluded from the changelog. Move them to
352
- appropriate section above if needed. Do not delete the lines(!):
353
- * ``Update description about the new ''connection-types'' provider meta-data (#17767)``
354
- * ``Import Hooks lazily individually in providers manager (#17682)``
355
- * ``Fix type annotations in OracleOperator, JdbcOperator, SqliteOperator (#17406)``
356
- * ``Prepares docs for Rc2 release of July providers (#17116)``
357
- * ``Remove/refactor default_args pattern for miscellaneous providers (#16872)``
358
-
359
- 2.0.0
360
- .....
361
-
362
- Breaking changes
363
- ~~~~~~~~~~~~~~~~
364
-
365
- * ``Auto-apply apply_default decorator (#15667)``
366
-
367
- .. warning:: Due to apply_default decorator removal, this version of the provider requires Airflow 2.1.0+.
368
- If your Airflow version is < 2.1.0, and you want to install this provider version, first upgrade
369
- Airflow to at least version 2.1.0. Otherwise your Airflow package version will be upgraded
370
- automatically and you will have to manually run ``airflow upgrade db`` to complete the migration.
371
-
372
- .. Below changes are excluded from the changelog. Move them to
373
- appropriate section above if needed. Do not delete the lines(!):
374
- * ``Adds interactivity when generating provider documentation. (#15518)``
375
- * ``Prepares provider release after PIP 21 compatibility (#15576)``
376
- * ``Remove Backport Providers (#14886)``
377
- * ``Updated documentation for June 2021 provider release (#16294)``
378
- * ``More documentation update for June providers release (#16405)``
379
- * ``Synchronizes updated changelog after buggfix release (#16464)``
380
-
381
- 1.0.2
382
- .....
383
-
384
- Bug fixes
385
- ~~~~~~~~~
386
-
387
- * ``Corrections in docs and tools after releasing provider RCs (#14082)``
388
-
389
-
390
- 1.0.1
391
- .....
392
-
393
- Updated documentation and readme files.
394
-
395
- * ``Add example DAG & how-to guide for sqlite (#13196)``
396
-
397
- 1.0.0
398
- .....
399
-
400
- Initial version of the provider.
@@ -1,13 +0,0 @@
1
- airflow/providers/sqlite/__init__.py,sha256=vmYjyQiN3PZ5m1Kl6vNFFdOqMxuOzncKuagJYkFtwOw,1531
2
- airflow/providers/sqlite/get_provider_info.py,sha256=HvMkXf06Z0SCgsKnBcgaLa2U84VzEOUlsxxkHVdDQVc,2626
3
- airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
4
- airflow/providers/sqlite/hooks/sqlite.py,sha256=wJ-S6DX0mhf0uiMDCIP-oxhxOBYaCSfL7r1_S_6krOg,2402
5
- airflow/providers/sqlite/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
6
- airflow/providers/sqlite/operators/sqlite.py,sha256=RjTL1eqBDEeClr76-R7yHGndeIPZCHjBSm6E6zLldHg,2228
7
- apache_airflow_providers_sqlite-3.4.2.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
8
- apache_airflow_providers_sqlite-3.4.2.dist-info/METADATA,sha256=uou797yJAygCiw_aIEpWC4rOq1GF9GevBEsx-62avxM,13585
9
- apache_airflow_providers_sqlite-3.4.2.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
10
- apache_airflow_providers_sqlite-3.4.2.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
11
- apache_airflow_providers_sqlite-3.4.2.dist-info/entry_points.txt,sha256=9smeDg_SEzaOhSSxtKRpSfm_ADofjjWN2GMa9PBanAc,103
12
- apache_airflow_providers_sqlite-3.4.2.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
13
- apache_airflow_providers_sqlite-3.4.2.dist-info/RECORD,,