summaryrefslogtreecommitdiff
path: root/databases/py-sqlalchemy-utils
diff options
context:
space:
mode:
authorrodent <rodent@pkgsrc.org>2015-04-01 02:24:00 +0000
committerrodent <rodent@pkgsrc.org>2015-04-01 02:24:00 +0000
commit376a64673679f823dcb6b3be9d49e04a61829072 (patch)
tree5ac85da7b08b192f2a84b8d717bcfbf239323a58 /databases/py-sqlalchemy-utils
parentb31d9272eaf1590b1d2c8999e870db320bc536e1 (diff)
downloadpkgsrc-376a64673679f823dcb6b3be9d49e04a61829072.tar.gz
Changelog
--------- 0.29.8 (2015-03-03) ^^^^^^^^^^^^^^^^^^^ - Added get_class_by_table ORM utility function 0.29.7 (2015-03-01) ^^^^^^^^^^^^^^^^^^^ - Added Enum representation support for ChoiceType 0.29.6 (2015-02-03) ^^^^^^^^^^^^^^^^^^^ - Added customizable TranslationHybrid default value 0.29.5 (2015-02-03) ^^^^^^^^^^^^^^^^^^^ - Made assert_max_length support PostgreSQL array type 0.29.4 (2015-01-31) ^^^^^^^^^^^^^^^^^^^ - Made CaseInsensitiveComparator not cast already lowercased types to lowercase 0.29.3 (2015-01-24) ^^^^^^^^^^^^^^^^^^^ - Fixed analyze function runtime property handling for PostgreSQL >= 9.4 - Fixed drop_database and create_database identifier quoting (#122) 0.29.2 (2015-01-08) ^^^^^^^^^^^^^^^^^^^ - Removed deprecated defer_except (SQLAlchemy's own load_only should be used from now on) - Added json_sql PostgreSQL helper function 0.29.1 (2015-01-03) ^^^^^^^^^^^^^^^^^^^ - Added assert_min_value and assert_max_value testing functions 0.29.0 (2015-01-02) ^^^^^^^^^^^^^^^^^^^ - Removed TSVectorType.match_tsquery (now replaced by TSVectorType.match to be compatible with SQLAlchemy) - Removed undocumented function tsvector_concat - Added support for TSVectorType concatenation through OR operator - Added documentation for TSVectorType (#102) 0.28.3 (2014-12-17) ^^^^^^^^^^^^^^^^^^^ - Made aggregated fully support column aliases - Changed test matrix to run all tests without any optional dependencies (as well as with all optional dependencies) 0.28.2 (2014-12-13) ^^^^^^^^^^^^^^^^^^^ - Fixed issue with Color importing (#104) 0.28.1 (2014-12-13) ^^^^^^^^^^^^^^^^^^^ - Improved EncryptedType to support more underlying_type's; now supports: Integer, Boolean, Date, Time, DateTime, ColorType, PhoneNumberType, Unicode(Text), String(Text), Enum - Allow a callable to be used to lookup the key for EncryptedType 0.28.0 (2014-12-12) ^^^^^^^^^^^^^^^^^^^ - Fixed PhoneNumber string coercion (#93) - Added observes decorator (generates decorator will be deprecated later) 0.27.11 (2014-12-06) ^^^^^^^^^^^^^^^^^^^^ - Added loose typed column checking support for get_column_key - Made get_column_key throw UnmappedColumnError to be consistent with SQLAlchemy 0.27.10 (2014-12-03) ^^^^^^^^^^^^^^^^^^^^ - Fixed column alias handling in dependent_objects
Diffstat (limited to 'databases/py-sqlalchemy-utils')
-rw-r--r--databases/py-sqlalchemy-utils/Makefile4
-rw-r--r--databases/py-sqlalchemy-utils/PLIST17
-rw-r--r--databases/py-sqlalchemy-utils/distinfo8
3 files changed, 19 insertions, 10 deletions
diff --git a/databases/py-sqlalchemy-utils/Makefile b/databases/py-sqlalchemy-utils/Makefile
index a0f8f7f828e..c14499f5d74 100644
--- a/databases/py-sqlalchemy-utils/Makefile
+++ b/databases/py-sqlalchemy-utils/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2014/12/31 13:57:26 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2015/04/01 02:24:00 rodent Exp $
-DISTNAME= SQLAlchemy-Utils-0.27.9
+DISTNAME= SQLAlchemy-Utils-0.29.8
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= databases python
MASTER_SITES= https://pypi.python.org/packages/source/S/SQLAlchemy-Utils/
diff --git a/databases/py-sqlalchemy-utils/PLIST b/databases/py-sqlalchemy-utils/PLIST
index 2c464649c16..d57316b80a8 100644
--- a/databases/py-sqlalchemy-utils/PLIST
+++ b/databases/py-sqlalchemy-utils/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2014/10/26 23:56:38 rodent Exp $
+@comment $NetBSD: PLIST,v 1.4 2015/04/01 02:24:00 rodent Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -35,9 +35,6 @@ ${PYSITELIB}/sqlalchemy_utils/functions/__init__.pyo
${PYSITELIB}/sqlalchemy_utils/functions/database.py
${PYSITELIB}/sqlalchemy_utils/functions/database.pyc
${PYSITELIB}/sqlalchemy_utils/functions/database.pyo
-${PYSITELIB}/sqlalchemy_utils/functions/defer_except.py
-${PYSITELIB}/sqlalchemy_utils/functions/defer_except.pyc
-${PYSITELIB}/sqlalchemy_utils/functions/defer_except.pyo
${PYSITELIB}/sqlalchemy_utils/functions/foreign_keys.py
${PYSITELIB}/sqlalchemy_utils/functions/foreign_keys.pyc
${PYSITELIB}/sqlalchemy_utils/functions/foreign_keys.pyo
@@ -65,6 +62,9 @@ ${PYSITELIB}/sqlalchemy_utils/listeners.pyo
${PYSITELIB}/sqlalchemy_utils/models.py
${PYSITELIB}/sqlalchemy_utils/models.pyc
${PYSITELIB}/sqlalchemy_utils/models.pyo
+${PYSITELIB}/sqlalchemy_utils/observer.py
+${PYSITELIB}/sqlalchemy_utils/observer.pyc
+${PYSITELIB}/sqlalchemy_utils/observer.pyo
${PYSITELIB}/sqlalchemy_utils/operators.py
${PYSITELIB}/sqlalchemy_utils/operators.pyc
${PYSITELIB}/sqlalchemy_utils/operators.pyo
@@ -86,6 +86,15 @@ ${PYSITELIB}/sqlalchemy_utils/proxy_dict.pyo
${PYSITELIB}/sqlalchemy_utils/query_chain.py
${PYSITELIB}/sqlalchemy_utils/query_chain.pyc
${PYSITELIB}/sqlalchemy_utils/query_chain.pyo
+${PYSITELIB}/sqlalchemy_utils/relationships/__init__.py
+${PYSITELIB}/sqlalchemy_utils/relationships/__init__.pyc
+${PYSITELIB}/sqlalchemy_utils/relationships/__init__.pyo
+${PYSITELIB}/sqlalchemy_utils/relationships/chained_join.py
+${PYSITELIB}/sqlalchemy_utils/relationships/chained_join.pyc
+${PYSITELIB}/sqlalchemy_utils/relationships/chained_join.pyo
+${PYSITELIB}/sqlalchemy_utils/relationships/select_aggregate.py
+${PYSITELIB}/sqlalchemy_utils/relationships/select_aggregate.pyc
+${PYSITELIB}/sqlalchemy_utils/relationships/select_aggregate.pyo
${PYSITELIB}/sqlalchemy_utils/types/__init__.py
${PYSITELIB}/sqlalchemy_utils/types/__init__.pyc
${PYSITELIB}/sqlalchemy_utils/types/__init__.pyo
diff --git a/databases/py-sqlalchemy-utils/distinfo b/databases/py-sqlalchemy-utils/distinfo
index 97a062b9e75..0f97ee907cc 100644
--- a/databases/py-sqlalchemy-utils/distinfo
+++ b/databases/py-sqlalchemy-utils/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2014/12/03 22:16:52 rodent Exp $
+$NetBSD: distinfo,v 1.6 2015/04/01 02:24:00 rodent Exp $
-SHA1 (SQLAlchemy-Utils-0.27.9.tar.gz) = c117914cb9e1bd7e4234c5008becb906bbe1c1c5
-RMD160 (SQLAlchemy-Utils-0.27.9.tar.gz) = 417870dc987e09983cd3c400c6ea258c32b571dd
-Size (SQLAlchemy-Utils-0.27.9.tar.gz) = 93455 bytes
+SHA1 (SQLAlchemy-Utils-0.29.8.tar.gz) = 5c6c2785cd590f46ebf666f27e01a3305bfbd8a5
+RMD160 (SQLAlchemy-Utils-0.29.8.tar.gz) = 600665c86d1938cf9cab05d4405d7ca3c50e13d6
+Size (SQLAlchemy-Utils-0.29.8.tar.gz) = 105654 bytes