apache-airflow-providers-mysql 6.2.1__tar.gz → 6.3.5__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.
- apache_airflow_providers_mysql-6.3.5/NOTICE +5 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/PKG-INFO +52 -33
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/README.rst +40 -24
- apache_airflow_providers_mysql-6.3.5/docs/.latest-doc-only-change.txt +1 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/changelog.rst +111 -0
- apache_airflow_providers_mysql-6.3.5/docs/commits.rst +35 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/index.rst +27 -25
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/provider.yaml +12 -2
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/pyproject.toml +13 -10
- {apache_airflow_providers_mysql-6.2.1/tests/system → apache_airflow_providers_mysql-6.3.5/src/airflow}/__init__.py +1 -1
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/__init__.py +1 -1
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/__init__.py +3 -3
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/hooks/mysql.py +8 -7
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/transfers/presto_to_mysql.py +2 -6
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/transfers/s3_to_mysql.py +2 -6
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/transfers/trino_to_mysql.py +2 -6
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/transfers/vertica_to_mysql.py +5 -9
- apache_airflow_providers_mysql-6.3.5/src/airflow/providers/mysql/version_compat.py +34 -0
- {apache_airflow_providers_mysql-6.2.1/tests/unit → apache_airflow_providers_mysql-6.3.5/tests/system}/__init__.py +1 -1
- {apache_airflow_providers_mysql-6.2.1/src/airflow → apache_airflow_providers_mysql-6.3.5/tests/unit}/__init__.py +1 -1
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/assets/test_mysql.py +8 -3
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/hooks/test_mysql.py +36 -5
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/hooks/test_mysql_connector_python.py +3 -1
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/transfers/test_s3_to_mysql.py +4 -4
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/transfers/test_trino_to_mysql.py +18 -13
- apache_airflow_providers_mysql-6.2.1/docs/.latest-doc-only-change.txt +0 -1
- apache_airflow_providers_mysql-6.2.1/docs/commits.rst +0 -780
- {apache_airflow_providers_mysql-6.2.1/src/airflow/providers/mysql → apache_airflow_providers_mysql-6.3.5}/LICENSE +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/conf.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/connections/mysql.rst +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/installing-providers-from-sources.rst +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/integration-logos/MySQL.png +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/operators.rst +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/redirects.txt +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/security.rst +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/assets/__init__.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/assets/mysql.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/get_provider_info.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/hooks/__init__.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/src/airflow/providers/mysql/transfers/__init__.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/conftest.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/system/mysql/__init__.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/system/mysql/example_mysql.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/__init__.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/assets/__init__.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/hooks/__init__.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/transfers/__init__.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/transfers/test_presto_to_mysql.py +0 -0
- {apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/tests/unit/mysql/transfers/test_vertica_to_mysql.py +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-mysql
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.3.5
|
|
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>
|
|
7
7
|
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
8
|
-
Requires-Python:
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
9
|
Description-Content-Type: text/x-rst
|
|
10
|
+
License-Expression: Apache-2.0
|
|
10
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
12
|
Classifier: Environment :: Console
|
|
12
13
|
Classifier: Environment :: Web Environment
|
|
@@ -14,16 +15,18 @@ Classifier: Intended Audience :: Developers
|
|
|
14
15
|
Classifier: Intended Audience :: System Administrators
|
|
15
16
|
Classifier: Framework :: Apache Airflow
|
|
16
17
|
Classifier: Framework :: Apache Airflow :: Provider
|
|
17
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
License-File: NOTICE
|
|
25
|
+
Requires-Dist: apache-airflow>=2.10.0
|
|
26
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.8.0
|
|
24
27
|
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
|
|
25
|
-
Requires-Dist: mysqlclient>=
|
|
26
|
-
Requires-Dist: mysql-connector-python>=
|
|
28
|
+
Requires-Dist: mysqlclient>=2.2.5; sys_platform != "darwin"
|
|
29
|
+
Requires-Dist: mysql-connector-python>=9.1.0
|
|
27
30
|
Requires-Dist: aiomysql>=0.2.0
|
|
28
31
|
Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
|
|
29
32
|
Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
|
|
@@ -31,8 +34,8 @@ Requires-Dist: apache-airflow-providers-presto ; extra == "presto"
|
|
|
31
34
|
Requires-Dist: apache-airflow-providers-trino ; extra == "trino"
|
|
32
35
|
Requires-Dist: apache-airflow-providers-vertica ; extra == "vertica"
|
|
33
36
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
34
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.
|
|
35
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.
|
|
37
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.5/changelog.html
|
|
38
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.5
|
|
36
39
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
37
40
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
38
41
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -69,7 +72,7 @@ Provides-Extra: vertica
|
|
|
69
72
|
|
|
70
73
|
Package ``apache-airflow-providers-mysql``
|
|
71
74
|
|
|
72
|
-
Release: ``6.
|
|
75
|
+
Release: ``6.3.5``
|
|
73
76
|
|
|
74
77
|
|
|
75
78
|
`MySQL <https://www.mysql.com/>`__
|
|
@@ -82,29 +85,30 @@ This is a provider package for ``mysql`` provider. All classes for this provider
|
|
|
82
85
|
are in ``airflow.providers.mysql`` python package.
|
|
83
86
|
|
|
84
87
|
You can find package information and changelog for the provider
|
|
85
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.
|
|
88
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.5/>`_.
|
|
86
89
|
|
|
87
90
|
Installation
|
|
88
91
|
------------
|
|
89
92
|
|
|
90
|
-
You can install this package on top of an existing Airflow
|
|
93
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
91
94
|
for the minimum Airflow version supported) via
|
|
92
95
|
``pip install apache-airflow-providers-mysql``
|
|
93
96
|
|
|
94
|
-
The package supports the following python versions: 3.
|
|
97
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
95
98
|
|
|
96
99
|
Requirements
|
|
97
100
|
------------
|
|
98
101
|
|
|
99
|
-
|
|
100
|
-
PIP package
|
|
101
|
-
|
|
102
|
-
``apache-airflow``
|
|
103
|
-
``apache-airflow-providers-common-
|
|
104
|
-
``
|
|
105
|
-
``
|
|
106
|
-
``
|
|
107
|
-
|
|
102
|
+
========================================== =====================================
|
|
103
|
+
PIP package Version required
|
|
104
|
+
========================================== =====================================
|
|
105
|
+
``apache-airflow`` ``>=2.10.0``
|
|
106
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
107
|
+
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
|
108
|
+
``mysqlclient`` ``>=2.2.5; sys_platform != "darwin"``
|
|
109
|
+
``mysql-connector-python`` ``>=9.1.0``
|
|
110
|
+
``aiomysql`` ``>=0.2.0``
|
|
111
|
+
========================================== =====================================
|
|
108
112
|
|
|
109
113
|
Cross provider package dependencies
|
|
110
114
|
-----------------------------------
|
|
@@ -119,17 +123,32 @@ You can install such cross-provider dependencies when installing from PyPI. For
|
|
|
119
123
|
pip install apache-airflow-providers-mysql[amazon]
|
|
120
124
|
|
|
121
125
|
|
|
122
|
-
|
|
123
|
-
Dependent package
|
|
124
|
-
|
|
125
|
-
`apache-airflow-providers-amazon <https://airflow.apache.org/docs/apache-airflow-providers-amazon>`_
|
|
126
|
-
`apache-airflow-providers-common-
|
|
127
|
-
`apache-airflow-providers-
|
|
128
|
-
`apache-airflow-providers-
|
|
129
|
-
`apache-airflow-providers-
|
|
130
|
-
`apache-airflow-providers-
|
|
131
|
-
|
|
126
|
+
================================================================================================================== =================
|
|
127
|
+
Dependent package Extra
|
|
128
|
+
================================================================================================================== =================
|
|
129
|
+
`apache-airflow-providers-amazon <https://airflow.apache.org/docs/apache-airflow-providers-amazon>`_ ``amazon``
|
|
130
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
131
|
+
`apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
|
|
132
|
+
`apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
|
|
133
|
+
`apache-airflow-providers-presto <https://airflow.apache.org/docs/apache-airflow-providers-presto>`_ ``presto``
|
|
134
|
+
`apache-airflow-providers-trino <https://airflow.apache.org/docs/apache-airflow-providers-trino>`_ ``trino``
|
|
135
|
+
`apache-airflow-providers-vertica <https://airflow.apache.org/docs/apache-airflow-providers-vertica>`_ ``vertica``
|
|
136
|
+
================================================================================================================== =================
|
|
137
|
+
|
|
138
|
+
Optional dependencies
|
|
139
|
+
----------------------
|
|
140
|
+
|
|
141
|
+
========================== ========================================
|
|
142
|
+
Extra Dependencies
|
|
143
|
+
========================== ========================================
|
|
144
|
+
``mysql-connector-python``
|
|
145
|
+
``amazon`` ``apache-airflow-providers-amazon``
|
|
146
|
+
``openlineage`` ``apache-airflow-providers-openlineage``
|
|
147
|
+
``presto`` ``apache-airflow-providers-presto``
|
|
148
|
+
``trino`` ``apache-airflow-providers-trino``
|
|
149
|
+
``vertica`` ``apache-airflow-providers-vertica``
|
|
150
|
+
========================== ========================================
|
|
132
151
|
|
|
133
152
|
The changelog for the provider package can be found in the
|
|
134
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.
|
|
153
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.5/changelog.html>`_.
|
|
135
154
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-mysql``
|
|
25
25
|
|
|
26
|
-
Release: ``6.
|
|
26
|
+
Release: ``6.3.5``
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
`MySQL <https://www.mysql.com/>`__
|
|
@@ -36,29 +36,30 @@ This is a provider package for ``mysql`` provider. All classes for this provider
|
|
|
36
36
|
are in ``airflow.providers.mysql`` 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-mysql/6.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.5/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
43
43
|
|
|
44
|
-
You can install this package on top of an existing Airflow
|
|
44
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
45
45
|
for the minimum Airflow version supported) via
|
|
46
46
|
``pip install apache-airflow-providers-mysql``
|
|
47
47
|
|
|
48
|
-
The package supports the following python versions: 3.
|
|
48
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
49
49
|
|
|
50
50
|
Requirements
|
|
51
51
|
------------
|
|
52
52
|
|
|
53
|
-
|
|
54
|
-
PIP package
|
|
55
|
-
|
|
56
|
-
``apache-airflow``
|
|
57
|
-
``apache-airflow-providers-common-
|
|
58
|
-
``
|
|
59
|
-
``
|
|
60
|
-
``
|
|
61
|
-
|
|
53
|
+
========================================== =====================================
|
|
54
|
+
PIP package Version required
|
|
55
|
+
========================================== =====================================
|
|
56
|
+
``apache-airflow`` ``>=2.10.0``
|
|
57
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
58
|
+
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
|
59
|
+
``mysqlclient`` ``>=2.2.5; sys_platform != "darwin"``
|
|
60
|
+
``mysql-connector-python`` ``>=9.1.0``
|
|
61
|
+
``aiomysql`` ``>=0.2.0``
|
|
62
|
+
========================================== =====================================
|
|
62
63
|
|
|
63
64
|
Cross provider package dependencies
|
|
64
65
|
-----------------------------------
|
|
@@ -73,16 +74,31 @@ You can install such cross-provider dependencies when installing from PyPI. For
|
|
|
73
74
|
pip install apache-airflow-providers-mysql[amazon]
|
|
74
75
|
|
|
75
76
|
|
|
76
|
-
|
|
77
|
-
Dependent package
|
|
78
|
-
|
|
79
|
-
`apache-airflow-providers-amazon <https://airflow.apache.org/docs/apache-airflow-providers-amazon>`_
|
|
80
|
-
`apache-airflow-providers-common-
|
|
81
|
-
`apache-airflow-providers-
|
|
82
|
-
`apache-airflow-providers-
|
|
83
|
-
`apache-airflow-providers-
|
|
84
|
-
`apache-airflow-providers-
|
|
85
|
-
|
|
77
|
+
================================================================================================================== =================
|
|
78
|
+
Dependent package Extra
|
|
79
|
+
================================================================================================================== =================
|
|
80
|
+
`apache-airflow-providers-amazon <https://airflow.apache.org/docs/apache-airflow-providers-amazon>`_ ``amazon``
|
|
81
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
82
|
+
`apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
|
|
83
|
+
`apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
|
|
84
|
+
`apache-airflow-providers-presto <https://airflow.apache.org/docs/apache-airflow-providers-presto>`_ ``presto``
|
|
85
|
+
`apache-airflow-providers-trino <https://airflow.apache.org/docs/apache-airflow-providers-trino>`_ ``trino``
|
|
86
|
+
`apache-airflow-providers-vertica <https://airflow.apache.org/docs/apache-airflow-providers-vertica>`_ ``vertica``
|
|
87
|
+
================================================================================================================== =================
|
|
88
|
+
|
|
89
|
+
Optional dependencies
|
|
90
|
+
----------------------
|
|
91
|
+
|
|
92
|
+
========================== ========================================
|
|
93
|
+
Extra Dependencies
|
|
94
|
+
========================== ========================================
|
|
95
|
+
``mysql-connector-python``
|
|
96
|
+
``amazon`` ``apache-airflow-providers-amazon``
|
|
97
|
+
``openlineage`` ``apache-airflow-providers-openlineage``
|
|
98
|
+
``presto`` ``apache-airflow-providers-presto``
|
|
99
|
+
``trino`` ``apache-airflow-providers-trino``
|
|
100
|
+
``vertica`` ``apache-airflow-providers-vertica``
|
|
101
|
+
========================== ========================================
|
|
86
102
|
|
|
87
103
|
The changelog for the provider package can be found in the
|
|
88
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.
|
|
104
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.5/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
134348e1895ad54cfa4d3a75a78bafe872328b11
|
{apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/changelog.rst
RENAMED
|
@@ -26,6 +26,117 @@
|
|
|
26
26
|
Changelog
|
|
27
27
|
---------
|
|
28
28
|
|
|
29
|
+
6.3.5
|
|
30
|
+
.....
|
|
31
|
+
|
|
32
|
+
Misc
|
|
33
|
+
~~~~
|
|
34
|
+
|
|
35
|
+
* ``Convert all airflow distributions to be compliant with ASF requirements (#58138)``
|
|
36
|
+
* ``Migrate MySQL provider to 'common.compat' (#57165)``
|
|
37
|
+
|
|
38
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
39
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
40
|
+
* ``Delete all unnecessary LICENSE Files (#58191)``
|
|
41
|
+
* ``Enable ruff PLW2101,PLW2901,PLW3301 rule (#57700)``
|
|
42
|
+
* ``Enable PT006 rule to mysql Provider test (#57937)``
|
|
43
|
+
* ``Prepare release for Oct 2025 wave of providers (#57029)``
|
|
44
|
+
* ``Remove placeholder Release Date in changelog and index files (#56056)``
|
|
45
|
+
* ``Enable PT011 rule to prvoider tests (#56021)``
|
|
46
|
+
|
|
47
|
+
6.3.4
|
|
48
|
+
.....
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
Misc
|
|
52
|
+
~~~~
|
|
53
|
+
|
|
54
|
+
* ``Bump mysql-connector-python>=9.1.0 to support SQLAlchemy 2.0 (#52233)``
|
|
55
|
+
* ``Add optional SQLA logging/diagnostics (#54315)``
|
|
56
|
+
|
|
57
|
+
Doc-only
|
|
58
|
+
~~~~~~~~
|
|
59
|
+
|
|
60
|
+
* ``Make term Dag consistent in providers docs (#55101)``
|
|
61
|
+
|
|
62
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
63
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
64
|
+
* ``Switch pre-commit to prek (#54258)``
|
|
65
|
+
|
|
66
|
+
.. Review and move the new changes to one of the sections above:
|
|
67
|
+
* ``Fix Airflow 2 reference in README/index of providers (#55240)``
|
|
68
|
+
|
|
69
|
+
6.3.3
|
|
70
|
+
.....
|
|
71
|
+
|
|
72
|
+
Misc
|
|
73
|
+
~~~~
|
|
74
|
+
|
|
75
|
+
* ``Add Python 3.13 support for Airflow. (#46891)``
|
|
76
|
+
* ``Cleanup type ignores in mysql provider where possible (#53288)``
|
|
77
|
+
* ``Remove type ignore across codebase after mypy upgrade (#53243)``
|
|
78
|
+
* ``Remove upper-binding for "python-requires" (#52980)``
|
|
79
|
+
* ``Temporarily switch to use >=,< pattern instead of '~=' (#52967)``
|
|
80
|
+
|
|
81
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
82
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
83
|
+
|
|
84
|
+
6.3.2
|
|
85
|
+
.....
|
|
86
|
+
|
|
87
|
+
Misc
|
|
88
|
+
~~~~
|
|
89
|
+
|
|
90
|
+
* ``Move 'BaseHook' implementation to task SDK (#51873)``
|
|
91
|
+
* ``Provider Migration: Update mysql for Airflow 3.0 compatibility (#52500)``
|
|
92
|
+
* ``Drop support for Python 3.9 (#52072)``
|
|
93
|
+
|
|
94
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
95
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
96
|
+
* ``Introducing fixture to create 'Connections' without DB in provider tests (#51930)``
|
|
97
|
+
|
|
98
|
+
6.3.1
|
|
99
|
+
.....
|
|
100
|
+
|
|
101
|
+
Misc
|
|
102
|
+
~~~~
|
|
103
|
+
|
|
104
|
+
* ``Bump problematic dependencies to avoid backtracking (#51702)``
|
|
105
|
+
|
|
106
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
107
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
108
|
+
|
|
109
|
+
6.3.0
|
|
110
|
+
.....
|
|
111
|
+
|
|
112
|
+
.. note::
|
|
113
|
+
This release of provider is only available for Airflow 2.10+ as explained in the
|
|
114
|
+
Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
|
|
115
|
+
|
|
116
|
+
Misc
|
|
117
|
+
~~~~
|
|
118
|
+
|
|
119
|
+
* ``Bump min Airflow version in providers to 2.10 (#49843)``
|
|
120
|
+
* ``Help 'pip' with avoiding resolution too deep issues in Python 3.12 (#49853)``
|
|
121
|
+
|
|
122
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
123
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
124
|
+
* ``Update description of provider.yaml dependencies (#50231)``
|
|
125
|
+
* ``Avoid committing history for providers (#49907)``
|
|
126
|
+
|
|
127
|
+
6.2.2
|
|
128
|
+
.....
|
|
129
|
+
|
|
130
|
+
Misc
|
|
131
|
+
~~~~
|
|
132
|
+
|
|
133
|
+
* ``remove superfluous else block (#49199)``
|
|
134
|
+
|
|
135
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
136
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
137
|
+
* ``Remove limitation for mysql-connector-python (#49321)``
|
|
138
|
+
* ``Exclude 9.3.0 release of mysql-connector-python (#49300)``
|
|
139
|
+
|
|
29
140
|
6.2.1
|
|
30
141
|
.....
|
|
31
142
|
|
|
@@ -0,0 +1,35 @@
|
|
|
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-mysql
|
|
27
|
+
------------------------------------------------------
|
|
28
|
+
|
|
29
|
+
`MySQL <https://www.mysql.com/>`__
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
This is detailed commit list of changes for versions provider package: ``mysql``.
|
|
33
|
+
For high-level changelog, see :doc:`package information including changelog <index>`.
|
|
34
|
+
|
|
35
|
+
.. airflow-providers-commits::
|
{apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/docs/index.rst
RENAMED
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
:maxdepth: 1
|
|
57
57
|
:caption: Resources
|
|
58
58
|
|
|
59
|
-
Example
|
|
59
|
+
Example Dags <https://github.com/apache/airflow/tree/providers-mysql/|version|/providers/mysql/tests/system/mysql>
|
|
60
60
|
PyPI Repository <https://pypi.org/project/apache-airflow-providers-mysql/>
|
|
61
61
|
Installing from sources <installing-providers-from-sources>
|
|
62
62
|
|
|
@@ -77,7 +77,7 @@ apache-airflow-providers-mysql package
|
|
|
77
77
|
`MySQL <https://www.mysql.com/>`__
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
Release: 6.
|
|
80
|
+
Release: 6.3.5
|
|
81
81
|
|
|
82
82
|
Provider package
|
|
83
83
|
----------------
|
|
@@ -88,24 +88,25 @@ All classes for this package are included in the ``airflow.providers.mysql`` pyt
|
|
|
88
88
|
Installation
|
|
89
89
|
------------
|
|
90
90
|
|
|
91
|
-
You can install this package on top of an existing Airflow
|
|
91
|
+
You can install this package on top of an existing Airflow installation via
|
|
92
92
|
``pip install apache-airflow-providers-mysql``.
|
|
93
93
|
For the minimum Airflow version supported, see ``Requirements`` below.
|
|
94
94
|
|
|
95
95
|
Requirements
|
|
96
96
|
------------
|
|
97
97
|
|
|
98
|
-
The minimum Apache Airflow version supported by this provider distribution is ``2.
|
|
98
|
+
The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``.
|
|
99
99
|
|
|
100
|
-
|
|
101
|
-
PIP package
|
|
102
|
-
|
|
103
|
-
``apache-airflow``
|
|
104
|
-
``apache-airflow-providers-common-
|
|
105
|
-
``
|
|
106
|
-
``
|
|
107
|
-
``
|
|
108
|
-
|
|
100
|
+
========================================== =====================================
|
|
101
|
+
PIP package Version required
|
|
102
|
+
========================================== =====================================
|
|
103
|
+
``apache-airflow`` ``>=2.10.0``
|
|
104
|
+
``apache-airflow-providers-common-compat`` ``>=1.8.0``
|
|
105
|
+
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
|
106
|
+
``mysqlclient`` ``>=2.2.5; sys_platform != "darwin"``
|
|
107
|
+
``mysql-connector-python`` ``>=9.1.0``
|
|
108
|
+
``aiomysql`` ``>=0.2.0``
|
|
109
|
+
========================================== =====================================
|
|
109
110
|
|
|
110
111
|
Cross provider package dependencies
|
|
111
112
|
-----------------------------------
|
|
@@ -120,16 +121,17 @@ You can install such cross-provider dependencies when installing from PyPI. For
|
|
|
120
121
|
pip install apache-airflow-providers-mysql[amazon]
|
|
121
122
|
|
|
122
123
|
|
|
123
|
-
|
|
124
|
-
Dependent package
|
|
125
|
-
|
|
126
|
-
`apache-airflow-providers-amazon <https://airflow.apache.org/docs/apache-airflow-providers-amazon>`_
|
|
127
|
-
`apache-airflow-providers-common-
|
|
128
|
-
`apache-airflow-providers-
|
|
129
|
-
`apache-airflow-providers-
|
|
130
|
-
`apache-airflow-providers-
|
|
131
|
-
`apache-airflow-providers-
|
|
132
|
-
|
|
124
|
+
================================================================================================================== =================
|
|
125
|
+
Dependent package Extra
|
|
126
|
+
================================================================================================================== =================
|
|
127
|
+
`apache-airflow-providers-amazon <https://airflow.apache.org/docs/apache-airflow-providers-amazon>`_ ``amazon``
|
|
128
|
+
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
|
|
129
|
+
`apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
|
|
130
|
+
`apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
|
|
131
|
+
`apache-airflow-providers-presto <https://airflow.apache.org/docs/apache-airflow-providers-presto>`_ ``presto``
|
|
132
|
+
`apache-airflow-providers-trino <https://airflow.apache.org/docs/apache-airflow-providers-trino>`_ ``trino``
|
|
133
|
+
`apache-airflow-providers-vertica <https://airflow.apache.org/docs/apache-airflow-providers-vertica>`_ ``vertica``
|
|
134
|
+
================================================================================================================== =================
|
|
133
135
|
|
|
134
136
|
Downloading official packages
|
|
135
137
|
-----------------------------
|
|
@@ -137,5 +139,5 @@ Downloading official packages
|
|
|
137
139
|
You can download officially released packages and verify their checksums and signatures from the
|
|
138
140
|
`Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
|
|
139
141
|
|
|
140
|
-
* `The apache-airflow-providers-mysql 6.
|
|
141
|
-
* `The apache-airflow-providers-mysql 6.
|
|
142
|
+
* `The apache-airflow-providers-mysql 6.3.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-6.3.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-6.3.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-6.3.5.tar.gz.sha512>`__)
|
|
143
|
+
* `The apache-airflow-providers-mysql 6.3.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-6.3.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-6.3.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-6.3.5-py3-none-any.whl.sha512>`__)
|
|
@@ -22,9 +22,19 @@ description: |
|
|
|
22
22
|
`MySQL <https://www.mysql.com/>`__
|
|
23
23
|
|
|
24
24
|
state: ready
|
|
25
|
-
source-date-epoch:
|
|
26
|
-
#
|
|
25
|
+
source-date-epoch: 1763069907
|
|
26
|
+
# Note that those versions are maintained by release manager - do not update them manually
|
|
27
|
+
# with the exception of case where other provider in sources has >= new provider version.
|
|
28
|
+
# In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have
|
|
29
|
+
# to be done in the same PR
|
|
27
30
|
versions:
|
|
31
|
+
- 6.3.5
|
|
32
|
+
- 6.3.4
|
|
33
|
+
- 6.3.3
|
|
34
|
+
- 6.3.2
|
|
35
|
+
- 6.3.1
|
|
36
|
+
- 6.3.0
|
|
37
|
+
- 6.2.2
|
|
28
38
|
- 6.2.1
|
|
29
39
|
- 6.2.0
|
|
30
40
|
- 6.1.0
|
{apache_airflow_providers_mysql-6.2.1 → apache_airflow_providers_mysql-6.3.5}/pyproject.toml
RENAMED
|
@@ -25,9 +25,11 @@ build-backend = "flit_core.buildapi"
|
|
|
25
25
|
|
|
26
26
|
[project]
|
|
27
27
|
name = "apache-airflow-providers-mysql"
|
|
28
|
-
version = "6.
|
|
28
|
+
version = "6.3.5"
|
|
29
29
|
description = "Provider package apache-airflow-providers-mysql for Apache Airflow"
|
|
30
30
|
readme = "README.rst"
|
|
31
|
+
license = "Apache-2.0"
|
|
32
|
+
license-files = ['LICENSE', 'NOTICE']
|
|
31
33
|
authors = [
|
|
32
34
|
{name="Apache Software Foundation", email="dev@airflow.apache.org"},
|
|
33
35
|
]
|
|
@@ -43,27 +45,27 @@ classifiers = [
|
|
|
43
45
|
"Intended Audience :: System Administrators",
|
|
44
46
|
"Framework :: Apache Airflow",
|
|
45
47
|
"Framework :: Apache Airflow :: Provider",
|
|
46
|
-
"License :: OSI Approved :: Apache Software License",
|
|
47
|
-
"Programming Language :: Python :: 3.9",
|
|
48
48
|
"Programming Language :: Python :: 3.10",
|
|
49
49
|
"Programming Language :: Python :: 3.11",
|
|
50
50
|
"Programming Language :: Python :: 3.12",
|
|
51
|
+
"Programming Language :: Python :: 3.13",
|
|
51
52
|
"Topic :: System :: Monitoring",
|
|
52
53
|
]
|
|
53
|
-
requires-python = "
|
|
54
|
+
requires-python = ">=3.10"
|
|
54
55
|
|
|
55
56
|
# The dependencies should be modified in place in the generated file.
|
|
56
57
|
# Any change in the dependencies is preserved when the file is regenerated
|
|
57
|
-
# Make sure to run ``
|
|
58
|
+
# Make sure to run ``prek update-providers-dependencies --all-files``
|
|
58
59
|
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
|
|
59
60
|
dependencies = [
|
|
60
|
-
"apache-airflow>=2.
|
|
61
|
+
"apache-airflow>=2.10.0",
|
|
62
|
+
"apache-airflow-providers-common-compat>=1.8.0",
|
|
61
63
|
"apache-airflow-providers-common-sql>=1.20.0",
|
|
62
64
|
# The mysqlclient package creates friction when installing on MacOS as it needs pkg-config to
|
|
63
65
|
# Install and compile, and it's really only used by MySQL provider, so we can skip it on MacOS
|
|
64
66
|
# Instead, if someone attempts to use it on MacOS, they will get explanatory error on how to install it
|
|
65
|
-
|
|
66
|
-
|
|
67
|
+
'mysqlclient>=2.2.5; sys_platform != "darwin"',
|
|
68
|
+
'mysql-connector-python>=9.1.0',
|
|
67
69
|
"aiomysql>=0.2.0",
|
|
68
70
|
]
|
|
69
71
|
|
|
@@ -95,6 +97,7 @@ dev = [
|
|
|
95
97
|
"apache-airflow-task-sdk",
|
|
96
98
|
"apache-airflow-devel-common",
|
|
97
99
|
"apache-airflow-providers-amazon",
|
|
100
|
+
"apache-airflow-providers-common-compat",
|
|
98
101
|
"apache-airflow-providers-common-sql",
|
|
99
102
|
"apache-airflow-providers-openlineage",
|
|
100
103
|
"apache-airflow-providers-presto",
|
|
@@ -129,8 +132,8 @@ apache-airflow-providers-common-sql = {workspace = true}
|
|
|
129
132
|
apache-airflow-providers-standard = {workspace = true}
|
|
130
133
|
|
|
131
134
|
[project.urls]
|
|
132
|
-
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.
|
|
133
|
-
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.
|
|
135
|
+
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.5"
|
|
136
|
+
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.5/changelog.html"
|
|
134
137
|
"Bug Tracker" = "https://github.com/apache/airflow/issues"
|
|
135
138
|
"Source Code" = "https://github.com/apache/airflow"
|
|
136
139
|
"Slack Chat" = "https://s.apache.org/airflow-slack"
|
|
@@ -14,4 +14,4 @@
|
|
|
14
14
|
# KIND, either express or implied. See the License for the
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
|
-
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
|
|
17
|
+
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
|
|
@@ -14,4 +14,4 @@
|
|
|
14
14
|
# KIND, either express or implied. See the License for the
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
|
-
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
|
|
17
|
+
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
|
|
@@ -29,11 +29,11 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "6.
|
|
32
|
+
__version__ = "6.3.5"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
|
-
"2.
|
|
35
|
+
"2.10.0"
|
|
36
36
|
):
|
|
37
37
|
raise RuntimeError(
|
|
38
|
-
f"The package `apache-airflow-providers-mysql:{__version__}` needs Apache Airflow 2.
|
|
38
|
+
f"The package `apache-airflow-providers-mysql:{__version__}` needs Apache Airflow 2.10.0+"
|
|
39
39
|
)
|