apache-airflow-providers-postgres 6.6.2__tar.gz → 6.6.3__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 (42) hide show
  1. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/PKG-INFO +6 -6
  2. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/README.rst +3 -3
  3. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/changelog.rst +11 -0
  4. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/index.rst +3 -3
  5. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/provider.yaml +3 -1
  6. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/pyproject.toml +3 -3
  7. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/postgres/__init__.py +1 -1
  8. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/postgres/get_provider_info.py +1 -0
  9. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/.gitignore +0 -0
  10. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/LICENSE +0 -0
  11. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/NOTICE +0 -0
  12. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/.latest-doc-only-change.txt +0 -0
  13. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/commits.rst +0 -0
  14. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/conf.py +0 -0
  15. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/configurations-ref.rst +0 -0
  16. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/connections/postgres.rst +0 -0
  17. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/dialects.rst +0 -0
  18. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/installing-providers-from-sources.rst +0 -0
  19. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/integration-logos/Postgres.png +0 -0
  20. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/operators.rst +0 -0
  21. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/redirects.txt +0 -0
  22. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/docs/security.rst +0 -0
  23. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/__init__.py +0 -0
  24. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/__init__.py +0 -0
  25. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/postgres/assets/__init__.py +0 -0
  26. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/postgres/assets/postgres.py +0 -0
  27. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/postgres/dialects/__init__.py +0 -0
  28. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/postgres/dialects/postgres.py +0 -0
  29. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/postgres/hooks/__init__.py +0 -0
  30. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/src/airflow/providers/postgres/hooks/postgres.py +0 -0
  31. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/conftest.py +0 -0
  32. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/system/__init__.py +0 -0
  33. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/system/postgres/__init__.py +0 -0
  34. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/system/postgres/example_postgres.py +0 -0
  35. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/unit/__init__.py +0 -0
  36. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/unit/postgres/__init__.py +0 -0
  37. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/unit/postgres/assets/__init__.py +0 -0
  38. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/unit/postgres/assets/test_postgres.py +0 -0
  39. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/unit/postgres/dialects/__init__.py +0 -0
  40. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/unit/postgres/dialects/test_postgres.py +0 -0
  41. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/unit/postgres/hooks/__init__.py +0 -0
  42. {apache_airflow_providers_postgres-6.6.2 → apache_airflow_providers_postgres-6.6.3}/tests/unit/postgres/hooks/test_postgres.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-postgres
