From 157ceba0d84a371dca856b0d5c74a0709d243bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D1=80=D1=82=D1=8B=D0=BD=D0=BE=D0=B2=20=D0=9C?= =?UTF-8?q?=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=20=D0=A1=D0=B5=D1=80=D0=B3=D0=B5?= =?UTF-8?q?=D0=B5=D0=B2=D0=B8=D1=87?= Date: Thu, 21 Mar 2024 07:42:12 +0000 Subject: [PATCH] [DOP-13779] Prepare for release --- docs/changelog/0.10.2.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/changelog/0.10.2.rst b/docs/changelog/0.10.2.rst index ff72ad640..c516735b9 100644 --- a/docs/changelog/0.10.2.rst +++ b/docs/changelog/0.10.2.rst @@ -5,11 +5,6 @@ Features -------- - Add support of Pydantic v2. (:github:pull:`230`) -- Update default ``Postgres(extra={...})`` to include ``{"stringtype": "unspecified"}`` option. - This allows to write text data to non-text column (or vice versa), relying to Postgres cast capabilities. - - For example, now it is possible to read column of type ``money`` as Spark's ``StringType()``, and write it back to the same column, - without using intermediate columns or tables. (:github:pull:`229`) Improvements @@ -22,6 +17,11 @@ Improvements * Add examples for ``.fetch()`` and ``.execute()`` (:github:pull:`211`, :github:pull:`228`, :github:pull:`229`, :github:pull:`233`, :github:pull:`234`, :github:pull:`235`, :github:pull:`236`, :github:pull:`240`) - Add notes to Greenplum documentation about issues with IP resolution and building ``gpfdist`` URL (:github:pull:`228`) - Allow calling ``MongoDB.pipeline(...)`` with passing just collection name, without explicit aggregation pipeline. (:github:pull:`237`) +- Update default ``Postgres(extra={...})`` to include ``{"stringtype": "unspecified"}`` option. + This allows to write text data to non-text column (or vice versa), relying to Postgres cast capabilities. + + For example, now it is possible to read column of type ``money`` as Spark's ``StringType()``, and write it back to the same column, + without using intermediate columns or tables. (:github:pull:`229`) Bug Fixes