.. changelog::
- :version: 2.0.0rc4
+ :version: 2.0.0
:include_notes_from: unreleased_20
.. changelog::
.. change::
:tags: bug, oracle
:tickets: 5047
- :versions: 2.0.0rc4
+ :versions: 2.0.0
Added :class:`_oracle.ROWID` to reflected types as this type may be used in
a "CREATE TABLE" statement.
.. change::
:tags: bug, sql
:tickets: 7664
- :versions: 2.0.0rc4
+ :versions: 2.0.0
Fixed stringify for a the :class:`.CreateSchema` DDL construct, which would
fail with an ``AttributeError`` when stringified without a dialect.
.. change::
:tags: bug, mssql
:tickets: 9133
- :versions: 2.0.0rc4
+ :versions: 2.0.0
Fixed bug where a schema name given with brackets, but no dots inside the
name, for parameters such as :paramref:`_schema.Table.schema` would not be
.. change::
- :tags: utils, bug
+ :tags: orm, bug
:tickets: 7305
Improved the notification of warnings that are emitted within the configure
:tickets: 9122
The :meth:`_sql.ColumnOperators.in_` and
- :meth:`_sql.ColumnOperators.not_in_` are typed to include
+ :meth:`_sql.ColumnOperators.not_in` methods are typed to include
``Iterable[Any]`` rather than ``Sequence[Any]`` for more flexibility in
argument type.
from .types import VARBINARY as VARBINARY
from .types import VARCHAR as VARCHAR
-__version__ = "2.0.0rc4"
+__version__ = "2.0.0"
def __go(lcls: Any) -> None:
if frame.f_code in _warning_tags:
warning_tag_found = True
- (_prefix, _category) = _warning_tags[frame.f_code]
+ (_suffix, _category) = _warning_tags[frame.f_code]
category = category or _category
- message = f"{message} ({_prefix})"
+ message = f"{message} ({_suffix})"
frame = frame.f_back # type: ignore[assignment]