meta-openembedded/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.19.bb
Leon Anavi 1e1451b818 python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19
Upgrade to release 1.3.19:

- orm: Adjusted the workings of the Mapper.all_orm_descriptors()
  accessor to represent the attributes in the order that they are
  located in a deterministic way, assuming the use of Python 3.6
  or higher which maintains the sorting order of class attributes
  based on how they were declared. This sorting is not guaranteed
  to match the declared order of attributes in all cases however;
  see the method documentation for the exact scheme.
- orm: The name of the virtual column used when using the
  AbstractConcreteBase and ConcreteBase classes can now be
  customized, to allow for models that have a column that is
  actually named type.
- sql: Repaired an issue where the "ORDER BY" clause rendering a
  label name rather than a complete expression, which is
  particularly important for SQL Server, would fail to occur if
  the expression were enclosed in a parenthesized grouping in some
  cases. This case has been added to test support. The change
  additionally adjusts the "automatically add ORDER BY columns
  when DISTINCT is present" behavior of ORM query, deprecated in
  1.4, to more accurately detect column expressions that are
  already present.
- mysql: The MySQL dialect will render FROM DUAL for a SELECT
  statement that has no FROM clause but has a WHERE clause. This
  allows things like "SELECT 1 WHERE EXISTS (subquery)" kinds of
  queries to be used as well as other use cases.
- sqlite: Applied a sweep through all included dialects to ensure
  names that contain single or double quotes are properly escaped
  when querying system tables, for all Inspector methods that
  accept object names as an argument (e.g. table names, view
  names, etc). SQLite and MSSQL contained two quoting issues that
  were repaired.
- mssql: Fixed bug where the mssql dialect incorrectly escaped
  object names that contained ‘]’ character(s).
- Added a **kw argument to the DeclarativeMeta.__init__() method.
  This allows a class to support the PEP 487 metaclass hook
  __init_subclass__.

For more details have a look at the complete changelog:
https://docs.sqlalchemy.org/en/13/changelog/changelog_13.html

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-08-19 14:04:00 -07:00

21 lines
650 B
BlitzBasic

DESCRIPTION = "Python SQL toolkit and Object Relational Mapper that gives \
application developers the full power and flexibility of SQL"
HOMEPAGE = "http://www.sqlalchemy.org/"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
SRC_URI[md5sum] = "a5710b0aee19a743e513f3bf002072a8"
SRC_URI[sha256sum] = "3bba2e9fbedb0511769780fe1d63007081008c5c2d7d715e91858c94dbaa260e"
PYPI_PACKAGE = "SQLAlchemy"
inherit pypi setuptools3
RDEPENDS_${PN} += " \
${PYTHON_PN}-json \
${PYTHON_PN}-pickle \
${PYTHON_PN}-logging \
${PYTHON_PN}-netclient \
${PYTHON_PN}-numbers \
${PYTHON_PN}-threading \
"