3
- Version: 6.6.2
3
+ Version: 6.6.3
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>
@@ -40,8 +40,8 @@ Requires-Dist: psycopg[binary]>=3.2.9 ; extra == "psycopg" and ( python_version
40
40
  Requires-Dist: psycopg[binary]>=3.3.3 ; extra == "psycopg" and ( python_version >= '3.14')
41
41
  Requires-Dist: sqlalchemy>=1.4.54 ; extra == "sqlalchemy"
42
42
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
43
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.2/changelog.html
44
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.2
43
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.3/changelog.html
44
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.3
45
45
  Project-URL: Mastodon, https://fosstodon.org/@airflow
46
46
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
47
47
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -79,7 +79,7 @@ Provides-Extra: sqlalchemy
79
79
 
80
80
  Package ``apache-airflow-providers-postgres``
81
81
 
82
- Release: ``6.6.2``
82
+ Release: ``6.6.3``
83
83
 
84
84
 
85
85
  `PostgreSQL <https://www.postgresql.org/>`__
@@ -92,7 +92,7 @@ This is a provider package for ``postgres`` provider. All classes for this provi
92
92
  are in ``airflow.providers.postgres`` python package.
93
93
 
94
94
  You can find package information and changelog for the provider
95
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.2/>`_.
95
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.3/>`_.
96
96
 
97
97
  Installation
98
98
  ------------
@@ -156,5 +156,5 @@ Extra Dependencies
156
156
  =================== ============================================================================================================================================================
157
157
 
158
158
  The changelog for the provider package can be found in the
159
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.2/changelog.html>`_.
159
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.3/changelog.html>`_.
160
160
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-postgres``
25
25
 
26
- Release: ``6.6.2``
26
+ Release: ``6.6.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.6.2/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.3/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
@@ -100,4 +100,4 @@ Extra Dependencies
100
100
  =================== ============================================================================================================================================================
101
101
 
102
102
  The changelog for the provider package can be found in the
103
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.2/changelog.html>`_.
103
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.3/changelog.html>`_.
@@ -27,6 +27,17 @@
27
27
  Changelog
28
28
  ---------
29
29
 
30
+ 6.6.3
31
+ .....
32
+
33
+ Misc
34
+ ~~~~
35
+
36
+ * ``Load hook metadata from YAML without importing Hook class (#63826)``
37
+
38
+ .. Below changes are excluded from the changelog. Move them to
39
+ appropriate section above if needed. Do not delete the lines(!):
40
+
30
41
  6.6.2
31
42
  .....
32
43
 
@@ -78,7 +78,7 @@ apache-airflow-providers-postgres package
78
78
  `PostgreSQL <https://www.postgresql.org/>`__
79
79
 
80
80
 
81
- Release: 6.6.2
81
+ Release: 6.6.3
82
82
 
83
83
  Provider package
84
84
  ----------------
@@ -138,5 +138,5 @@ Downloading official packages
138
138
  You can download officially released packages and verify their checksums and signatures from the
139
139
  `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
140
140
 
141
- * `The apache-airflow-providers-postgres 6.6.2 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.2.tar.gz.sha512>`__)
142
- * `The apache-airflow-providers-postgres 6.6.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.2-py3-none-any.whl.sha512>`__)
141
+ * `The apache-airflow-providers-postgres 6.6.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.3.tar.gz.sha512>`__)
142
+ * `The apache-airflow-providers-postgres 6.6.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-6.6.3-py3-none-any.whl.sha512>`__)
@@ -23,12 +23,13 @@ description: |
23
23
 
24
24
  state: ready
25
25
  lifecycle: production
26
- source-date-epoch: 1774299615
26
+ source-date-epoch: 1775592651
27
27
  # Note that those versions are maintained by release manager - do not update them manually
28
28
  # with the exception of case where other provider in sources has >= new provider version.
29
29
  # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have
30
30
  # to be done in the same PR
31
31
  versions:
32
+ - 6.6.3
32
33
  - 6.6.2
33
34
  - 6.6.1
34
35
  - 6.6.0
@@ -109,6 +110,7 @@ hooks:
109
110
 
110
111
  connection-types:
111
112
  - hook-class-name: airflow.providers.postgres.hooks.postgres.PostgresHook
113
+ hook-name: "Postgres"
112
114
  connection-type: postgres
113
115
  ui-field-behaviour:
114
116
  relabeling:
@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
25
25
 
26
26
  [project]
27
27
  name = "apache-airflow-providers-postgres"
28
- version = "6.6.2"
28
+ version = "6.6.3"
29
29
  description = "Provider package apache-airflow-providers-postgres for Apache Airflow"
30
30
  readme = "README.rst"
31
31
  license = "Apache-2.0"
@@ -137,8 +137,8 @@ apache-airflow-providers-common-sql = {workspace = true}
137
137
  apache-airflow-providers-standard = {workspace = true}
138
138
 
139
139
  [project.urls]
140
- "Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.2"
141
- "Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.2/changelog.html"
140
+ "Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.3"
141
+ "Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-postgres/6.6.3/changelog.html"
142
142
  "Bug Tracker" = "https://github.com/apache/airflow/issues"
143
143
  "Source Code" = "https://github.com/apache/airflow"
144
144
  "Slack Chat" = "https://s.apache.org/airflow-slack"
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "6.6.2"
32
+ __version__ = "6.6.3"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.11.0"
@@ -50,6 +50,7 @@ def get_provider_info():
50
50
  "connection-types": [
51
51
  {
52
52
  "hook-class-name": "airflow.providers.postgres.hooks.postgres.PostgresHook",
53
+ "hook-name": "Postgres",
53
54
  "connection-type": "postgres",
54
55
  "ui-field-behaviour": {"relabeling": {"schema": "Database"}},
55
56
  }