apache-airflow-providers-postgres 6.1.3rc1__tar.gz → 6.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/PKG-INFO +9 -9
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/README.rst +4 -4
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/changelog.rst +17 -0
- apache_airflow_providers_postgres-6.2.0/docs/commits.rst +35 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/index.rst +5 -5
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/provider.yaml +6 -2
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/pyproject.toml +5 -5
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/__init__.py +3 -3
- apache_airflow_providers_postgres-6.1.3rc1/docs/commits.rst +0 -773
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/.latest-doc-only-change.txt +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/conf.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/connections/postgres.rst +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/dialects.rst +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/installing-providers-from-sources.rst +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/integration-logos/Postgres.png +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/operators.rst +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/redirects.txt +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/security.rst +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/LICENSE +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/assets/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/assets/postgres.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/dialects/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/dialects/postgres.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/get_provider_info.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/hooks/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/src/airflow/providers/postgres/hooks/postgres.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/conftest.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/system/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/system/postgres/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/system/postgres/example_postgres.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/unit/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/unit/postgres/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/unit/postgres/assets/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/unit/postgres/assets/test_postgres.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/unit/postgres/dialects/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/unit/postgres/dialects/test_postgres.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/unit/postgres/hooks/__init__.py +0 -0
- {apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/tests/unit/postgres/hooks/test_postgres.py +0 -0
{apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: apache-airflow-providers-postgres
|
3
|
-
Version: 6.
|
3
|
+
Version: 6.2.0
|
4
4
|
Summary: Provider package apache-airflow-providers-postgres for Apache Airflow
|
5
5
|
Keywords: airflow-provider,postgres,airflow,integration
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
@@ -20,15 +20,15 @@ Classifier: Programming Language :: Python :: 3.10
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
23
|
-
Requires-Dist: apache-airflow>=2.
|
24
|
-
Requires-Dist: apache-airflow-providers-common-sql>=1.23.
|
23
|
+
Requires-Dist: apache-airflow>=2.10.0
|
24
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.23.0
|
25
25
|
Requires-Dist: psycopg2-binary>=2.9.9
|
26
26
|
Requires-Dist: asyncpg>=0.30.0
|
27
27
|
Requires-Dist: apache-airflow-providers-amazon>=2.6.0 ; extra == "amazon"
|
28
28
|
Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
|
29
29
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
30
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.2.0/changelog.html
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.2.0
|
32
32
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
33
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
34
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
@@ -61,7 +61,7 @@ Provides-Extra: openlineage
|
|
61
61
|
|
62
62
|
Package ``apache-airflow-providers-postgres``
|
63
63
|
|
64
|
-
Release: ``6.
|
64
|
+
Release: ``6.2.0``
|
65
65
|
|
66
66
|
|
67
67
|
`PostgreSQL <https://www.postgresql.org/>`__
|
@@ -74,7 +74,7 @@ This is a provider package for ``postgres`` provider. All classes for this provi
|
|
74
74
|
are in ``airflow.providers.postgres`` python package.
|
75
75
|
|
76
76
|
You can find package information and changelog for the provider
|
77
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.
|
77
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.2.0/>`_.
|
78
78
|
|
79
79
|
Installation
|
80
80
|
------------
|
@@ -91,7 +91,7 @@ Requirements
|
|
91
91
|
======================================= ==================
|
92
92
|
PIP package Version required
|
93
93
|
======================================= ==================
|
94
|
-
``apache-airflow`` ``>=2.
|
94
|
+
``apache-airflow`` ``>=2.10.0``
|
95
95
|
``apache-airflow-providers-common-sql`` ``>=1.23.0``
|
96
96
|
``psycopg2-binary`` ``>=2.9.9``
|
97
97
|
``asyncpg`` ``>=0.30.0``
|
@@ -119,5 +119,5 @@ Dependent package
|
|
119
119
|
============================================================================================================== ===============
|
120
120
|
|
121
121
|
The changelog for the provider package can be found in the
|
122
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.
|
122
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.2.0/changelog.html>`_.
|
123
123
|
|
{apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/README.rst
RENAMED
@@ -23,7 +23,7 @@
|
|
23
23
|
|
24
24
|
Package ``apache-airflow-providers-postgres``
|
25
25
|
|
26
|
-
Release: ``6.
|
26
|
+
Release: ``6.2.0``
|
27
27
|
|
28
28
|
|
29
29
|
`PostgreSQL <https://www.postgresql.org/>`__
|
@@ -36,7 +36,7 @@ This is a provider package for ``postgres`` provider. All classes for this provi
|
|
36
36
|
are in ``airflow.providers.postgres`` 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-postgres/6.
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.2.0/>`_.
|
40
40
|
|
41
41
|
Installation
|
42
42
|
------------
|
@@ -53,7 +53,7 @@ Requirements
|
|
53
53
|
======================================= ==================
|
54
54
|
PIP package Version required
|
55
55
|
======================================= ==================
|
56
|
-
``apache-airflow`` ``>=2.
|
56
|
+
``apache-airflow`` ``>=2.10.0``
|
57
57
|
``apache-airflow-providers-common-sql`` ``>=1.23.0``
|
58
58
|
``psycopg2-binary`` ``>=2.9.9``
|
59
59
|
``asyncpg`` ``>=0.30.0``
|
@@ -81,4 +81,4 @@ Dependent package
|
|
81
81
|
============================================================================================================== ===============
|
82
82
|
|
83
83
|
The changelog for the provider package can be found in the
|
84
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.
|
84
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.2.0/changelog.html>`_.
|
@@ -27,6 +27,23 @@
|
|
27
27
|
Changelog
|
28
28
|
---------
|
29
29
|
|
30
|
+
6.2.0
|
31
|
+
.....
|
32
|
+
|
33
|
+
.. note::
|
34
|
+
This release of provider is only available for Airflow 2.10+ as explained in the
|
35
|
+
Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
|
36
|
+
|
37
|
+
Misc
|
38
|
+
~~~~
|
39
|
+
|
40
|
+
* ``Bump min Airflow version in providers to 2.10 (#49843)``
|
41
|
+
|
42
|
+
.. Below changes are excluded from the changelog. Move them to
|
43
|
+
appropriate section above if needed. Do not delete the lines(!):
|
44
|
+
* ``Update description of provider.yaml dependencies (#50231)``
|
45
|
+
* ``Avoid committing history for providers (#49907)``
|
46
|
+
|
30
47
|
6.1.3
|
31
48
|
.....
|
32
49
|
|
@@ -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-postgres
|
27
|
+
------------------------------------------------------
|
28
|
+
|
29
|
+
`PostgreSQL <https://www.postgresql.org/>`__
|
30
|
+
|
31
|
+
|
32
|
+
This is detailed commit list of changes for versions provider package: ``postgres``.
|
33
|
+
For high-level changelog, see :doc:`package information including changelog <index>`.
|
34
|
+
|
35
|
+
.. airflow-providers-commits::
|
@@ -77,7 +77,7 @@ apache-airflow-providers-postgres package
|
|
77
77
|
`PostgreSQL <https://www.postgresql.org/>`__
|
78
78
|
|
79
79
|
|
80
|
-
Release: 6.
|
80
|
+
Release: 6.2.0
|
81
81
|
|
82
82
|
Provider package
|
83
83
|
----------------
|
@@ -95,12 +95,12 @@ For the minimum Airflow version supported, see ``Requirements`` below.
|
|
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
100
|
======================================= ==================
|
101
101
|
PIP package Version required
|
102
102
|
======================================= ==================
|
103
|
-
``apache-airflow`` ``>=2.
|
103
|
+
``apache-airflow`` ``>=2.10.0``
|
104
104
|
``apache-airflow-providers-common-sql`` ``>=1.23.0``
|
105
105
|
``psycopg2-binary`` ``>=2.9.9``
|
106
106
|
``asyncpg`` ``>=0.30.0``
|
@@ -133,5 +133,5 @@ Downloading official packages
|
|
133
133
|
You can download officially released packages and verify their checksums and signatures from the
|
134
134
|
`Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
|
135
135
|
|
136
|
-
* `The apache-airflow-providers-postgres 6.
|
137
|
-
* `The apache-airflow-providers-postgres 6.
|
136
|
+
* `The apache-airflow-providers-postgres 6.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.2.0.tar.gz.sha512>`__)
|
137
|
+
* `The apache-airflow-providers-postgres 6.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.2.0-py3-none-any.whl.sha512>`__)
|
{apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/provider.yaml
RENAMED
@@ -22,9 +22,13 @@ description: |
|
|
22
22
|
`PostgreSQL <https://www.postgresql.org/>`__
|
23
23
|
|
24
24
|
state: ready
|
25
|
-
source-date-epoch:
|
26
|
-
#
|
25
|
+
source-date-epoch: 1747133567
|
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.2.0
|
28
32
|
- 6.1.3
|
29
33
|
- 6.1.2
|
30
34
|
- 6.1.1
|
@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
|
|
25
25
|
|
26
26
|
[project]
|
27
27
|
name = "apache-airflow-providers-postgres"
|
28
|
-
version = "6.
|
28
|
+
version = "6.2.0"
|
29
29
|
description = "Provider package apache-airflow-providers-postgres for Apache Airflow"
|
30
30
|
readme = "README.rst"
|
31
31
|
authors = [
|
@@ -57,8 +57,8 @@ requires-python = "~=3.9"
|
|
57
57
|
# Make sure to run ``breeze static-checks --type update-providers-dependencies --all-files``
|
58
58
|
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
|
59
59
|
dependencies = [
|
60
|
-
"apache-airflow>=2.
|
61
|
-
"apache-airflow-providers-common-sql>=1.23.
|
60
|
+
"apache-airflow>=2.10.0",
|
61
|
+
"apache-airflow-providers-common-sql>=1.23.0",
|
62
62
|
"psycopg2-binary>=2.9.9",
|
63
63
|
"asyncpg>=0.30.0",
|
64
64
|
]
|
@@ -110,8 +110,8 @@ apache-airflow-providers-common-sql = {workspace = true}
|
|
110
110
|
apache-airflow-providers-standard = {workspace = true}
|
111
111
|
|
112
112
|
[project.urls]
|
113
|
-
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.
|
114
|
-
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.
|
113
|
+
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.2.0"
|
114
|
+
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.2.0/changelog.html"
|
115
115
|
"Bug Tracker" = "https://github.com/apache/airflow/issues"
|
116
116
|
"Source Code" = "https://github.com/apache/airflow"
|
117
117
|
"Slack Chat" = "https://s.apache.org/airflow-slack"
|
@@ -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.2.0"
|
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-postgres:{__version__}` needs Apache Airflow 2.
|
38
|
+
f"The package `apache-airflow-providers-postgres:{__version__}` needs Apache Airflow 2.10.0+"
|
39
39
|
)
|
@@ -1,773 +0,0 @@
|
|
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-postgres
|
27
|
-
------------------------------------------------------
|
28
|
-
|
29
|
-
`PostgreSQL <https://www.postgresql.org/>`__
|
30
|
-
|
31
|
-
|
32
|
-
This is detailed commit list of changes for versions provider package: ``postgres``.
|
33
|
-
For high-level changelog, see :doc:`package information including changelog <index>`.
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
6.1.3
|
38
|
-
.....
|
39
|
-
|
40
|
-
Latest change: 2025-04-14
|
41
|
-
|
42
|
-
================================================================================================== =========== ==================================================================================
|
43
|
-
Commit Committed Subject
|
44
|
-
================================================================================================== =========== ==================================================================================
|
45
|
-
`cb295c351a <https://github.com/apache/airflow/commit/cb295c351a016c0a10cab07f2a628b865cff3ca3>`__ 2025-04-14 ``remove superfluous else block (#49199)``
|
46
|
-
`2a7dea10f2 <https://github.com/apache/airflow/commit/2a7dea10f2b954a0b4106a9b9cc04fecd2d484b7>`__ 2025-04-14 ``Fix PostgresHook Json serialization (#49120)``
|
47
|
-
`4a8567b20b <https://github.com/apache/airflow/commit/4a8567b20bdd6555cbdc936d6674bf4fa390b0d5>`__ 2025-04-10 ``Prepare docs for Apr 2nd wave of providers (#49051)``
|
48
|
-
`7b2ec33c7a <https://github.com/apache/airflow/commit/7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f>`__ 2025-04-08 ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
|
49
|
-
`139673d3ce <https://github.com/apache/airflow/commit/139673d3ce5552c2cf8bcb2d202e97342c4b237c>`__ 2025-04-07 ``Remove fab from preinstalled providers (#48457)``
|
50
|
-
`67858fd7e7 <https://github.com/apache/airflow/commit/67858fd7e7ac82788854844c1e6ef5a35f1d0d23>`__ 2025-04-06 ``Improve documentation building iteration (#48760)``
|
51
|
-
================================================================================================== =========== ==================================================================================
|
52
|
-
|
53
|
-
6.1.2
|
54
|
-
.....
|
55
|
-
|
56
|
-
Latest change: 2025-04-06
|
57
|
-
|
58
|
-
================================================================================================== =========== ==============================================================================================
|
59
|
-
Commit Committed Subject
|
60
|
-
================================================================================================== =========== ==============================================================================================
|
61
|
-
`adbb062b50 <https://github.com/apache/airflow/commit/adbb062b50e2e128fe475a76b7ce10ec93c39ee2>`__ 2025-04-06 ``Prepare docs for Apr 1st wave of providers (#48828)``
|
62
|
-
`d4473555c0 <https://github.com/apache/airflow/commit/d4473555c0e7022e073489b7163d49102881a1a6>`__ 2025-04-02 ``Simplify tooling by switching completely to uv (#48223)``
|
63
|
-
`9114529d37 <https://github.com/apache/airflow/commit/9114529d37a47d559b3a91409673e4fc2d62a055>`__ 2025-03-31 ``Changed min version for common sql to 1.23.0 in apache-airflow-providers-postgres (#48416)``
|
64
|
-
`c762e17820 <https://github.com/apache/airflow/commit/c762e17820cae6b162caa3eec5123760e07d56cc>`__ 2025-03-26 ``Prepare docs for Mar 2nd wave of providers (#48383)``
|
65
|
-
`6adb2dbae4 <https://github.com/apache/airflow/commit/6adb2dbae47341eb61dbc62dbc56176d9aa83fd9>`__ 2025-03-25 ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
66
|
-
`243fe86d4b <https://github.com/apache/airflow/commit/243fe86d4b3e59bb12977b3e36ca3f2ed27ca0f8>`__ 2025-03-21 ``Move airflow sources to airflow-core package (#47798)``
|
67
|
-
`935d2831fe <https://github.com/apache/airflow/commit/935d2831fe8fd509b618a738bf00e0c34e186e11>`__ 2025-03-15 ``Remove links to x/twitter.com (#47801)``
|
68
|
-
================================================================================================== =========== ==============================================================================================
|
69
|
-
|
70
|
-
6.1.1
|
71
|
-
.....
|
72
|
-
|
73
|
-
Latest change: 2025-03-09
|
74
|
-
|
75
|
-
================================================================================================== =========== =====================================================================
|
76
|
-
Commit Committed Subject
|
77
|
-
================================================================================================== =========== =====================================================================
|
78
|
-
`492ecfe5c0 <https://github.com/apache/airflow/commit/492ecfe5c03102bfb710108038ebd5fc50cb55b5>`__ 2025-03-09 ``Prepare docs for Mar 1st wave of providers (#47545)``
|
79
|
-
`e4002c3305 <https://github.com/apache/airflow/commit/e4002c3305a757f5926f96c996e701e8f998a042>`__ 2025-03-05 ``Move tests_common package to devel-common project (#47281)``
|
80
|
-
`1addb55154 <https://github.com/apache/airflow/commit/1addb55154fbef31bfa021537cfbd4395696381c>`__ 2025-02-28 ``Improve documentation for updating provider dependencies (#47203)``
|
81
|
-
`c6c4f95ed9 <https://github.com/apache/airflow/commit/c6c4f95ed9e3220133815b9126c135e805637022>`__ 2025-02-25 ``Add legacy namespace packages to airflow.providers (#47064)``
|
82
|
-
`dbf8bb4092 <https://github.com/apache/airflow/commit/dbf8bb409223687c7d2ad10649a92d02c24bb3b4>`__ 2025-02-24 ``Remove extra whitespace in provider readme template (#46975)``
|
83
|
-
`b28c336e8b <https://github.com/apache/airflow/commit/b28c336e8b7aa1d69c0f9520b182b1b661377337>`__ 2025-02-21 ``Upgrade flit to 3.11.0 (#46938)``
|
84
|
-
================================================================================================== =========== =====================================================================
|
85
|
-
|
86
|
-
6.1.0
|
87
|
-
.....
|
88
|
-
|
89
|
-
Latest change: 2025-02-21
|
90
|
-
|
91
|
-
================================================================================================== =========== =========================================================================================================================
|
92
|
-
Commit Committed Subject
|
93
|
-
================================================================================================== =========== =========================================================================================================================
|
94
|
-
`5d87bddf0a <https://github.com/apache/airflow/commit/5d87bddf0aa5f485f3684c909fb95f461e5a2ab6>`__ 2025-02-21 ``Prepare docs for Feb 1st wave of providers (#46893)``
|
95
|
-
`4d5846f58f <https://github.com/apache/airflow/commit/4d5846f58fe0de9b43358c0be75dd72e968dacc4>`__ 2025-02-16 ``Move provider_tests to unit folder in provider tests (#46800)``
|
96
|
-
`e027457a24 <https://github.com/apache/airflow/commit/e027457a24d0c6235bfed9c2a8399f75342e82f1>`__ 2025-02-15 ``Removed the unused provider's distribution (#46608)``
|
97
|
-
`2fa86c36ae <https://github.com/apache/airflow/commit/2fa86c36ae4d8a42dccda40ca16f8dbebdee5836>`__ 2025-02-04 ``Bump psycopg2 to 2.9.9 to possibly avoid crash on Python 3.12 (#46431)``
|
98
|
-
`ee6bd7ee16 <https://github.com/apache/airflow/commit/ee6bd7ee162ff295b86d86fdd1b356c51b9bba78>`__ 2025-02-03 ``Fix doc issues found with recent moves (#46372)``
|
99
|
-
`16568e1766 <https://github.com/apache/airflow/commit/16568e176608fa2c65d0cd5d891f0a3cd1099396>`__ 2025-02-03 ``Revert "Improve example docs around SQLExecuteQueryOperator in Postgres/Oracle/Presto/Vertica/ODBC (#46352)" (#46368)``
|
100
|
-
`454afb5a4a <https://github.com/apache/airflow/commit/454afb5a4a0c2b092f9921e639b7ee56e37b2f00>`__ 2025-02-03 ``Improve example docs around SQLExecuteQueryOperator in Postgres/Oracle/Presto/Vertica/ODBC (#46352)``
|
101
|
-
`afc9ea869e <https://github.com/apache/airflow/commit/afc9ea869e8b9240a59afafc401fb28153aa334c>`__ 2025-01-26 ``Move PGVECTOR provider to new structure (#46051)``
|
102
|
-
`17d3a605f0 <https://github.com/apache/airflow/commit/17d3a605f0c4af7885d92a71dfadf52f0ce13fa5>`__ 2025-01-26 ``Fix escaping of special characters or reserved words as column names in dialects of common sql provider (#45640)``
|
103
|
-
`ccbd536d28 <https://github.com/apache/airflow/commit/ccbd536d28fa6d5285d59b50915d832e02ba141d>`__ 2025-01-24 ``Added ADR document describing why the notion of dialects is introduced (#45456)``
|
104
|
-
`1ab8f39084 <https://github.com/apache/airflow/commit/1ab8f39084aac94a2b1acd1d9b55cda11ac35021>`__ 2025-01-14 ``Bump minimum version of psycopg2-binary to 2.9.7 (#45635)``
|
105
|
-
`87c55b5145 <https://github.com/apache/airflow/commit/87c55b51457bf9dafbcbf541ff51940f0455fd15>`__ 2024-12-31 ``Introduce notion of dialects in DbApiHook (#41327)``
|
106
|
-
================================================================================================== =========== =========================================================================================================================
|
107
|
-
|
108
|
-
6.0.0
|
109
|
-
.....
|
110
|
-
|
111
|
-
Latest change: 2024-12-20
|
112
|
-
|
113
|
-
================================================================================================== =========== ===========================================================================================================
|
114
|
-
Commit Committed Subject
|
115
|
-
================================================================================================== =========== ===========================================================================================================
|
116
|
-
`2723508345 <https://github.com/apache/airflow/commit/2723508345d5cf074aeb673955ce72996785f2bc>`__ 2024-12-20 ``Prepare docs for Nov 1st wave of providers Dec 2024 (#45042)``
|
117
|
-
`35b927fe17 <https://github.com/apache/airflow/commit/35b927fe177065dad0e00c49d72b494e58b27ca8>`__ 2024-12-19 ``Update path of example dags in docs (#45069)``
|
118
|
-
`a10b3fccb0 <https://github.com/apache/airflow/commit/a10b3fccb09805397e607df4cd3ded6194d20170>`__ 2024-12-18 ``Allow configuration of sqlalchemy query parameter for JdbcHook and PostgresHook through extras (#44910)``
|
119
|
-
`4b38bed76c <https://github.com/apache/airflow/commit/4b38bed76c1ea5fe84a6bc678ce87e20d563adc0>`__ 2024-12-16 ``Bump min version of Providers to 2.9 (#44956)``
|
120
|
-
`163042fd3a <https://github.com/apache/airflow/commit/163042fd3a73b8290f2402c632fa98b1a8ab36ae>`__ 2024-12-06 ``Remove Provider Deprecations in Postgres (#44705)``
|
121
|
-
`1275fec92f <https://github.com/apache/airflow/commit/1275fec92fd7cd7135b100d66d41bdcb79ade29d>`__ 2024-11-24 ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
|
122
|
-
`4dfae23532 <https://github.com/apache/airflow/commit/4dfae23532d26ed838069c49d48f28c185e954c6>`__ 2024-11-15 ``Update DAG example links in multiple providers documents (#44034)``
|
123
|
-
`0393c1ffc8 <https://github.com/apache/airflow/commit/0393c1ffc8bb6b9513865e5b2c73a3b8eef29915>`__ 2024-11-14 ``Add basic asyncio support (#43944)``
|
124
|
-
================================================================================================== =========== ===========================================================================================================
|
125
|
-
|
126
|
-
5.14.0
|
127
|
-
......
|
128
|
-
|
129
|
-
Latest change: 2024-11-14
|
130
|
-
|
131
|
-
================================================================================================== =========== ========================================================================================
|
132
|
-
Commit Committed Subject
|
133
|
-
================================================================================================== =========== ========================================================================================
|
134
|
-
`a53d9f6d25 <https://github.com/apache/airflow/commit/a53d9f6d257f193ea5026ba4cd007d5ddeab968f>`__ 2024-11-14 ``Prepare docs for Nov 1st wave of providers (#44011)``
|
135
|
-
`e7194dff6a <https://github.com/apache/airflow/commit/e7194dff6a816bf3a721cbf579ceac19c11cd111>`__ 2024-11-13 ``Add support for semicolon stripping to DbApiHook, PrestoHook, and TrinoHook (#41916)``
|
136
|
-
`1363cc5f8c <https://github.com/apache/airflow/commit/1363cc5f8c11a3fbcd41e2da3ed6fbb7f257a14f>`__ 2024-11-08 ``Fix PostgresHook bug when getting AWS Redshift Serverless credentials (#43807)``
|
137
|
-
`43f3c31d28 <https://github.com/apache/airflow/commit/43f3c31d28dd8ebd8dcc8a42bd17f642e94313b3>`__ 2024-11-06 ``Add AWS Redshift Serverless support to PostgresHook (#43669)``
|
138
|
-
`d8c7d28411 <https://github.com/apache/airflow/commit/d8c7d28411bea04ae5771fc1e2973d92eb0a144e>`__ 2024-10-30 ``Start porting DAG definition code to the Task SDK (#43076)``
|
139
|
-
`b540eb0bfa <https://github.com/apache/airflow/commit/b540eb0bfa10309d3b57462223ae30331de6ce2c>`__ 2024-10-18 ``Add docs about 'cursor' extra param in Postgres Connection (#43134)``
|
140
|
-
`857ca4c06c <https://github.com/apache/airflow/commit/857ca4c06c9008593674cabdd28d3c30e3e7f97b>`__ 2024-10-09 ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
|
141
|
-
================================================================================================== =========== ========================================================================================
|
142
|
-
|
143
|
-
5.13.1
|
144
|
-
......
|
145
|
-
|
146
|
-
Latest change: 2024-10-09
|
147
|
-
|
148
|
-
================================================================================================== =========== ===================================================================================================================================================
|
149
|
-
Commit Committed Subject
|
150
|
-
================================================================================================== =========== ===================================================================================================================================================
|
151
|
-
`2bb8628463 <https://github.com/apache/airflow/commit/2bb862846358d1c5a59b354adb39bc68d5aeae5e>`__ 2024-10-09 ``Prepare docs for Oct 1st adhoc wave of providers (#42862)``
|
152
|
-
`ede7cb27fd <https://github.com/apache/airflow/commit/ede7cb27fd39e233889d127490a2255df8c5d27d>`__ 2024-09-30 ``Rename dataset related python variable names to asset (#41348)``
|
153
|
-
`6f986d2b6c <https://github.com/apache/airflow/commit/6f986d2b6c518f60eab175afb4c360aea9984d50>`__ 2024-09-29 ``Documentation change to highlight difference in usage between params and parameters attributes in SQLExecuteQueryOperator for Postgres (#42564)``
|
154
|
-
================================================================================================== =========== ===================================================================================================================================================
|
155
|
-
|
156
|
-
5.13.0
|
157
|
-
......
|
158
|
-
|
159
|
-
Latest change: 2024-09-21
|
160
|
-
|
161
|
-
================================================================================================== =========== =================================================================================
|
162
|
-
Commit Committed Subject
|
163
|
-
================================================================================================== =========== =================================================================================
|
164
|
-
`7628d47d04 <https://github.com/apache/airflow/commit/7628d47d0481966d9a9b25dfd4870b7a6797ebbf>`__ 2024-09-21 ``Prepare docs for Sep 1st wave of providers (#42387)``
|
165
|
-
`17c30b4f21 <https://github.com/apache/airflow/commit/17c30b4f21432d7fc419e048305315bba6d04522>`__ 2024-09-05 ``feat: log client db messages for provider postgres (#40171)``
|
166
|
-
`2e813eb87d <https://github.com/apache/airflow/commit/2e813eb87d7793d7bb2a2fbb4e485c896c1dc2c4>`__ 2024-09-04 ``Generalize caching of connection in DbApiHook to improve performance (#40751)``
|
167
|
-
================================================================================================== =========== =================================================================================
|
168
|
-
|
169
|
-
5.12.0
|
170
|
-
......
|
171
|
-
|
172
|
-
Latest change: 2024-08-19
|
173
|
-
|
174
|
-
================================================================================================== =========== =======================================================================
|
175
|
-
Commit Committed Subject
|
176
|
-
================================================================================================== =========== =======================================================================
|
177
|
-
`75fb7acbac <https://github.com/apache/airflow/commit/75fb7acbaca09a040067f0a5a37637ff44eb9e14>`__ 2024-08-19 ``Prepare docs for Aug 2nd wave of providers (#41559)``
|
178
|
-
`fcbff15bda <https://github.com/apache/airflow/commit/fcbff15bda151f70db0ca13fdde015bace5527c4>`__ 2024-08-12 ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
|
179
|
-
================================================================================================== =========== =======================================================================
|
180
|
-
|
181
|
-
5.11.3
|
182
|
-
......
|
183
|
-
|
184
|
-
Latest change: 2024-08-03
|
185
|
-
|
186
|
-
================================================================================================== =========== ============================================================
|
187
|
-
Commit Committed Subject
|
188
|
-
================================================================================================== =========== ============================================================
|
189
|
-
`d23881c648 <https://github.com/apache/airflow/commit/d23881c6489916113921dcedf85077441b44aaf3>`__ 2024-08-03 ``Prepare docs for Aug 1st wave of providers (#41230)``
|
190
|
-
`bef82d6ab3 <https://github.com/apache/airflow/commit/bef82d6ab38d627dc1b42981c90b9f8d36852f4c>`__ 2024-07-19 ``Clean up remaining getattr connection DbApiHook (#40665)``
|
191
|
-
`09a7bd1d58 <https://github.com/apache/airflow/commit/09a7bd1d585d2d306dd30435689f22b614fe0abf>`__ 2024-07-09 ``Prepare docs 1st wave July 2024 (#40644)``
|
192
|
-
`a62bd83188 <https://github.com/apache/airflow/commit/a62bd831885957c55b073bf309bc59a1d505e8fb>`__ 2024-06-27 ``Enable enforcing pydocstyle rule D213 in ruff. (#40448)``
|
193
|
-
================================================================================================== =========== ============================================================
|
194
|
-
|
195
|
-
5.11.2
|
196
|
-
......
|
197
|
-
|
198
|
-
Latest change: 2024-06-22
|
199
|
-
|
200
|
-
================================================================================================== =========== ==================================================================================
|
201
|
-
Commit Committed Subject
|
202
|
-
================================================================================================== =========== ==================================================================================
|
203
|
-
`6e5ae26382 <https://github.com/apache/airflow/commit/6e5ae26382b328e88907e8301d4b2352ef8524c5>`__ 2024-06-22 ``Prepare docs 2nd wave June 2024 (#40273)``
|
204
|
-
`c0f27094ab <https://github.com/apache/airflow/commit/c0f27094abc2d09d626ef8a38cf570274a0a42ff>`__ 2024-06-04 ``iMPlement per-provider tests with lowest-direct dependency resolution (#39946)``
|
205
|
-
================================================================================================== =========== ==================================================================================
|
206
|
-
|
207
|
-
5.11.1
|
208
|
-
......
|
209
|
-
|
210
|
-
Latest change: 2024-05-26
|
211
|
-
|
212
|
-
================================================================================================== =========== ====================================================================================
|
213
|
-
Commit Committed Subject
|
214
|
-
================================================================================================== =========== ====================================================================================
|
215
|
-
`34500f3a2f <https://github.com/apache/airflow/commit/34500f3a2fa4652272bc831e3c18fd2a6a2da5ef>`__ 2024-05-26 ``Prepare docs 3rd wave May 2024 (#39738)``
|
216
|
-
`cb57a677be <https://github.com/apache/airflow/commit/cb57a677be8e189ad3c4a077c0d476cb9f250df2>`__ 2024-05-22 ``removing deprecation postgres (#39706)``
|
217
|
-
`2b1a2f8d56 <https://github.com/apache/airflow/commit/2b1a2f8d561e569df194c4ee0d3a18930738886e>`__ 2024-05-11 ``Reapply templates for all providers (#39554)``
|
218
|
-
`2c05187b07 <https://github.com/apache/airflow/commit/2c05187b07baf7c41a32b18fabdbb3833acc08eb>`__ 2024-05-10 ``Faster 'airflow_version' imports (#39552)``
|
219
|
-
`4ada175e3d <https://github.com/apache/airflow/commit/4ada175e3dc75b92dd13840d449917772a9b7c89>`__ 2024-05-09 ``fix: use 'sqlalchemy_url' property in 'get_uri' for postgresql provider (#38831)``
|
220
|
-
`73918925ed <https://github.com/apache/airflow/commit/73918925edaf1c94790a6ad8bec01dec60accfa1>`__ 2024-05-08 ``Simplify 'airflow_version' imports (#39497)``
|
221
|
-
================================================================================================== =========== ====================================================================================
|
222
|
-
|
223
|
-
5.11.0
|
224
|
-
......
|
225
|
-
|
226
|
-
Latest change: 2024-05-01
|
227
|
-
|
228
|
-
================================================================================================== =========== =======================================================================================================
|
229
|
-
Commit Committed Subject
|
230
|
-
================================================================================================== =========== =======================================================================================================
|
231
|
-
`fe4605a10e <https://github.com/apache/airflow/commit/fe4605a10e26f1b8a180979ba5765d1cb7fb0111>`__ 2024-05-01 ``Prepare docs 1st wave May 2024 (#39328)``
|
232
|
-
`a8afa2ef77 <https://github.com/apache/airflow/commit/a8afa2ef77727223dad4780cba5161ba9e0a8bd4>`__ 2024-04-25 ``Fix schema assigment in PostgresOperator (#39264)``
|
233
|
-
`ead9b00f7c <https://github.com/apache/airflow/commit/ead9b00f7cd5acecf9d575c459bb62633088436a>`__ 2024-04-25 ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
|
234
|
-
`7ab24c7723 <https://github.com/apache/airflow/commit/7ab24c7723c65c90626b10db63444b88c0380e14>`__ 2024-04-12 ``Always use the executemany method when inserting rows in DbApiHook as it's way much faster (#38715)``
|
235
|
-
`5fa80b6aea <https://github.com/apache/airflow/commit/5fa80b6aea60f93cdada66f160e2b54f723865ca>`__ 2024-04-10 ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
|
236
|
-
`b5b972a106 <https://github.com/apache/airflow/commit/b5b972a1068e19b09d48ec4d7663dd1d996d594f>`__ 2024-03-18 ``Update yanked versions in providers changelogs (#38262)``
|
237
|
-
================================================================================================== =========== =======================================================================================================
|
238
|
-
|
239
|
-
5.10.2
|
240
|
-
......
|
241
|
-
|
242
|
-
Latest change: 2024-03-04
|
243
|
-
|
244
|
-
================================================================================================== =========== ==================================================================
|
245
|
-
Commit Committed Subject
|
246
|
-
================================================================================================== =========== ==================================================================
|
247
|
-
`83316b8158 <https://github.com/apache/airflow/commit/83316b81584c9e516a8142778fc509f19d95cc3e>`__ 2024-03-04 ``Prepare docs 1st wave (RC1) March 2024 (#37876)``
|
248
|
-
`b52b227c04 <https://github.com/apache/airflow/commit/b52b227c048674117e11d720dfd01c4eeacea854>`__ 2024-02-26 ``Implement AIP-60 Dataset URI formats (#37005)``
|
249
|
-
`5a0be392e6 <https://github.com/apache/airflow/commit/5a0be392e66f8e5426ba3478621115e92fcf245b>`__ 2024-02-16 ``Add comment about versions updated by release manager (#37488)``
|
250
|
-
`e346253760 <https://github.com/apache/airflow/commit/e3462537608854368b04f58c25835c8097dec51c>`__ 2024-02-15 ``Fix remaining D401 checks (#37434)``
|
251
|
-
================================================================================================== =========== ==================================================================
|
252
|
-
|
253
|
-
5.10.1
|
254
|
-
......
|
255
|
-
|
256
|
-
Latest change: 2024-02-12
|
257
|
-
|
258
|
-
================================================================================================== =========== ====================================================================================
|
259
|
-
Commit Committed Subject
|
260
|
-
================================================================================================== =========== ====================================================================================
|
261
|
-
`bfb054e9e8 <https://github.com/apache/airflow/commit/bfb054e9e867b8b9a6a449e43bfba97f645e025e>`__ 2024-02-12 ``Prepare docs 1st wave of Providers February 2024 (#37326)``
|
262
|
-
`dec2662190 <https://github.com/apache/airflow/commit/dec2662190dd4480d0c631da733e19d2ec9a479d>`__ 2024-01-30 ``feat: Switch all class, functions, methods deprecations to decorators (#36876)``
|
263
|
-
`cead3da4a6 <https://github.com/apache/airflow/commit/cead3da4a6f483fa626b81efd27a24dcb5a36ab0>`__ 2024-01-26 ``Add docs for RC2 wave of providers for 2nd round of Jan 2024 (#37019)``
|
264
|
-
`2b4da0101f <https://github.com/apache/airflow/commit/2b4da0101f0314989d148c3c8a02c87e87048974>`__ 2024-01-22 ``Prepare docs 2nd wave of Providers January 2024 (#36945)``
|
265
|
-
`c439ab87c4 <https://github.com/apache/airflow/commit/c439ab87c421aaa6bd5d8074780e4f63606a1ef1>`__ 2024-01-10 ``Standardize airflow build process and switch to Hatchling build backend (#36537)``
|
266
|
-
`f7b663d9af <https://github.com/apache/airflow/commit/f7b663d9aff472d0a419e16c262fbae2a8a69ce1>`__ 2024-01-07 ``Run mypy checks for full packages in CI (#36638)``
|
267
|
-
`19ebcac239 <https://github.com/apache/airflow/commit/19ebcac2395ef9a6b6ded3a2faa29dc960c1e635>`__ 2024-01-07 ``Prepare docs 1st wave of Providers January 2024 (#36640)``
|
268
|
-
`6937ae7647 <https://github.com/apache/airflow/commit/6937ae76476b3bc869ef912d000bcc94ad642db1>`__ 2023-12-30 ``Speed up autocompletion of Breeze by simplifying provider state (#36499)``
|
269
|
-
================================================================================================== =========== ====================================================================================
|
270
|
-
|
271
|
-
5.10.0
|
272
|
-
......
|
273
|
-
|
274
|
-
Latest change: 2023-12-23
|
275
|
-
|
276
|
-
================================================================================================== =========== ==================================================================================
|
277
|
-
Commit Committed Subject
|
278
|
-
================================================================================================== =========== ==================================================================================
|
279
|
-
`b15d5578da <https://github.com/apache/airflow/commit/b15d5578dac73c4c6a3ca94d90ab0dc9e9e74c9c>`__ 2023-12-23 ``Re-apply updated version numbers to 2nd wave of providers in December (#36380)``
|
280
|
-
`f5883d6e7b <https://github.com/apache/airflow/commit/f5883d6e7be83f1ab9468e67164b7ac381fdb49f>`__ 2023-12-23 ``Prepare 2nd wave of providers in December (#36373)``
|
281
|
-
`f84eb2ab6f <https://github.com/apache/airflow/commit/f84eb2ab6fe777938f85a5fbb2a0b8a6dc07b9bc>`__ 2023-12-21 ``Make "placeholder" of ODBC configurable in UI (#36000)``
|
282
|
-
`cd476acd8f <https://github.com/apache/airflow/commit/cd476acd8f1684f613c20dddaa9e988bcfb3ac1c>`__ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)``
|
283
|
-
================================================================================================== =========== ==================================================================================
|
284
|
-
|
285
|
-
5.9.0
|
286
|
-
.....
|
287
|
-
|
288
|
-
Latest change: 2023-12-08
|
289
|
-
|
290
|
-
================================================================================================== =========== =======================================================================
|
291
|
-
Commit Committed Subject
|
292
|
-
================================================================================================== =========== =======================================================================
|
293
|
-
`999b70178a <https://github.com/apache/airflow/commit/999b70178a1f5d891fd2c88af4831a4ba4c2cbc9>`__ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)``
|
294
|
-
`d0918d77ee <https://github.com/apache/airflow/commit/d0918d77ee05ab08c83af6956e38584a48574590>`__ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
|
295
|
-
`0b23d5601c <https://github.com/apache/airflow/commit/0b23d5601c6f833392b0ea816e651dcb13a14685>`__ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)``
|
296
|
-
`99534e47f3 <https://github.com/apache/airflow/commit/99534e47f330ce0efb96402629dda5b2a4f16e8f>`__ 2023-11-19 ``Use reproducible builds for provider packages (#35693)``
|
297
|
-
`99df205f42 <https://github.com/apache/airflow/commit/99df205f42a754aa67f80b5983e1d228ff23267f>`__ 2023-11-16 ``Fix and reapply templates for provider documentation (#35686)``
|
298
|
-
================================================================================================== =========== =======================================================================
|
299
|
-
|
300
|
-
5.8.0
|
301
|
-
.....
|
302
|
-
|
303
|
-
Latest change: 2023-11-08
|
304
|
-
|
305
|
-
================================================================================================== =========== ==================================================================
|
306
|
-
Commit Committed Subject
|
307
|
-
================================================================================================== =========== ==================================================================
|
308
|
-
`1b059c57d6 <https://github.com/apache/airflow/commit/1b059c57d6d57d198463e5388138bee8a08591b1>`__ 2023-11-08 ``Prepare docs 1st wave of Providers November 2023 (#35537)``
|
309
|
-
`a777bf89e2 <https://github.com/apache/airflow/commit/a777bf89e2a1a3a19fbb5e8c879fa26697efc38a>`__ 2023-11-07 ``Refactor cursor retrieval in PostgresHook. (#35498)``
|
310
|
-
`706878ec35 <https://github.com/apache/airflow/commit/706878ec354cf867440c367a95c85753c19e54de>`__ 2023-11-04 ``Remove empty lines in generated changelog (#35436)``
|
311
|
-
`052e26ad47 <https://github.com/apache/airflow/commit/052e26ad473a9d50f0b96456ed094f2087ee4434>`__ 2023-11-04 ``Change security.rst to use includes in providers (#35435)``
|
312
|
-
`d1c58d86de <https://github.com/apache/airflow/commit/d1c58d86de1267d9268a1efe0a0c102633c051a1>`__ 2023-10-28 ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
|
313
|
-
`3592ff4046 <https://github.com/apache/airflow/commit/3592ff40465032fa041600be740ee6bc25e7c242>`__ 2023-10-28 ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
|
314
|
-
`dd7ba3cae1 <https://github.com/apache/airflow/commit/dd7ba3cae139cb10d71c5ebc25fc496c67ee784e>`__ 2023-10-19 ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
|
315
|
-
================================================================================================== =========== ==================================================================
|
316
|
-
|
317
|
-
5.7.1
|
318
|
-
.....
|
319
|
-
|
320
|
-
Latest change: 2023-10-18
|
321
|
-
|
322
|
-
================================================================================================== =========== ==============================================================================================
|
323
|
-
Commit Committed Subject
|
324
|
-
================================================================================================== =========== ==============================================================================================
|
325
|
-
`39e611b43b <https://github.com/apache/airflow/commit/39e611b43b06df0582f0c69de824c4657c3423eb>`__ 2023-10-18 ``Prepare docs 2nd wave of Providers in October 2023 (#35020)``
|
326
|
-
`6bb6ae8f9f <https://github.com/apache/airflow/commit/6bb6ae8f9fa02c7b7c6d3fe0c6efe09c7cfb3294>`__ 2023-10-16 ``'PostgresOperator' should not overwrite 'SQLExecuteQueryOperator.template_fields' (#34969)``
|
327
|
-
================================================================================================== =========== ==============================================================================================
|
328
|
-
|
329
|
-
5.7.0
|
330
|
-
.....
|
331
|
-
|
332
|
-
Latest change: 2023-10-13
|
333
|
-
|
334
|
-
================================================================================================== =========== ==================================================================
|
335
|
-
Commit Committed Subject
|
336
|
-
================================================================================================== =========== ==================================================================
|
337
|
-
`e9987d5059 <https://github.com/apache/airflow/commit/e9987d50598f70d84cbb2a5d964e21020e81c080>`__ 2023-10-13 ``Prepare docs 1st wave of Providers in October 2023 (#34916)``
|
338
|
-
`39cbd6b231 <https://github.com/apache/airflow/commit/39cbd6b231c75ec432924d8508f15a4fe3c68757>`__ 2023-10-08 ``Add 'get_ui_field_behaviour()' method to PostgresHook (#34811)``
|
339
|
-
`0c8e30e43b <https://github.com/apache/airflow/commit/0c8e30e43b70e9d033e1686b327eb00aab82479c>`__ 2023-10-05 ``Bump min airflow version of providers (#34728)``
|
340
|
-
================================================================================================== =========== ==================================================================
|
341
|
-
|
342
|
-
5.6.1
|
343
|
-
.....
|
344
|
-
|
345
|
-
Latest change: 2023-09-08
|
346
|
-
|
347
|
-
================================================================================================== =========== ======================================================================================================
|
348
|
-
Commit Committed Subject
|
349
|
-
================================================================================================== =========== ======================================================================================================
|
350
|
-
`21990ed894 <https://github.com/apache/airflow/commit/21990ed8943ee4dc6e060ee2f11648490c714a3b>`__ 2023-09-08 ``Prepare docs for 09 2023 - 1st wave of Providers (#34201)``
|
351
|
-
`9d8c77e447 <https://github.com/apache/airflow/commit/9d8c77e447f5515b9a6aa85fa72511a86a128c28>`__ 2023-08-27 ``Improve modules import in Airflow providers by some of them into a type-checking block (#33754)``
|
352
|
-
`6d182beec6 <https://github.com/apache/airflow/commit/6d182beec6e86b372c37fb164a31c2f8811d8c03>`__ 2023-08-26 ``Use a single statement with multiple contexts instead of nested statements in providers (#33768)``
|
353
|
-
`b11525702c <https://github.com/apache/airflow/commit/b11525702c72cb53034aa29ccd6d0e1161ac475c>`__ 2023-08-26 ``Use literal dict instead of calling dict() in providers (#33761)``
|
354
|
-
================================================================================================== =========== ======================================================================================================
|
355
|
-
|
356
|
-
5.6.0
|
357
|
-
.....
|
358
|
-
|
359
|
-
Latest change: 2023-07-29
|
360
|
-
|
361
|
-
================================================================================================== =========== ================================================================================
|
362
|
-
Commit Committed Subject
|
363
|
-
================================================================================================== =========== ================================================================================
|
364
|
-
`d06b7af69a <https://github.com/apache/airflow/commit/d06b7af69a65c50321ba2a9904551f3b8affc7f1>`__ 2023-07-29 ``Prepare docs for July 2023 3rd wave of Providers (#32875)``
|
365
|
-
`6b113816f5 <https://github.com/apache/airflow/commit/6b113816f509980ce5cd9389305a66b4203d8018>`__ 2023-07-26 ``openlineage, postgres: add OpenLineage support for Postgres (#31617)``
|
366
|
-
`73b90c48b1 <https://github.com/apache/airflow/commit/73b90c48b1933b49086d34176527947bd727ec85>`__ 2023-07-21 ``Allow configuration to be contributed by providers (#32604)``
|
367
|
-
`e01323635a <https://github.com/apache/airflow/commit/e01323635a88ecf313a415ea41d32d6d28fa0794>`__ 2023-07-13 ``Add deprecation info to the providers modules and classes docstring (#32536)``
|
368
|
-
================================================================================================== =========== ================================================================================
|
369
|
-
|
370
|
-
5.5.2
|
371
|
-
.....
|
372
|
-
|
373
|
-
Latest change: 2023-07-06
|
374
|
-
|
375
|
-
================================================================================================== =========== ================================================================================
|
376
|
-
Commit Committed Subject
|
377
|
-
================================================================================================== =========== ================================================================================
|
378
|
-
`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`__ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
|
379
|
-
`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`__ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)``
|
380
|
-
`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`__ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)``
|
381
|
-
`56eae9c9a4 <https://github.com/apache/airflow/commit/56eae9c9a4b784e7b239335560c31ed30f57e0a1>`__ 2023-07-04 ``Deprecate 'runtime_parameters' in favor of options in 'hook_params' (#32345)``
|
382
|
-
`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`__ 2023-06-27 ``Improve provider documentation and README structure (#32125)``
|
383
|
-
================================================================================================== =========== ================================================================================
|
384
|
-
|
385
|
-
5.5.1
|
386
|
-
.....
|
387
|
-
|
388
|
-
Latest change: 2023-06-20
|
389
|
-
|
390
|
-
================================================================================================== =========== =============================================================
|
391
|
-
Commit Committed Subject
|
392
|
-
================================================================================================== =========== =============================================================
|
393
|
-
`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`__ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)``
|
394
|
-
`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`__ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)``
|
395
|
-
`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`__ 2023-06-05 ``Improve docstrings in providers (#31681)``
|
396
|
-
`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`__ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)``
|
397
|
-
================================================================================================== =========== =============================================================
|
398
|
-
|
399
|
-
5.5.0
|
400
|
-
.....
|
401
|
-
|
402
|
-
Latest change: 2023-05-19
|
403
|
-
|
404
|
-
================================================================================================== =========== ======================================================================================
|
405
|
-
Commit Committed Subject
|
406
|
-
================================================================================================== =========== ======================================================================================
|
407
|
-
`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`__ 2023-05-19 ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
|
408
|
-
`abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`__ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)``
|
409
|
-
`f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`__ 2023-05-18 ``Fixing circular import error in providers caused by airflow version check (#31379)``
|
410
|
-
`7ebda3898d <https://github.com/apache/airflow/commit/7ebda3898db2eee72d043a9565a674dea72cd8fa>`__ 2023-05-17 ``Fix missing line in index.rst for provider documentation (#31343)``
|
411
|
-
`d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`__ 2023-05-16 ``Prepare docs for May 2023 wave of Providers (#31252)``
|
412
|
-
`0a30706aa7 <https://github.com/apache/airflow/commit/0a30706aa7c581905ca99a8b6e2f05960d480729>`__ 2023-05-03 ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)``
|
413
|
-
`eef5bc7f16 <https://github.com/apache/airflow/commit/eef5bc7f166dc357fea0cc592d39714b1a5e3c14>`__ 2023-05-03 ``Add full automation for min Airflow version for providers (#30994)``
|
414
|
-
`a7eb32a5b2 <https://github.com/apache/airflow/commit/a7eb32a5b222e236454d3e474eec478ded7c368d>`__ 2023-04-30 ``Bump minimum Airflow version in providers (#30917)``
|
415
|
-
`d23a3bbed8 <https://github.com/apache/airflow/commit/d23a3bbed89ae04369983f21455bf85ccc1ae1cb>`__ 2023-04-04 ``Add mechanism to suspend providers (#30422)``
|
416
|
-
`2b92c3c74d <https://github.com/apache/airflow/commit/2b92c3c74d3259ebac714f157c525836f0af50f0>`__ 2023-01-05 ``Fix providers documentation formatting (#28754)``
|
417
|
-
================================================================================================== =========== ======================================================================================
|
418
|
-
|
419
|
-
5.4.0
|
420
|
-
.....
|
421
|
-
|
422
|
-
Latest change: 2023-01-02
|
423
|
-
|
424
|
-
================================================================================================== =========== ========================================================================
|
425
|
-
Commit Committed Subject
|
426
|
-
================================================================================================== =========== ========================================================================
|
427
|
-
`5246c009c5 <https://github.com/apache/airflow/commit/5246c009c557b4f6bdf1cd62bf9b89a2da63f630>`__ 2023-01-02 ``Prepare docs for Jan 2023 wave of Providers (#28651)``
|
428
|
-
`cfd8bd9344 <https://github.com/apache/airflow/commit/cfd8bd9344a6ed17614a0da5453a0ae39a1d49dc>`__ 2022-12-12 ``Bring back psycopg2-binary as dependency instead of psycopg (#28316)``
|
429
|
-
`c8e348dcb0 <https://github.com/apache/airflow/commit/c8e348dcb0bae27e98d68545b59388c9f91fc382>`__ 2022-12-05 ``Add automated version replacement in example dag indexes (#28090)``
|
430
|
-
================================================================================================== =========== ========================================================================
|
431
|
-
|
432
|
-
5.3.1
|
433
|
-
.....
|
434
|
-
|
435
|
-
Latest change: 2022-11-26
|
436
|
-
|
437
|
-
================================================================================================== =========== ================================================================
|
438
|
-
Commit Committed Subject
|
439
|
-
================================================================================================== =========== ================================================================
|
440
|
-
`25bdbc8e67 <https://github.com/apache/airflow/commit/25bdbc8e6768712bad6043618242eec9c6632618>`__ 2022-11-26 ``Updated docs for RC3 wave of providers (#27937)``
|
441
|
-
`2e20e9f7eb <https://github.com/apache/airflow/commit/2e20e9f7ebf5f43bf27069f4c0063cdd72e6b2e2>`__ 2022-11-24 ``Prepare for follow-up relase for November providers (#27774)``
|
442
|
-
`80c327bd3b <https://github.com/apache/airflow/commit/80c327bd3b45807ff2e38d532325bccd6fe0ede0>`__ 2022-11-24 ``Bump common.sql provider to 1.3.1 (#27888)``
|
443
|
-
================================================================================================== =========== ================================================================
|
444
|
-
|
445
|
-
5.3.0
|
446
|
-
.....
|
447
|
-
|
448
|
-
Latest change: 2022-11-15
|
449
|
-
|
450
|
-
================================================================================================== =========== =========================================================================================================
|
451
|
-
Commit Committed Subject
|
452
|
-
================================================================================================== =========== =========================================================================================================
|
453
|
-
`12c3c39d1a <https://github.com/apache/airflow/commit/12c3c39d1a816c99c626fe4c650e88cf7b1cc1bc>`__ 2022-11-15 ``pRepare docs for November 2022 wave of Providers (#27613)``
|
454
|
-
`d7d206137b <https://github.com/apache/airflow/commit/d7d206137b2ff792b227e3549fcdf60469108992>`__ 2022-11-10 ``PostgresHook: Added ON CONFLICT DO NOTHING statement when all target fields are primary keys (#26661)``
|
455
|
-
`39caf1d5bc <https://github.com/apache/airflow/commit/39caf1d5bc5ec5ff653cf00b25d45e176709b59e>`__ 2022-10-31 ``Rename schema to database in PostgresHook (#26744)``
|
456
|
-
`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`__ 2022-10-27 ``Update old style typing (#26872)``
|
457
|
-
`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`__ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)``
|
458
|
-
`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`__ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)``
|
459
|
-
`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`__ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)``
|
460
|
-
================================================================================================== =========== =========================================================================================================
|
461
|
-
|
462
|
-
5.2.2
|
463
|
-
.....
|
464
|
-
|
465
|
-
Latest change: 2022-09-28
|
466
|
-
|
467
|
-
================================================================================================== =========== ====================================================================================
|
468
|
-
Commit Committed Subject
|
469
|
-
================================================================================================== =========== ====================================================================================
|
470
|
-
`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`__ 2022-09-28 ``Update docs for September Provider's release (#26731)``
|
471
|
-
`685f523044 <https://github.com/apache/airflow/commit/685f5230440d5d1c538acd80cdb0622f2791fad6>`__ 2022-09-27 ``Revert "Rename schema to database in 'PostgresHook' (#26436)" (#26734)``
|
472
|
-
`642375f97d <https://github.com/apache/airflow/commit/642375f97de133edba1a6c1fa9397d840e8b5936>`__ 2022-09-27 ``Rename schema to database in 'PostgresHook' (#26436)``
|
473
|
-
`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`__ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
|
474
|
-
================================================================================================== =========== ====================================================================================
|
475
|
-
|
476
|
-
5.2.1
|
477
|
-
.....
|
478
|
-
|
479
|
-
Latest change: 2022-09-05
|
480
|
-
|
481
|
-
================================================================================================== =========== ===========================================================================
|
482
|
-
Commit Committed Subject
|
483
|
-
================================================================================================== =========== ===========================================================================
|
484
|
-
`25d0baa4ee <https://github.com/apache/airflow/commit/25d0baa4ee69769ff339931f76ebace28c4315f2>`__ 2022-09-05 ``Prepare bug-fix release of providers out of band (#26109)``
|
485
|
-
`54e7d20176 <https://github.com/apache/airflow/commit/54e7d20176a08ecee659cdd9844c75f4f7570a11>`__ 2022-09-05 ``Bump dep on common-sql to fix issue with SQLTableCheckOperator (#26143)``
|
486
|
-
`14d56a5a9e <https://github.com/apache/airflow/commit/14d56a5a9e78580c53cf85db504464daccffe21c>`__ 2022-08-23 ``postgres provider: use non-binary psycopg2 (#25710)``
|
487
|
-
`ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`__ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)``
|
488
|
-
================================================================================================== =========== ===========================================================================
|
489
|
-
|
490
|
-
5.2.0
|
491
|
-
.....
|
492
|
-
|
493
|
-
Latest change: 2022-08-10
|
494
|
-
|
495
|
-
================================================================================================== =========== ============================================================================
|
496
|
-
Commit Committed Subject
|
497
|
-
================================================================================================== =========== ============================================================================
|
498
|
-
`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`__ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)``
|
499
|
-
`4eb0a410bb <https://github.com/apache/airflow/commit/4eb0a410bb2a9c3d195da0ce4e129c401ad25174>`__ 2022-08-02 ``Use only public AwsHook's methods during IAM authorization (#25424)``
|
500
|
-
`df00436569 <https://github.com/apache/airflow/commit/df00436569bb6fb79ce8c0b7ca71dddf02b854ef>`__ 2022-07-22 ``Unify DbApiHook.run() method with the methods which override it (#23971)``
|
501
|
-
================================================================================================== =========== ============================================================================
|
502
|
-
|
503
|
-
5.1.0
|
504
|
-
.....
|
505
|
-
|
506
|
-
Latest change: 2022-07-13
|
507
|
-
|
508
|
-
================================================================================================== =========== ==================================================================
|
509
|
-
Commit Committed Subject
|
510
|
-
================================================================================================== =========== ==================================================================
|
511
|
-
`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`__ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)``
|
512
|
-
`46bbfdade0 <https://github.com/apache/airflow/commit/46bbfdade0638cb8a5d187e47034b84e68ddf762>`__ 2022-07-07 ``Move all SQL classes to common-sql provider (#24836)``
|
513
|
-
`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`__ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)``
|
514
|
-
`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`__ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)``
|
515
|
-
`08b675cf66 <https://github.com/apache/airflow/commit/08b675cf6642171cb1c5ddfb09607b541db70b29>`__ 2022-06-13 ``Fix links to sources for examples (#24386)``
|
516
|
-
================================================================================================== =========== ==================================================================
|
517
|
-
|
518
|
-
5.0.0
|
519
|
-
.....
|
520
|
-
|
521
|
-
Latest change: 2022-06-09
|
522
|
-
|
523
|
-
================================================================================================== =========== ==================================================================================
|
524
|
-
Commit Committed Subject
|
525
|
-
================================================================================================== =========== ==================================================================================
|
526
|
-
`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`__ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)``
|
527
|
-
`717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`__ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)``
|
528
|
-
`aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`__ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)``
|
529
|
-
`027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`__ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
|
530
|
-
`c60bb9edc0 <https://github.com/apache/airflow/commit/c60bb9edc0c9b55a2824eae879af8a4a90ccdd2d>`__ 2022-06-03 ``Migrate Postgres example DAGs to new design #22458 (#24148)``
|
531
|
-
`b2c31ee3fa <https://github.com/apache/airflow/commit/b2c31ee3fab437bfbe543c7fe742b9e6c38ffb2a>`__ 2022-05-19 ``postgres_operator_howto_guide.rst (#23789)``
|
532
|
-
================================================================================================== =========== ==================================================================================
|
533
|
-
|
534
|
-
4.1.0
|
535
|
-
.....
|
536
|
-
|
537
|
-
Latest change: 2022-03-22
|
538
|
-
|
539
|
-
================================================================================================== =========== ====================================================================
|
540
|
-
Commit Committed Subject
|
541
|
-
================================================================================================== =========== ====================================================================
|
542
|
-
`d7dbfb7e26 <https://github.com/apache/airflow/commit/d7dbfb7e26a50130d3550e781dc71a5fbcaeb3d2>`__ 2022-03-22 ``Add documentation for bugfix release of Providers (#22383)``
|
543
|
-
`0ec56775df <https://github.com/apache/airflow/commit/0ec56775df66063cab807d886e412ebf88c572bf>`__ 2022-03-18 ``adds ability to pass config params to postgres operator (#21551)``
|
544
|
-
================================================================================================== =========== ====================================================================
|
545
|
-
|
546
|
-
4.0.1
|
547
|
-
.....
|
548
|
-
|
549
|
-
Latest change: 2022-03-14
|
550
|
-
|
551
|
-
================================================================================================== =========== ====================================================================
|
552
|
-
Commit Committed Subject
|
553
|
-
================================================================================================== =========== ====================================================================
|
554
|
-
`16adc035b1 <https://github.com/apache/airflow/commit/16adc035b1ecdf533f44fbb3e32bea972127bb71>`__ 2022-03-14 ``Add documentation for Classifier release for March 2022 (#22226)``
|
555
|
-
================================================================================================== =========== ====================================================================
|
556
|
-
|
557
|
-
4.0.0
|
558
|
-
.....
|
559
|
-
|
560
|
-
Latest change: 2022-03-07
|
561
|
-
|
562
|
-
================================================================================================== =========== ========================================================
|
563
|
-
Commit Committed Subject
|
564
|
-
================================================================================================== =========== ========================================================
|
565
|
-
`f5b96315fe <https://github.com/apache/airflow/commit/f5b96315fe65b99c0e2542831ff73a3406c4232d>`__ 2022-03-07 ``Add documentation for Feb Providers release (#22056)``
|
566
|
-
`59c450ee54 <https://github.com/apache/airflow/commit/59c450ee5425a2d23ef813dbf219cde14df7c85c>`__ 2022-02-25 ``Make DbApiHook use get_uri from Connection (#21764)``
|
567
|
-
`fd1bb36a49 <https://github.com/apache/airflow/commit/fd1bb36a49e05622d8ed0b20281aa2b5275c32af>`__ 2022-02-10 ``Update link in Postgres connection doc (#21490)``
|
568
|
-
================================================================================================== =========== ========================================================
|
569
|
-
|
570
|
-
3.0.0
|
571
|
-
.....
|
572
|
-
|
573
|
-
Latest change: 2022-02-08
|
574
|
-
|
575
|
-
================================================================================================== =========== =================================================================================
|
576
|
-
Commit Committed Subject
|
577
|
-
================================================================================================== =========== =================================================================================
|
578
|
-
`d94fa37830 <https://github.com/apache/airflow/commit/d94fa378305957358b910cfb1fe7cb14bc793804>`__ 2022-02-08 ``Fixed changelog for January 2022 (delayed) provider's release (#21439)``
|
579
|
-
`8f81b9a01c <https://github.com/apache/airflow/commit/8f81b9a01c7708a282271f9afd6b16a91011f105>`__ 2022-02-08 ``Add conditional 'template_fields_renderers' check for new SQL lexers (#21403)``
|
580
|
-
`6c3a67d4fc <https://github.com/apache/airflow/commit/6c3a67d4fccafe4ab6cd9ec8c7bacf2677f17038>`__ 2022-02-05 ``Add documentation for January 2021 providers release (#21257)``
|
581
|
-
`39e395f981 <https://github.com/apache/airflow/commit/39e395f9816c04ef2f033eb0b4f635fc3018d803>`__ 2022-02-04 ``Add more SQL template fields renderers (#21237)``
|
582
|
-
`e07139ab73 <https://github.com/apache/airflow/commit/e07139ab73ebf8d7ebd46655a304708f13a440ac>`__ 2022-01-30 ``Replaces the usage of postgres:// with postgresql:// (#21205)``
|
583
|
-
`602abe8394 <https://github.com/apache/airflow/commit/602abe8394fafe7de54df7e73af56de848cdf617>`__ 2022-01-20 ``Remove ':type' lines now sphinx-autoapi supports typehints (#20951)``
|
584
|
-
`f77417eb0d <https://github.com/apache/airflow/commit/f77417eb0d3f12e4849d80645325c02a48829278>`__ 2021-12-31 ``Fix K8S changelog to be PyPI-compatible (#20614)``
|
585
|
-
`97496ba2b4 <https://github.com/apache/airflow/commit/97496ba2b41063fa24393c58c5c648a0cdb5a7f8>`__ 2021-12-31 ``Update documentation for provider December 2021 release (#20523)``
|
586
|
-
`83f8e178ba <https://github.com/apache/airflow/commit/83f8e178ba7a3d4ca012c831a5bfc2cade9e812d>`__ 2021-12-31 ``Even more typing in operators (template_fields/ext) (#20608)``
|
587
|
-
`c84b435cc9 <https://github.com/apache/airflow/commit/c84b435cc9c4fbb4b06b4e7288cac6acd753555e>`__ 2021-12-30 ``Fix mypy errors in postgres/hooks and postgres/operators (#20600)``
|
588
|
-
`d56e7b56bb <https://github.com/apache/airflow/commit/d56e7b56bb9827daaf8890557147fd10bdf72a7e>`__ 2021-12-30 ``Fix template_fields type to have MyPy friendly Sequence type (#20571)``
|
589
|
-
`a0821235fb <https://github.com/apache/airflow/commit/a0821235fb6877a471973295fe42283ef452abf6>`__ 2021-12-30 ``Use typed Context EVERYWHERE (#20565)``
|
590
|
-
`dad2f8103b <https://github.com/apache/airflow/commit/dad2f8103be954afaedf15e9d098ee417b0d5d02>`__ 2021-12-15 ``Fix mypy providers (#20190)``
|
591
|
-
`43de625d42 <https://github.com/apache/airflow/commit/43de625d4246af7014f64941f8effb09997731cb>`__ 2021-12-01 ``Correctly capitalize names and abbreviations in docs (#19908)``
|
592
|
-
`9a469d813f <https://github.com/apache/airflow/commit/9a469d813fc083a7a5f402727e93df3e3f9c9118>`__ 2021-11-30 ``Capitalize names in docs (#19893)``
|
593
|
-
================================================================================================== =========== =================================================================================
|
594
|
-
|
595
|
-
2.4.0
|
596
|
-
.....
|
597
|
-
|
598
|
-
Latest change: 2021-11-30
|
599
|
-
|
600
|
-
================================================================================================== =========== =============================================================================================
|
601
|
-
Commit Committed Subject
|
602
|
-
================================================================================================== =========== =============================================================================================
|
603
|
-
`853576d901 <https://github.com/apache/airflow/commit/853576d9019d2aca8de1d9c587c883dcbe95b46a>`__ 2021-11-30 ``Update documentation for November 2021 provider's release (#19882)``
|
604
|
-
`c97a2e8ab8 <https://github.com/apache/airflow/commit/c97a2e8ab84991bb08e811b9d5b6d5f95de150b2>`__ 2021-11-26 ``19489 - Pass client_encoding for postgres connections (#19827)``
|
605
|
-
`83b51e5306 <https://github.com/apache/airflow/commit/83b51e53062dc596a630edd4bd01407a556f1aa6>`__ 2021-11-26 ``Amazon provider remove deprecation, second try (#19815)``
|
606
|
-
`d58df468c8 <https://github.com/apache/airflow/commit/d58df468c8d77c5d45e80f2333eb074bb7771a95>`__ 2021-11-24 ``Revert "Adjust built-in base_aws methods to avoid Deprecation warnings (#19725)" (#19791)``
|
607
|
-
`4be04143a5 <https://github.com/apache/airflow/commit/4be04143a5f7e246127e942bf1d73abcd22ce189>`__ 2021-11-24 ``Adjust built-in base_aws methods to avoid Deprecation warnings (#19725)``
|
608
|
-
`355dec8fea <https://github.com/apache/airflow/commit/355dec8fea5e2ef1a9b88363f201fce4f022fef3>`__ 2021-11-17 ``Misc. documentation typos and language improvements (#19599)``
|
609
|
-
`d9567eb106 <https://github.com/apache/airflow/commit/d9567eb106929b21329c01171fd398fbef2dc6c6>`__ 2021-10-29 ``Prepare documentation for October Provider's release (#19321)``
|
610
|
-
`33a52fa3de <https://github.com/apache/airflow/commit/33a52fa3de083384cb597800a9f31418389d86c1>`__ 2021-10-25 ``Update to correctly resolve 'PostgresOperator' (#19212)``
|
611
|
-
`86a2a19ad2 <https://github.com/apache/airflow/commit/86a2a19ad2bdc87a9ad14bb7fde9313b2d7489bb>`__ 2021-10-17 ``More f-strings (#18855)``
|
612
|
-
================================================================================================== =========== =============================================================================================
|
613
|
-
|
614
|
-
2.3.0
|
615
|
-
.....
|
616
|
-
|
617
|
-
Latest change: 2021-09-30
|
618
|
-
|
619
|
-
================================================================================================== =========== ======================================================================================
|
620
|
-
Commit Committed Subject
|
621
|
-
================================================================================================== =========== ======================================================================================
|
622
|
-
`840ea3efb9 <https://github.com/apache/airflow/commit/840ea3efb9533837e9f36b75fa527a0fbafeb23a>`__ 2021-09-30 ``Update documentation for September providers release (#18613)``
|
623
|
-
`ef037e7021 <https://github.com/apache/airflow/commit/ef037e702182e4370cb00c853c4fb0e246a0479c>`__ 2021-09-29 ``Static start_date and default arg cleanup for misc. provider example DAGs (#18597)``
|
624
|
-
`778be7993d <https://github.com/apache/airflow/commit/778be7993d4a8d752680d04db4edeb793386fa0c>`__ 2021-09-14 ``Fix example dag of PostgresOperator (#18236)``
|
625
|
-
`81ebd78db4 <https://github.com/apache/airflow/commit/81ebd78db48a4876377dc20d361a7938be11373a>`__ 2021-09-12 ``Added upsert method on S3ToRedshift operator (#18027)``
|
626
|
-
`1cb456cba1 <https://github.com/apache/airflow/commit/1cb456cba1099198bbdba50c2d1ad79664be8ce6>`__ 2021-09-12 ``Add official download page for providers (#18187)``
|
627
|
-
`046f02e5a7 <https://github.com/apache/airflow/commit/046f02e5a7097a6e6c928c28196b38b37e776916>`__ 2021-09-09 ``fix misspelling (#18121)``
|
628
|
-
================================================================================================== =========== ======================================================================================
|
629
|
-
|
630
|
-
2.2.0
|
631
|
-
.....
|
632
|
-
|
633
|
-
Latest change: 2021-08-30
|
634
|
-
|
635
|
-
================================================================================================== =========== ================================================================================
|
636
|
-
Commit Committed Subject
|
637
|
-
================================================================================================== =========== ================================================================================
|
638
|
-
`0a68588479 <https://github.com/apache/airflow/commit/0a68588479e34cf175d744ea77b283d9d78ea71a>`__ 2021-08-30 ``Add August 2021 Provider's documentation (#17890)``
|
639
|
-
`be75dcd39c <https://github.com/apache/airflow/commit/be75dcd39cd10264048c86e74110365bd5daf8b7>`__ 2021-08-23 ``Update description about the new ''connection-types'' provider meta-data``
|
640
|
-
`76ed2a49c6 <https://github.com/apache/airflow/commit/76ed2a49c6cd285bf59706cf04f39a7444c382c9>`__ 2021-08-19 ``Import Hooks lazily individually in providers manager (#17682)``
|
641
|
-
`04b6559f8a <https://github.com/apache/airflow/commit/04b6559f8a06363a24e70f6638df59afe43ea163>`__ 2021-08-07 ``Make schema in DBApiHook private (#17423)``
|
642
|
-
`bcf719bfb4 <https://github.com/apache/airflow/commit/bcf719bfb49ca20eea66a2527307968ff290c929>`__ 2021-08-02 ``refactor: fixed type annotation for 'sql' param in PostgresOperator (#17331)``
|
643
|
-
`e0a41971a1 <https://github.com/apache/airflow/commit/e0a41971a1c57221a5e03c70fc670a4c09f19d8a>`__ 2021-07-27 ``Improve postgres provider logging (#17214)``
|
644
|
-
================================================================================================== =========== ================================================================================
|
645
|
-
|
646
|
-
2.1.0
|
647
|
-
.....
|
648
|
-
|
649
|
-
Latest change: 2021-07-26
|
650
|
-
|
651
|
-
================================================================================================== =========== =============================================================================
|
652
|
-
Commit Committed Subject
|
653
|
-
================================================================================================== =========== =============================================================================
|
654
|
-
`87f408b1e7 <https://github.com/apache/airflow/commit/87f408b1e78968580c760acb275ae5bb042161db>`__ 2021-07-26 ``Prepares docs for Rc2 release of July providers (#17116)``
|
655
|
-
`0dbd0f420c <https://github.com/apache/airflow/commit/0dbd0f420cc08e011317e2a9f21f92fff4a64c1b>`__ 2021-07-26 ``Remove/refactor default_args pattern for miscellaneous providers (#16872)``
|
656
|
-
`d02ded65ea <https://github.com/apache/airflow/commit/d02ded65eaa7d2281e249b3fa028605d1b4c52fb>`__ 2021-07-15 ``Fixed wrongly escaped characters in amazon's changelog (#17020)``
|
657
|
-
`b916b75079 <https://github.com/apache/airflow/commit/b916b7507921129dc48d6add1bdc4b923b60c9b9>`__ 2021-07-15 ``Prepare documentation for July release of providers. (#17015)``
|
658
|
-
`866a601b76 <https://github.com/apache/airflow/commit/866a601b76e219b3c043e1dbbc8fb22300866351>`__ 2021-06-28 ``Removes pylint from our toolchain (#16682)``
|
659
|
-
`3ee916e9e1 <https://github.com/apache/airflow/commit/3ee916e9e11f0e9d9c794fa41b102161df3f2cd4>`__ 2021-06-23 ``Add schema as DbApiHook instance attribute (#16521)``
|
660
|
-
================================================================================================== =========== =============================================================================
|
661
|
-
|
662
|
-
2.0.0
|
663
|
-
.....
|
664
|
-
|
665
|
-
Latest change: 2021-06-18
|
666
|
-
|
667
|
-
================================================================================================== =========== ===============================================================================
|
668
|
-
Commit Committed Subject
|
669
|
-
================================================================================================== =========== ===============================================================================
|
670
|
-
`bbc627a3da <https://github.com/apache/airflow/commit/bbc627a3dab17ba4cf920dd1a26dbed6f5cebfd1>`__ 2021-06-18 ``Prepares documentation for rc2 release of Providers (#16501)``
|
671
|
-
`cbf8001d76 <https://github.com/apache/airflow/commit/cbf8001d7630530773f623a786f9eb319783b33c>`__ 2021-06-16 ``Synchronizes updated changelog after buggfix release (#16464)``
|
672
|
-
`1fba5402bb <https://github.com/apache/airflow/commit/1fba5402bb14b3ffa6429fdc683121935f88472f>`__ 2021-06-15 ``More documentation update for June providers release (#16405)``
|
673
|
-
`d99afc3c21 <https://github.com/apache/airflow/commit/d99afc3c21020e78fa3c5d2c80efce818ad2870c>`__ 2021-06-13 ``postgres_hook_aws_conn_id (#16100)``
|
674
|
-
`9c94b72d44 <https://github.com/apache/airflow/commit/9c94b72d440b18a9e42123d20d48b951712038f9>`__ 2021-06-07 ``Updated documentation for June 2021 provider release (#16294)``
|
675
|
-
`1e647029e4 <https://github.com/apache/airflow/commit/1e647029e469c1bb17e9ad051d0184f3357644c3>`__ 2021-06-01 ``Rename the main branch of the Airflow repo to be 'main' (#16149)``
|
676
|
-
`904709d34f <https://github.com/apache/airflow/commit/904709d34fbe0b6062d72932b72954afe13ec148>`__ 2021-05-27 ``Check synctatic correctness for code-snippets (#16005)``
|
677
|
-
`9c8391a13f <https://github.com/apache/airflow/commit/9c8391a13f6ba29749675cf23f2f874f96b0cc8c>`__ 2021-05-10 ``Fix spelling (#15699)``
|
678
|
-
`37681bca00 <https://github.com/apache/airflow/commit/37681bca0081dd228ac4047c17631867bba7a66f>`__ 2021-05-07 ``Auto-apply apply_default decorator (#15667)``
|
679
|
-
`fc845caf78 <https://github.com/apache/airflow/commit/fc845caf785d2fe3f943a1120c743c983130ec27>`__ 2021-05-02 ``PostgresHook: deepcopy connection to avoid mutating connection obj (#15412)``
|
680
|
-
================================================================================================== =========== ===============================================================================
|
681
|
-
|
682
|
-
1.0.2
|
683
|
-
.....
|
684
|
-
|
685
|
-
Latest change: 2021-05-01
|
686
|
-
|
687
|
-
================================================================================================== =========== =================================================================
|
688
|
-
Commit Committed Subject
|
689
|
-
================================================================================================== =========== =================================================================
|
690
|
-
`807ad32ce5 <https://github.com/apache/airflow/commit/807ad32ce59e001cb3532d98a05fa7d0d7fabb95>`__ 2021-05-01 ``Prepares provider release after PIP 21 compatibility (#15576)``
|
691
|
-
`5b2fe0e740 <https://github.com/apache/airflow/commit/5b2fe0e74013cd08d1f76f5c115f2c8f990ff9bc>`__ 2021-04-27 ``Add Connection Documentation for Popular Providers (#15393)``
|
692
|
-
`70c74c1f68 <https://github.com/apache/airflow/commit/70c74c1f6867a2f6cdd2f892a40f43aea858572b>`__ 2021-04-13 ``Do not forward cluster-identifier to psycopg2 (#15360)``
|
693
|
-
`68e4c4dcb0 <https://github.com/apache/airflow/commit/68e4c4dcb0416eb51a7011a3bb040f1e23d7bba8>`__ 2021-03-20 ``Remove Backport Providers (#14886)``
|
694
|
-
`6e6526a0f6 <https://github.com/apache/airflow/commit/6e6526a0f650119cb1ad7c2e2a1b87f0fa45c60e>`__ 2021-03-13 ``Update documentation for broken package releases (#14734)``
|
695
|
-
================================================================================================== =========== =================================================================
|
696
|
-
|
697
|
-
1.0.1
|
698
|
-
.....
|
699
|
-
|
700
|
-
Latest change: 2021-02-04
|
701
|
-
|
702
|
-
================================================================================================== =========== =========================================================
|
703
|
-
Commit Committed Subject
|
704
|
-
================================================================================================== =========== =========================================================
|
705
|
-
`88bdcfa0df <https://github.com/apache/airflow/commit/88bdcfa0df5bcb4c489486e05826544b428c8f43>`__ 2021-02-04 ``Prepare to release a new wave of providers. (#14013)``
|
706
|
-
`ac2f72c98d <https://github.com/apache/airflow/commit/ac2f72c98dc0821b33721054588adbf2bb53bb0b>`__ 2021-02-01 ``Implement provider versioning tools (#13767)``
|
707
|
-
`a9ac2b040b <https://github.com/apache/airflow/commit/a9ac2b040b64de1aa5d9c2b9def33334e36a8d22>`__ 2021-01-23 ``Switch to f-strings using flynt. (#13732)``
|
708
|
-
`3fd5ef3555 <https://github.com/apache/airflow/commit/3fd5ef355556cf0ad7896bb570bbe4b2eabbf46e>`__ 2021-01-21 ``Add missing logos for integrations (#13717)``
|
709
|
-
`9c75ea3c14 <https://github.com/apache/airflow/commit/9c75ea3c14b71d2f96d997aeef68c764c7d2984c>`__ 2021-01-06 ``Add How-To guide for PostgresOperator (#13281)``
|
710
|
-
`295d66f914 <https://github.com/apache/airflow/commit/295d66f91446a69610576d040ba687b38f1c5d0a>`__ 2020-12-30 ``Fix Grammar in PIP warning (#13380)``
|
711
|
-
`6cf76d7ac0 <https://github.com/apache/airflow/commit/6cf76d7ac01270930de7f105fb26428763ee1d4e>`__ 2020-12-18 ``Fix typo in pip upgrade command :( (#13148)``
|
712
|
-
`f6448b4e48 <https://github.com/apache/airflow/commit/f6448b4e482fd96339ae65c26d08e6a2bdb51aaf>`__ 2020-12-15 ``Add link to PyPI Repository to provider docs (#13064)``
|
713
|
-
================================================================================================== =========== =========================================================
|
714
|
-
|
715
|
-
1.0.0
|
716
|
-
.....
|
717
|
-
|
718
|
-
Latest change: 2020-12-09
|
719
|
-
|
720
|
-
================================================================================================== =========== ============================================================================================
|
721
|
-
Commit Committed Subject
|
722
|
-
================================================================================================== =========== ============================================================================================
|
723
|
-
`32971a1a2d <https://github.com/apache/airflow/commit/32971a1a2de1db0b4f7442ed26facdf8d3b7a36f>`__ 2020-12-09 ``Updates providers versions to 1.0.0 (#12955)``
|
724
|
-
`b40dffa085 <https://github.com/apache/airflow/commit/b40dffa08547b610162f8cacfa75847f3c4ca364>`__ 2020-12-08 ``Rename remaing modules to match AIP-21 (#12917)``
|
725
|
-
`9b39f24780 <https://github.com/apache/airflow/commit/9b39f24780e85f859236672e9060b2fbeee81b36>`__ 2020-12-08 ``Add support for dynamic connection form fields per provider (#12558)``
|
726
|
-
`2037303eef <https://github.com/apache/airflow/commit/2037303eef93fd36ab13746b045d1c1fee6aa143>`__ 2020-11-29 ``Adds support for Connection/Hook discovery from providers (#12466)``
|
727
|
-
`de3b1e687b <https://github.com/apache/airflow/commit/de3b1e687b26c524c6909b7b4dfbb60d25019751>`__ 2020-11-28 ``Move connection guides to provider documentation packages (#12653)``
|
728
|
-
`c34ef853c8 <https://github.com/apache/airflow/commit/c34ef853c890e08f5468183c03dc8f3f3ce84af2>`__ 2020-11-20 ``Separate out documentation building per provider (#12444)``
|
729
|
-
`0080354502 <https://github.com/apache/airflow/commit/00803545023b096b8db4fbd6eb473843096d7ce4>`__ 2020-11-18 ``Update provider READMEs for 1.0.0b2 batch release (#12449)``
|
730
|
-
`ae7cb4a1e2 <https://github.com/apache/airflow/commit/ae7cb4a1e2a96351f1976cf5832615e24863e05d>`__ 2020-11-17 ``Update wrong commit hash in backport provider changes (#12390)``
|
731
|
-
`6889a333cf <https://github.com/apache/airflow/commit/6889a333cff001727eb0a66e375544a28c9a5f03>`__ 2020-11-15 ``Improvements for operators and hooks ref docs (#12366)``
|
732
|
-
`7825e8f590 <https://github.com/apache/airflow/commit/7825e8f59034645ab3247229be83a3aa90baece1>`__ 2020-11-13 ``Docs installation improvements (#12304)``
|
733
|
-
`85a18e13d9 <https://github.com/apache/airflow/commit/85a18e13d9dec84275283ff69e34704b60d54a75>`__ 2020-11-09 ``Point at pypi project pages for cross-dependency of provider packages (#12212)``
|
734
|
-
`59eb5de78c <https://github.com/apache/airflow/commit/59eb5de78c70ee9c7ae6e4cba5c7a2babb8103ca>`__ 2020-11-09 ``Update provider READMEs for up-coming 1.0.0beta1 releases (#12206)``
|
735
|
-
`b2a28d1590 <https://github.com/apache/airflow/commit/b2a28d1590410630d66966aa1f2b2a049a8c3b32>`__ 2020-11-09 ``Moves provider packages scripts to dev (#12082)``
|
736
|
-
`4e8f9cc8d0 <https://github.com/apache/airflow/commit/4e8f9cc8d02b29c325b8a5a76b4837671bdf5f68>`__ 2020-11-03 ``Enable Black - Python Auto Formmatter (#9550)``
|
737
|
-
`8c42cf1b00 <https://github.com/apache/airflow/commit/8c42cf1b00c90f0d7f11b8a3a455381de8e003c5>`__ 2020-11-03 ``Use PyUpgrade to use Python 3.6 features (#11447)``
|
738
|
-
`5a439e84eb <https://github.com/apache/airflow/commit/5a439e84eb6c0544dc6c3d6a9f4ceeb2172cd5d0>`__ 2020-10-26 ``Prepare providers release 0.0.2a1 (#11855)``
|
739
|
-
`872b1566a1 <https://github.com/apache/airflow/commit/872b1566a11cb73297e657ff325161721b296574>`__ 2020-10-25 ``Generated backport providers readmes/setup for 2020.10.29 (#11826)``
|
740
|
-
`349b0811c3 <https://github.com/apache/airflow/commit/349b0811c3022605426ba57d30936240a7c2848a>`__ 2020-10-20 ``Add D200 pydocstyle check (#11688)``
|
741
|
-
`a4dc11fae6 <https://github.com/apache/airflow/commit/a4dc11fae63d56bc6cbb029525113948862fd45d>`__ 2020-10-19 ``Change to pass all extra connection paramaters to psycopg2 (#11019)``
|
742
|
-
`3cddc11821 <https://github.com/apache/airflow/commit/3cddc11821ff8f9ed0811384c0643f756a2b3dfa>`__ 2020-10-16 ``Updated template_fields_rendereds for PostgresOperator and SimpleHttpOperator (#11555)``
|
743
|
-
`16e7129719 <https://github.com/apache/airflow/commit/16e7129719f1c0940aef2a93bed81368e997a746>`__ 2020-10-13 ``Added support for provider packages for Airflow 2.0 (#11487)``
|
744
|
-
`d305876bee <https://github.com/apache/airflow/commit/d305876bee328287ff391a29cc1cd632468cc731>`__ 2020-10-12 ``Remove redundant None provided as default to dict.get() (#11448)``
|
745
|
-
`0a0e1af800 <https://github.com/apache/airflow/commit/0a0e1af80038ef89974c3c8444461fe867945daa>`__ 2020-10-03 ``Fix Broken Markdown links in Providers README TOC (#11249)``
|
746
|
-
`ca4238eb4d <https://github.com/apache/airflow/commit/ca4238eb4d9a2aef70eb641343f59ee706d27d13>`__ 2020-10-02 ``Fixed month in backport packages to October (#11242)``
|
747
|
-
`5220e4c384 <https://github.com/apache/airflow/commit/5220e4c3848a2d2c81c266ef939709df9ce581c5>`__ 2020-10-02 ``Prepare Backport release 2020.09.07 (#11238)``
|
748
|
-
`eff1525d12 <https://github.com/apache/airflow/commit/eff1525d124f7f697e4fbe5cc9a54ed32ec0138d>`__ 2020-09-16 ``Increase typing coverage for postgres provider (#10864)``
|
749
|
-
`9549274d11 <https://github.com/apache/airflow/commit/9549274d110f689a0bd709db829a4d69e274eed9>`__ 2020-09-09 ``Upgrade black to 20.8b1 (#10818)``
|
750
|
-
`fdd9b6f65b <https://github.com/apache/airflow/commit/fdd9b6f65b608c516b8a062b058972d9a45ec9e3>`__ 2020-08-25 ``Enable Black on Providers Packages (#10543)``
|
751
|
-
`3696c34c28 <https://github.com/apache/airflow/commit/3696c34c28c6bc7b442deab999d9ecba24ed0e34>`__ 2020-08-24 ``Fix typo in the word "release" (#10528)``
|
752
|
-
`ee7ca128a1 <https://github.com/apache/airflow/commit/ee7ca128a17937313566f2badb6cc569c614db94>`__ 2020-08-22 ``Fix broken Markdown refernces in Providers README (#10483)``
|
753
|
-
`cdec301254 <https://github.com/apache/airflow/commit/cdec3012542b45d23a05f62d69110944ba542e2a>`__ 2020-08-07 ``Add correct signature to all operators and sensors (#10205)``
|
754
|
-
`aeea71274d <https://github.com/apache/airflow/commit/aeea71274d4527ff2351102e94aa38bda6099e7f>`__ 2020-08-02 ``Remove 'args' parameter from provider operator constructors (#10097)``
|
755
|
-
`d0e7db4024 <https://github.com/apache/airflow/commit/d0e7db4024806af35e3c9a2cae460fdeedd4d2ec>`__ 2020-06-19 ``Fixed release number for fresh release (#9408)``
|
756
|
-
`12af6a0800 <https://github.com/apache/airflow/commit/12af6a08009b8776e00d8a0aab92363eb8c4e8b1>`__ 2020-06-19 ``Final cleanup for 2020.6.23rc1 release preparation (#9404)``
|
757
|
-
`c7e5bce57f <https://github.com/apache/airflow/commit/c7e5bce57fe7f51cefce4f8a41ce408ac5675d13>`__ 2020-06-19 ``Prepare backport release candidate for 2020.6.23rc1 (#9370)``
|
758
|
-
`f6bd817a3a <https://github.com/apache/airflow/commit/f6bd817a3aac0a16430fc2e3d59c1f17a69a15ac>`__ 2020-06-16 ``Introduce 'transfers' packages (#9320)``
|
759
|
-
`0b0e4f7a4c <https://github.com/apache/airflow/commit/0b0e4f7a4cceff3efe15161fb40b984782760a34>`__ 2020-05-26 ``Preparing for RC3 relase of backports (#9026)``
|
760
|
-
`00642a46d0 <https://github.com/apache/airflow/commit/00642a46d019870c4decb3d0e47c01d6a25cb88c>`__ 2020-05-26 ``Fixed name of 20 remaining wrongly named operators. (#8994)``
|
761
|
-
`1d36b0303b <https://github.com/apache/airflow/commit/1d36b0303b8632fce6de78ca4e782ae26ee06fea>`__ 2020-05-23 ``Fix references in docs (#8984)``
|
762
|
-
`375d1ca229 <https://github.com/apache/airflow/commit/375d1ca229464617780623c61c6e8a1bf570c87f>`__ 2020-05-19 ``Release candidate 2 for backport packages 2020.05.20 (#8898)``
|
763
|
-
`12c5e5d8ae <https://github.com/apache/airflow/commit/12c5e5d8ae25fa633efe63ccf4db389e2b796d79>`__ 2020-05-17 ``Prepare release candidate for backport packages (#8891)``
|
764
|
-
`f3521fb0e3 <https://github.com/apache/airflow/commit/f3521fb0e36733d8bd356123e56a453fd37a6dca>`__ 2020-05-16 ``Regenerate readme files for backport package release (#8886)``
|
765
|
-
`92585ca4cb <https://github.com/apache/airflow/commit/92585ca4cb375ac879f4ab331b3a063106eb7b92>`__ 2020-05-15 ``Added automated release notes generation for backport operators (#8807)``
|
766
|
-
`a28c66f23d <https://github.com/apache/airflow/commit/a28c66f23d373cd0f8bfc765a515f21d4b66a0e9>`__ 2020-04-30 ``[AIRFLOW-4734] Upsert functionality for PostgresHook.insert_rows() (#8625)``
|
767
|
-
`68d1714f29 <https://github.com/apache/airflow/commit/68d1714f296989b7aad1a04b75dc033e76afb747>`__ 2020-04-04 ``[AIRFLOW-6822] AWS hooks should cache boto3 client (#7541)``
|
768
|
-
`4bde99f132 <https://github.com/apache/airflow/commit/4bde99f1323d72f6c84c1548079d5e98fc0a2a9a>`__ 2020-03-23 ``Make airflow/providers pylint compatible (#7802)``
|
769
|
-
`9cbd7de6d1 <https://github.com/apache/airflow/commit/9cbd7de6d115795aba8bfb8addb060bfdfbdf87b>`__ 2020-02-18 ``[AIRFLOW-6792] Remove _operator/_hook/_sensor in providers package and add tests (#7412)``
|
770
|
-
`97a429f9d0 <https://github.com/apache/airflow/commit/97a429f9d0cf740c5698060ad55f11e93cb57b55>`__ 2020-02-02 ``[AIRFLOW-6714] Remove magic comments about UTF-8 (#7338)``
|
771
|
-
`82c0e5aff6 <https://github.com/apache/airflow/commit/82c0e5aff6004f636b98e207c3caec40b403fbbe>`__ 2020-01-28 ``[AIRFLOW-6655] Move AWS classes to providers (#7271)``
|
772
|
-
`059eda05f8 <https://github.com/apache/airflow/commit/059eda05f82fefce4410f44f761f945a27d83daf>`__ 2020-01-21 ``[AIRFLOW-6610] Move software classes to providers package (#7231)``
|
773
|
-
================================================================================================== =========== ============================================================================================
|
File without changes
|
{apache_airflow_providers_postgres-6.1.3rc1 → apache_airflow_providers_postgres-6.2.0}/docs/conf.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|