.. change::
:tags: bug, sql
:tickets: 4126
- :versions: 1.2.0b4
+ :versions: 1.2.0
Fixed bug where ``__repr__`` of :class:`.ColumnDefault` would fail
if the argument were a tuple. Pull request courtesy Nicolas Caniart.
.. change::
:tags: bug, orm, declarative
:tickets: 4124
- :versions: 1.2.0b4
+ :versions: 1.2.0
Fixed bug where a descriptor that is elsewhere a mapped column
or relationship within a hierarchy based on :class:`.AbstractConcreteBase`
.. change::
:tags: bug, orm, ext
:tickets: 4116
- :versions: 1.2.0b4
+ :versions: 1.2.0
Fixed bug where the association proxy would inadvertently link itself
to an :class:`.AliasedClass` object if it were called first with
.. change::
:tags: bug, mysql
:tickets: 4120
- :versions: 1.2.0b4
+ :versions: 1.2.0
MySQL 5.7.20 now warns for use of the @tx_isolation variable; a version
check is now performed and uses @transaction_isolation instead
:start-line: 5
.. changelog::
- :version: 1.2.0b4
+ :version: 1.2.0
:include_notes_from: unreleased_12
.. changelog::
also applies it to all occurrences of the wildcard characters "%"
and "_" automatically. Pull request courtesy Diana Clarke.
- .. note:: This feature has been changed as of 1.2.0b4 from its initial
+ .. note:: This feature has been changed as of 1.2.0 from its initial
implementation in 1.2.0b2 such that autoescape is now passed as a
boolean value, rather than a specific character to use as the escape
character.
9.1, and MySQL's ``NO_BACKSLASH_ESCAPES`` settings. The existing "escape" parameter
can now be used to change the autoescape character, if desired.
-.. note:: This feature has been changed as of 1.2.0b4 from its initial
+.. note:: This feature has been changed as of 1.2.0 from its initial
implementation in 1.2.0b2 such that autoescape is now passed as a boolean
value, rather than a specific character to use as the escape character.
.. change::
:tags: bug, sql
- :versions: 1.2.0b4
+ :versions: 1.2.0
Added :func:`.nullsfirst` and :func:`.nullslast` as top level imports
in the ``sqlalchemy.`` and ``sqlalchemy.sql.`` namespace. Pull request
.. change::
:tags: bug, mysql
:tickets: 4136
- :versions: 1.2.0b4
+ :versions: 1.2.0
Fixed bug where the MySQL "concat" and "match" operators failed to
propagate kwargs to the left and right expressions, causing compiler
from .inspection import inspect
from .engine import create_engine, engine_from_config
-__version__ = '1.2.0b4'
+__version__ = '1.2.0'
def __go(lcls):
.. versionadded:: 1.2
- .. versionchanged:: 1.2.0b4 The
+ .. versionchanged:: 1.2.0 The
:paramref:`.ColumnOperators.startswith.autoescape` parameter is
now a simple boolean rather than a character; the escape
character itself is also escaped, and defaults to a forwards
.. versionadded:: 1.2
- .. versionchanged:: 1.2.0b4 The
+ .. versionchanged:: 1.2.0 The
:paramref:`.ColumnOperators.endswith.autoescape` parameter is
now a simple boolean rather than a character; the escape
character itself is also escaped, and defaults to a forwards
.. versionadded:: 1.2
- .. versionchanged:: 1.2.0b4 The
+ .. versionchanged:: 1.2.0 The
:paramref:`.ColumnOperators.contains.autoescape` parameter is
now a simple boolean rather than a character; the escape
character itself is also escaped, and defaults to a forwards