17
0

Accepting request 1304048 from home:mcalabkova:branches:devel:languages:python

- Update to 2.0.43
  * Adjusted the test suite as well as the ORM’s method of scanning classes
    for annotations to work under current beta releases of Python 3.14.
  * Added support for postgresql_include keyword argument to UniqueConstraint
    and PrimaryKeyConstraint.
  * The values() construct gains a new method Values.cte(), which allows
    creation of a named, explicit-columns CTE against an unnamed VALUES
    expression, producing a syntax that allows column-oriented selection from
    a VALUES construct on modern versions of PostgreSQL, SQLite, and MariaDB.
  * Fixed some regressions from 2.0.40 in postgresql and mysql toolbox.
  * Improved validation of execution parameters passed to the
    Connection.execute() and similar methods.
  * Added dataclass_metadata argument to all ORM attribute constructors that
    accept dataclasses parameters.
  * Implemented the defer(), undefer() and load_only() ORM loader options
    to work for composite attributes.
  * Added new parameter create_engine.skip_autocommit_rollback which provides
    for a per-dialect feature of preventing the DBAPI .rollback() from being
    called under any circumstances.

OBS-URL: https://build.opensuse.org/request/show/1304048
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=271
This commit is contained in:
2025-09-12 08:08:11 +00:00
committed by Git OBS Bridge
parent 9bf085407f
commit 752231ffaf
4 changed files with 28 additions and 5 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Thu Sep 11 09:13:44 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Update to 2.0.43
* Adjusted the test suite as well as the ORMs method of scanning classes
for annotations to work under current beta releases of Python 3.14.
* Added support for postgresql_include keyword argument to UniqueConstraint
and PrimaryKeyConstraint.
* The values() construct gains a new method Values.cte(), which allows
creation of a named, explicit-columns CTE against an unnamed VALUES
expression, producing a syntax that allows column-oriented selection from
a VALUES construct on modern versions of PostgreSQL, SQLite, and MariaDB.
* Fixed some regressions from 2.0.40 in postgresql and mysql toolbox.
* Improved validation of execution parameters passed to the
Connection.execute() and similar methods.
* Added dataclass_metadata argument to all ORM attribute constructors that
accept dataclasses parameters.
* Implemented the defer(), undefer() and load_only() ORM loader options
to work for composite attributes.
* Added new parameter create_engine.skip_autocommit_rollback which provides
for a per-dialect feature of preventing the DBAPI .rollback() from being
called under any circumstances.
-------------------------------------------------------------------
Tue Apr 22 12:39:48 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>