apache-airflow-providers-mysql 5.6.1__py3-none-any.whl → 5.6.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airflow/providers/mysql/LICENSE +4 -4
- airflow/providers/mysql/__init__.py +1 -1
- airflow/providers/mysql/get_provider_info.py +3 -2
- airflow/providers/mysql/operators/mysql.py +1 -1
- {apache_airflow_providers_mysql-5.6.1.dist-info → apache_airflow_providers_mysql-5.6.2.dist-info}/METADATA +8 -8
- {apache_airflow_providers_mysql-5.6.1.dist-info → apache_airflow_providers_mysql-5.6.2.dist-info}/RECORD +8 -8
- {apache_airflow_providers_mysql-5.6.1.dist-info → apache_airflow_providers_mysql-5.6.2.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_mysql-5.6.1.dist-info → apache_airflow_providers_mysql-5.6.2.dist-info}/entry_points.txt +0 -0
airflow/providers/mysql/LICENSE
CHANGED
@@ -215,7 +215,7 @@ Third party Apache 2.0 licenses
|
|
215
215
|
|
216
216
|
The following components are provided under the Apache 2.0 License.
|
217
217
|
See project link for details. The text of each license is also included
|
218
|
-
at licenses/LICENSE-[project].txt.
|
218
|
+
at 3rd-party-licenses/LICENSE-[project].txt.
|
219
219
|
|
220
220
|
(ALv2 License) hue v4.3.0 (https://github.com/cloudera/hue/)
|
221
221
|
(ALv2 License) jqclock v2.3.0 (https://github.com/JohnRDOrazio/jQuery-Clock-Plugin)
|
@@ -227,7 +227,7 @@ MIT licenses
|
|
227
227
|
========================================================================
|
228
228
|
|
229
229
|
The following components are provided under the MIT License. See project link for details.
|
230
|
-
The text of each license is also included at licenses/LICENSE-[project].txt.
|
230
|
+
The text of each license is also included at 3rd-party-licenses/LICENSE-[project].txt.
|
231
231
|
|
232
232
|
(MIT License) jquery v3.5.1 (https://jquery.org/license/)
|
233
233
|
(MIT License) dagre-d3 v0.6.4 (https://github.com/cpettitt/dagre-d3)
|
@@ -243,11 +243,11 @@ The text of each license is also included at licenses/LICENSE-[project].txt.
|
|
243
243
|
BSD 3-Clause licenses
|
244
244
|
========================================================================
|
245
245
|
The following components are provided under the BSD 3-Clause license. See project links for details.
|
246
|
-
The text of each license is also included at licenses/LICENSE-[project].txt.
|
246
|
+
The text of each license is also included at 3rd-party-licenses/LICENSE-[project].txt.
|
247
247
|
|
248
248
|
(BSD 3 License) d3 v5.16.0 (https://d3js.org)
|
249
249
|
(BSD 3 License) d3-shape v2.1.0 (https://github.com/d3/d3-shape)
|
250
250
|
(BSD 3 License) cgroupspy 0.2.1 (https://github.com/cloudsigma/cgroupspy)
|
251
251
|
|
252
252
|
========================================================================
|
253
|
-
See licenses/LICENSES-ui.txt for packages used in `/airflow/www`
|
253
|
+
See 3rd-party-licenses/LICENSES-ui.txt for packages used in `/airflow/www`
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
29
29
|
|
30
30
|
__all__ = ["__version__"]
|
31
31
|
|
32
|
-
__version__ = "5.6.
|
32
|
+
__version__ = "5.6.2"
|
33
33
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
35
35
|
"2.7.0"
|
@@ -28,8 +28,9 @@ def get_provider_info():
|
|
28
28
|
"name": "MySQL",
|
29
29
|
"description": "`MySQL <https://www.mysql.com/>`__\n",
|
30
30
|
"state": "ready",
|
31
|
-
"source-date-epoch":
|
31
|
+
"source-date-epoch": 1718605110,
|
32
32
|
"versions": [
|
33
|
+
"5.6.2",
|
33
34
|
"5.6.1",
|
34
35
|
"5.6.0",
|
35
36
|
"5.5.4",
|
@@ -69,7 +70,7 @@ def get_provider_info():
|
|
69
70
|
"dependencies": [
|
70
71
|
"apache-airflow>=2.7.0",
|
71
72
|
"apache-airflow-providers-common-sql>=1.3.1",
|
72
|
-
"mysqlclient>=1.
|
73
|
+
"mysqlclient>=1.4.0",
|
73
74
|
"mysql-connector-python>=8.0.29",
|
74
75
|
],
|
75
76
|
"additional-extras": [{"name": "mysql-connector-python", "dependencies": []}],
|
@@ -42,7 +42,7 @@ class MySqlOperator(SQLExecuteQueryOperator):
|
|
42
42
|
|
43
43
|
.. seealso::
|
44
44
|
For more information on how to use this operator, take a look at the guide:
|
45
|
-
:ref:`howto/operator:
|
45
|
+
:ref:`howto/operator:mysql`
|
46
46
|
|
47
47
|
:param sql: the sql code to be executed. Can receive a str representing a
|
48
48
|
sql statement, a list of str (sql statements), or reference to a template file.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: apache-airflow-providers-mysql
|
3
|
-
Version: 5.6.
|
3
|
+
Version: 5.6.2
|
4
4
|
Summary: Provider package apache-airflow-providers-mysql for Apache Airflow
|
5
5
|
Keywords: airflow-provider,mysql,airflow,integration
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
@@ -24,7 +24,7 @@ Classifier: Topic :: System :: Monitoring
|
|
24
24
|
Requires-Dist: apache-airflow-providers-common-sql>=1.3.1
|
25
25
|
Requires-Dist: apache-airflow>=2.7.0
|
26
26
|
Requires-Dist: mysql-connector-python>=8.0.29
|
27
|
-
Requires-Dist: mysqlclient>=1.
|
27
|
+
Requires-Dist: mysqlclient>=1.4.0
|
28
28
|
Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
|
29
29
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common.sql"
|
30
30
|
Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
|
@@ -32,8 +32,8 @@ Requires-Dist: apache-airflow-providers-presto ; extra == "presto"
|
|
32
32
|
Requires-Dist: apache-airflow-providers-trino ; extra == "trino"
|
33
33
|
Requires-Dist: apache-airflow-providers-vertica ; extra == "vertica"
|
34
34
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
35
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.
|
36
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.
|
35
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.2/changelog.html
|
36
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.2
|
37
37
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
38
38
|
Project-URL: Source Code, https://github.com/apache/airflow
|
39
39
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
@@ -90,7 +90,7 @@ Provides-Extra: vertica
|
|
90
90
|
|
91
91
|
Package ``apache-airflow-providers-mysql``
|
92
92
|
|
93
|
-
Release: ``5.6.
|
93
|
+
Release: ``5.6.2``
|
94
94
|
|
95
95
|
|
96
96
|
`MySQL <https://www.mysql.com/>`__
|
@@ -103,7 +103,7 @@ This is a provider package for ``mysql`` provider. All classes for this provider
|
|
103
103
|
are in ``airflow.providers.mysql`` python package.
|
104
104
|
|
105
105
|
You can find package information and changelog for the provider
|
106
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.
|
106
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.2/>`_.
|
107
107
|
|
108
108
|
Installation
|
109
109
|
------------
|
@@ -122,7 +122,7 @@ PIP package Version required
|
|
122
122
|
======================================= ==================
|
123
123
|
``apache-airflow`` ``>=2.7.0``
|
124
124
|
``apache-airflow-providers-common-sql`` ``>=1.3.1``
|
125
|
-
``mysqlclient`` ``>=1.
|
125
|
+
``mysqlclient`` ``>=1.4.0``
|
126
126
|
``mysql-connector-python`` ``>=8.0.29``
|
127
127
|
======================================= ==================
|
128
128
|
|
@@ -151,4 +151,4 @@ Dependent package
|
|
151
151
|
============================================================================================================== ===============
|
152
152
|
|
153
153
|
The changelog for the provider package can be found in the
|
154
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.
|
154
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.2/changelog.html>`_.
|
@@ -1,18 +1,18 @@
|
|
1
|
-
airflow/providers/mysql/LICENSE,sha256=
|
2
|
-
airflow/providers/mysql/__init__.py,sha256=
|
3
|
-
airflow/providers/mysql/get_provider_info.py,sha256=
|
1
|
+
airflow/providers/mysql/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
2
|
+
airflow/providers/mysql/__init__.py,sha256=EO-GwQtXjRj-R0qfiyH2PkMTu91amP5-UO2LKIFVWPM,1492
|
3
|
+
airflow/providers/mysql/get_provider_info.py,sha256=bytFgTQ7Ayh7hV2FoLy7JwDH2CdXWzNL3kSrxqDJsTk,4289
|
4
4
|
airflow/providers/mysql/datasets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
5
5
|
airflow/providers/mysql/datasets/mysql.py,sha256=ORHZmCa1AZAWwpF7GKH-8faqOKSohJvKtqRgfDnQRRc,1385
|
6
6
|
airflow/providers/mysql/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
7
7
|
airflow/providers/mysql/hooks/mysql.py,sha256=xrv813C5TAF4Suq2EGDMVT8Is7PUfeS-7FPimEQtXto,13220
|
8
8
|
airflow/providers/mysql/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
9
|
-
airflow/providers/mysql/operators/mysql.py,sha256=
|
9
|
+
airflow/providers/mysql/operators/mysql.py,sha256=jEtskURwKliyx5IGoFx8cJmiALqkeJzU_rigDcLrapo,2926
|
10
10
|
airflow/providers/mysql/transfers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
11
11
|
airflow/providers/mysql/transfers/presto_to_mysql.py,sha256=gGtZIGXLpY2jP8o3xwZ5u8khqcQK3cVSa9P-aev7Qiw,3269
|
12
12
|
airflow/providers/mysql/transfers/s3_to_mysql.py,sha256=E5I7QHWqzrG3Fi9AGklwZWRCVxVDOD1tOB2xHEOZUJw,3876
|
13
13
|
airflow/providers/mysql/transfers/trino_to_mysql.py,sha256=wiiuilxSHchJD0W2K838UHH5iUs-R5HNc0zyRDOZDRs,3251
|
14
14
|
airflow/providers/mysql/transfers/vertica_to_mysql.py,sha256=NiIFMv0zy4M9Ynrs4InG9nqp6lyvmgDlz7_iDJWxQEI,6308
|
15
|
-
apache_airflow_providers_mysql-5.6.
|
16
|
-
apache_airflow_providers_mysql-5.6.
|
17
|
-
apache_airflow_providers_mysql-5.6.
|
18
|
-
apache_airflow_providers_mysql-5.6.
|
15
|
+
apache_airflow_providers_mysql-5.6.2.dist-info/entry_points.txt,sha256=kIbWluJZ1LX9jo9pLkqbnu6DUgYpoGKXzmSvjT5czKM,101
|
16
|
+
apache_airflow_providers_mysql-5.6.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
17
|
+
apache_airflow_providers_mysql-5.6.2.dist-info/METADATA,sha256=MbqGFpaPtgVj1uvURQwm4uZnipLZ4qj4-MZdo4g-JTE,7326
|
18
|
+
apache_airflow_providers_mysql-5.6.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|