apache-airflow-providers-postgres 6.1.2rc1__tar.gz → 6.1.3rc1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/PKG-INFO +6 -6
  2. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/README.rst +3 -3
  3. apache_airflow_providers_postgres-6.1.3rc1/docs/.latest-doc-only-change.txt +1 -0
  4. apache_airflow_providers_postgres-6.1.3rc1/docs/changelog.rst +752 -0
  5. apache_airflow_providers_postgres-6.1.3rc1/docs/commits.rst +773 -0
  6. apache_airflow_providers_postgres-6.1.3rc1/docs/conf.py +27 -0
  7. apache_airflow_providers_postgres-6.1.3rc1/docs/connections/postgres.rst +135 -0
  8. apache_airflow_providers_postgres-6.1.3rc1/docs/dialects.rst +55 -0
  9. apache_airflow_providers_postgres-6.1.3rc1/docs/index.rst +137 -0
  10. apache_airflow_providers_postgres-6.1.3rc1/docs/installing-providers-from-sources.rst +18 -0
  11. apache_airflow_providers_postgres-6.1.3rc1/docs/integration-logos/Postgres.png +0 -0
  12. apache_airflow_providers_postgres-6.1.3rc1/docs/operators.rst +209 -0
  13. apache_airflow_providers_postgres-6.1.3rc1/docs/redirects.txt +1 -0
  14. apache_airflow_providers_postgres-6.1.3rc1/docs/security.rst +18 -0
  15. apache_airflow_providers_postgres-6.1.3rc1/provider.yaml +103 -0
  16. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/pyproject.toml +19 -4
  17. apache_airflow_providers_postgres-6.1.3rc1/src/airflow/__init__.py +17 -0
  18. apache_airflow_providers_postgres-6.1.3rc1/src/airflow/providers/__init__.py +17 -0
  19. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/__init__.py +1 -1
  20. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/get_provider_info.py +0 -59
  21. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/hooks/postgres.py +10 -7
  22. apache_airflow_providers_postgres-6.1.3rc1/tests/conftest.py +19 -0
  23. apache_airflow_providers_postgres-6.1.3rc1/tests/system/__init__.py +17 -0
  24. apache_airflow_providers_postgres-6.1.3rc1/tests/system/postgres/__init__.py +16 -0
  25. apache_airflow_providers_postgres-6.1.3rc1/tests/system/postgres/example_postgres.py +92 -0
  26. apache_airflow_providers_postgres-6.1.3rc1/tests/unit/__init__.py +17 -0
  27. apache_airflow_providers_postgres-6.1.3rc1/tests/unit/postgres/__init__.py +17 -0
  28. apache_airflow_providers_postgres-6.1.3rc1/tests/unit/postgres/assets/__init__.py +16 -0
  29. apache_airflow_providers_postgres-6.1.3rc1/tests/unit/postgres/assets/test_postgres.py +66 -0
  30. apache_airflow_providers_postgres-6.1.3rc1/tests/unit/postgres/dialects/__init__.py +16 -0
  31. apache_airflow_providers_postgres-6.1.3rc1/tests/unit/postgres/dialects/test_postgres.py +108 -0
  32. apache_airflow_providers_postgres-6.1.3rc1/tests/unit/postgres/hooks/__init__.py +17 -0
  33. apache_airflow_providers_postgres-6.1.3rc1/tests/unit/postgres/hooks/test_postgres.py +748 -0
  34. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/LICENSE +0 -0
  35. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/assets/__init__.py +0 -0
  36. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/assets/postgres.py +0 -0
  37. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/dialects/__init__.py +0 -0
  38. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/dialects/postgres.py +0 -0
  39. {apache_airflow_providers_postgres-6.1.2rc1 → apache_airflow_providers_postgres-6.1.3rc1}/src/airflow/providers/postgres/hooks/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-postgres
3
- Version: 6.1.2rc1
3
+ Version: 6.1.3rc1
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>
@@ -27,8 +27,8 @@ 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.1.2/changelog.html
31
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.1.2
30
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.1.3/changelog.html
31
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.1.3
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.1.2``
64
+ Release: ``6.1.3``
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.1.2/>`_.
77
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.1.3/>`_.
78
78
 
79
79
  Installation
80
80
  ------------
@@ -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.1.2/changelog.html>`_.
122
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.1.3/changelog.html>`_.
123
123
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-postgres``
25
25
 
26
- Release: ``6.1.2``
26
+ Release: ``6.1.3``
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.1.2/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.1.3/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
@@ -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.1.2/changelog.html>`_.
84
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.1.3/changelog.html>`_.
@@ -0,0 +1 @@
1
+ 7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f