1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
|
Changelog
---------
Here you can see the full list of changes between each SQLAlchemy-Utils release.
0.41.2 (2024-03-22)
^^^^^^^^^^^^^^^^^^^
- Fix breaking change introduced on SQLAlchemy 2.0.22 changes to `attributes.AttributeImpl` constructor (#733)
0.41.1 (2023-04-27)
^^^^^^^^^^^^^^^^^^^
- Use a custom SQL construct for refreshing materialized views in
`refresh_materialized_view` (#703)
0.41.0 (2023-04-13)
^^^^^^^^^^^^^^^^^^^
- Support psycopg3 for ``create_database()`` and ``delete_database()``.
(#701, pull request by LerikP)
0.40.0 (2023-02-12)
^^^^^^^^^^^^^^^^^^^
- Remove Python 3.6 support
- Add SQLAlchemy 2 support
- Add comparison operator support for LTree type (#668, pull request by salimfadhley)
0.39.0 (2022-12-23)
^^^^^^^^^^^^^^^^^^^
- Support Python 3.11.
- Add pre-commit hooks for uniform text checks, isort, flake8, and pyupgrade.
- Fix a crash that occurs if the ``colour-science`` package is installed,
which shares the same import name as the ``colour`` package that sqlalchemy-utils supports.
(`#637 <https://github.com/kvesteri/sqlalchemy-utils/pull/637>`_, courtesy of JayPalm)
- Fix a crash that occurs if the installed sqlalchemy version is a beta (like ``"2.0.0b3"``).
(Reported in `#643 <https://github.com/kvesteri/sqlalchemy-utils/pull/643>`_, thanks Dinmukhamet!)
0.38.3 (2022-07-11)
^^^^^^^^^^^^^^^^^^^
- Fixed double-quoted UUID's in sqlalchemy >= 1.4.30 (#581, pull request courtesy of kurtmckee)
- Fixed create_database() and drop_database() crashing with CockroachDB (#586, pull request courtesy of kurtmckee)
- Added mixed case support for pg composite (#584, pull request courtesy of bamartin125)
- Support Python 3.10.
- Drop support for Python 3.4 and 3.5.
- Remove the dependency on the six package. (#605)
- Introduce sqlalchemy 2.0 compatibility. (#513)
0.38.2 (2021-12-29)
^^^^^^^^^^^^^^^^^^^
- Added inherit_cache=False in order to avoid SQLAlchemy warnings in `cast_locale_expr` (#571)
0.38.1 (2021-12-21)
^^^^^^^^^^^^^^^^^^^
- Added cache_ok=True for various different types
0.38.0 (2021-12-21)
^^^^^^^^^^^^^^^^^^^
- Removed CompositeArray. Instead of CompositeArray one should use ARRAY(dimensions=1)
- Made ChoicesType only convert lists to tuples internally.
0.37.9 (2021-10-19)
^^^^^^^^^^^^^^^^^^^
- Fixed base padding class abstract methods (#547, pull request courtesy of dpgaspar)
- Optimized cast_locale function (#552, pull request courtesy of tvuotila)
- Allow for arbitrary Table keyword arguments in create_table_from_selectable (#551, pull request courtesy of quoimec)
0.37.8 (2021-06-28)
^^^^^^^^^^^^^^^^^^^
- Added 'zoneinfo' backend to TimezoneType (#510, pull request courtesy of huonw)
0.37.7 (2021-06-15)
^^^^^^^^^^^^^^^^^^^
- Added identifier quoting for view functions and constructs
- Added literal processor for UUIDType
0.37.6 (2021-06-02)
^^^^^^^^^^^^^^^^^^^
- Added `cache_ok=True` for TSVectorType
0.37.5 (2021-05-31)
^^^^^^^^^^^^^^^^^^^
- Fixed instant_defaults_listener to respect constructor supplied kwargs (#516, pull request courtesy of soundstripe)
0.37.4 (2021-05-21)
^^^^^^^^^^^^^^^^^^^
- Fixed incorrect Ltree.lca behaviour (#468, pull request courtesy of slymit)
0.37.3 (2021-05-16)
^^^^^^^^^^^^^^^^^^^
- Added `cache_ok=True` for all custom types
- Added CockroachDB support for UUIDType (#526, pull request courtesy of chrishemmings)
0.37.2 (2021-05-05)
^^^^^^^^^^^^^^^^^^^
- Added python_requires to setup.py
0.37.1 (2021-05-03)
^^^^^^^^^^^^^^^^^^^
- Removed py27 from pypi wheel
0.37.0 (2021-04-12)
^^^^^^^^^^^^^^^^^^^
- Added SQLAlchemy 1.4 support
- Fixed database_exists() on PostgreSQL (#462)
- Added create_database support pymssql (#486)
- Removed `sort_query`, `get_query_entities` and `get_query_entity_by_alias` functions
0.36.8 (2020-07-08)
^^^^^^^^^^^^^^^^^^^
- Don't connect to 'postgres' data base for database existence check (#372, pull request courtesy of bernt-matthias)
0.36.7 (2020-07-02)
^^^^^^^^^^^^^^^^^^^
- Fix dynamic relationships for observables (#455)
0.36.6 (2020-05-24)
^^^^^^^^^^^^^^^^^^^
- Dropped support for Python 2.7 (thanks for the help graingert)
- Reverted #426 and added support for Legacy Encrypted Type (#450, pull request courtesy of rushilsrivastava)
- Added psycopg2cffi support for create_database and drop_database (#447, pull request courtesy of DominicBurkart)
0.36.5 (2020-05-03)
^^^^^^^^^^^^^^^^^^^
- Added support for dictionary input in CompositeType (#435, pull request courtesy of cozos)
- Added new EnrichedDateTime and EnrichedDate types (#403, pull request courtesy of yk-lab)
- Using String instead of LargeBinary for impl of EncryptedType (#426, pull request courtesy of aicioara)
- Added support for JSONType in EncryptedType (#439, pull request courtesy of rushilsrivastava)
0.36.4 (2020-04-30)
^^^^^^^^^^^^^^^^^^^
- Added jsonb_sql function (#377, pull request courtesy of getglad)
- Drop py27 support
0.36.3 (2020-03-18)
^^^^^^^^^^^^^^^^^^^
- Added hash method for PhoneNumberType (#428, pull request courtesy of hanc1208)
0.36.2 (2020-03-16)
^^^^^^^^^^^^^^^^^^^
- Added repr for UUIDType (#424, pull request courtesy of ziima)
0.36.1 (2019-12-23)
^^^^^^^^^^^^^^^^^^^
- Added support for CASCADE option when dropping views (#406, pull request courtesy of amicks)
- Added `aliases` parameter to create_materialized_view function.
0.36.0 (2019-12-08)
^^^^^^^^^^^^^^^^^^^
- Removed explain and explain_analyze due to the internal changes in SQLAlchemy version 1.3.
0.35.0 (2019-11-01)
^^^^^^^^^^^^^^^^^^^
- Removed some deprecation warnings
- Added Int8RangeType (#401, pull request courtesy of lpsinger)
0.34.2 (2019-08-20)
^^^^^^^^^^^^^^^^^^^
- Remove ABC deprecation warnings (#386, pull request courtesy of VizualAbstract)
0.34.1 (2019-07-15)
^^^^^^^^^^^^^^^^^^^
- Remove deprecation warnings (#379, pull request courtesy of Le-Stagiaire)
- Drop py34 support
0.34.0 (2019-06-09)
^^^^^^^^^^^^^^^^^^^
- Removed array_agg compilation which was never a good idea and collided with the latest version of SA. (#374)
- Removed deprecation warnings (#373, pull request courtesy of pbasista)
0.33.12 (2019-02-02)
^^^^^^^^^^^^^^^^^^^^
- Added ordering support for Country primitive (#361, pull request courtesy of TrilceAC)
0.33.11 (2019-01-13)
^^^^^^^^^^^^^^^^^^^^
- Added support for creating and dropping a PostgreSQL database when using pg8000 driver (#303, pull request courtesy of mohaseeb)
0.33.10 (2018-12-27)
^^^^^^^^^^^^^^^^^^^^
- Removed optional dependency to Flask-Babel. Now using Babel instead. (#333, pull request courtesy of aveuiller)
0.33.9 (2018-11-19)
^^^^^^^^^^^^^^^^^^^
- Fixed SQLite database_exists to check for correct file format (#306, pull request courtesy of jomasti)
0.33.8 (2018-11-19)
^^^^^^^^^^^^^^^^^^^
- Added support of short-code in PhoneNumberType (#348, pull request courtesy of anandtripathi5)
0.33.7 (2018-11-19)
^^^^^^^^^^^^^^^^^^^
- Added MSSQL support for create_database and drop_database (#337, pull request courtesy of jomasti)
0.33.6 (2018-10-14)
^^^^^^^^^^^^^^^^^^^
- Fixed passlib compatibility issue (again) (#342)
- Added support for SQL VIEWs
0.33.5 (2018-09-19)
^^^^^^^^^^^^^^^^^^^
- Added optional attr parameter for locale calleble in TranslationHybrid
- Fixed an issue with PasswordType so that it is compatible with older versions of passlib (#342)
0.33.4 (2018-09-11)
^^^^^^^^^^^^^^^^^^^
- Made PasswordType use `hash` function instead of deprecated `encrypt` function (#341, pull request courtesy of libre-man)
0.33.3 (2018-04-29)
^^^^^^^^^^^^^^^^^^^
- Added new AesGcmEngine (#322, pull request courtesy of manishahluwalia)
0.33.2 (2018-04-02)
^^^^^^^^^^^^^^^^^^^
- Added support for universal wheels (#312, pull request courtesy of nsoranzo)
- Fixed usage of template0 and template1 with postgres database functions. (#286, pull request courtesy of funkybob)
0.33.1 (2018-03-19)
^^^^^^^^^^^^^^^^^^^
- Fixed EncryptedType for Oracle padding attack (#316, pull request courtesy of manishahluwalia)
0.33.0 (2018-02-18)
^^^^^^^^^^^^^^^^^^^
- Added support for materialized views in PostgreSQL
- Added Ltree.descendant_of and Ltree.ancestor_of (#311, pull request courtesy of kageurufu)
- Dropped Python 3.3 support
- Fixed EncryptedType padding (#301, pull request courtesy of konstantinoskostis)
0.32.21 (2017-11-11)
^^^^^^^^^^^^^^^^^^^^
- Close connections on exists, create and drop database functions (#295, pull request courtesy of Terseus)
0.32.20 (2017-11-04)
^^^^^^^^^^^^^^^^^^^^
- Added `__hash__` method for choice objects (#294, pull request courtesy of havelock)
0.32.19 (2017-10-17)
^^^^^^^^^^^^^^^^^^^^
- Fixed select_correlated_expression order by for intermediate table aliases
0.32.18 (2017-10-06)
^^^^^^^^^^^^^^^^^^^^
- Made aggregated attributes to work with subclass objects (#287, pull request courtesy of fayazkhan)
0.32.17 (2017-09-29)
^^^^^^^^^^^^^^^^^^^^
- Added support for MSSQL uniqueidentifier type (#283, pull request courtesy of nHurD)
0.32.16 (2017-09-01)
^^^^^^^^^^^^^^^^^^^^
- Added more hints when decrypting AES with an invalid key (#275, pull request courtesy of xrmx)
0.32.15 (2017-08-31)
^^^^^^^^^^^^^^^^^^^^
- Added better handling of date types for EncryptedType (#184, pull request courtesy of konstantinoskostis)
0.32.14 (2017-03-27)
^^^^^^^^^^^^^^^^^^^^
- Fixed drop_database version comparison
0.32.13 (2017-03-12)
^^^^^^^^^^^^^^^^^^^^
- Fixed a DeprecationWarning by using LargeBinary instead of Binary (#263, pull request courtesy of jacquerie)
0.32.12 (2016-12-18)
^^^^^^^^^^^^^^^^^^^^
- Added generic_repr decorator
0.32.11 (2016-11-19)
^^^^^^^^^^^^^^^^^^^^
- TimeZoneType support for static timezones (#244, pull request courtesy of fuhrysteve)
- Added SQLite support for PasswordType (#254, pull request courtesy of frol)
0.32.10 (2016-10-20)
^^^^^^^^^^^^^^^^^^^^
- Added PhoneNumber as the python_type for PhoneNumberType (#248)
- Made auto_delete_orphans support backref tuples (#234, pull request courtesy of vToMy)
0.32.9 (2016-07-17)
^^^^^^^^^^^^^^^^^^^
- Added support for multi-column observers (#231, pull request courtesy of quantus)
0.32.8 (2016-05-20)
^^^^^^^^^^^^^^^^^^^
- Fixed EmailType to respect constructor args (#230, pull request courtesy of quantus)
0.32.7 (2016-05-20)
^^^^^^^^^^^^^^^^^^^
- Made PhoneNumber exceptions inherit SQLAlchemy's DontWrapMixin (#219, pull request courtesy of JackWink)
0.32.6 (2016-05-11)
^^^^^^^^^^^^^^^^^^^
- Added support for timezones with ArrowType (#218, pull request courtesy of jmagnusson)
0.32.5 (2016-04-29)
^^^^^^^^^^^^^^^^^^^
- Fixed import issue with latest version of SQLAlchemy (#215)
0.32.4 (2016-04-25)
^^^^^^^^^^^^^^^^^^^
- Added LtreeType for PostgreSQL ltree extension
- Added Ltree primitive data type
0.32.3 (2016-04-20)
^^^^^^^^^^^^^^^^^^^
- Added support for PhoneNumber objects as composites
0.32.2 (2016-04-20)
^^^^^^^^^^^^^^^^^^^
- Fixed PasswordType to not access LazyCryptContext on type init (#211, pull request courtesy of olegpidsadnyi)
0.32.1 (2016-03-30)
^^^^^^^^^^^^^^^^^^^
- Fixed database helpers for sqlite (#208, pull request courtesy of RobertDeRose)
- Fixed TranslationHybrid aliased entities handling (#198, pull request courtesy of jmagnusson)
0.32.0 (2016-03-17)
^^^^^^^^^^^^^^^^^^^
- Dropped py26 support
- Made PasswordType to use LazyCryptContext by default (#204, courtesy of olegpidsadnyi)
0.31.6 (2016-01-21)
^^^^^^^^^^^^^^^^^^^
- Added literal parameter processing for ArrowType (#182, pull request courtesy of jmagnusson)
0.31.5 (2016-01-14)
^^^^^^^^^^^^^^^^^^^
- Fixed scalar parsing of LocaleType (#173)
0.31.4 (2015-12-06)
^^^^^^^^^^^^^^^^^^^
- Fixed column alias handling with assert_* functions (#175)
0.31.3 (2015-11-09)
^^^^^^^^^^^^^^^^^^^
- Fixed non-ascii string handling in composite types (#170)
0.31.2 (2015-10-30)
^^^^^^^^^^^^^^^^^^^
- Fixed observes crashing when observable root_obj is ``None`` (#168)
0.31.1 (2015-10-26)
^^^^^^^^^^^^^^^^^^^
- Column observers only notified when actual changes have been made to underlying columns (#138)
0.31.0 (2015-09-17)
^^^^^^^^^^^^^^^^^^^
- Made has_index allow fk constraint as parameter
- Made has_unique_index allow fk constraint as parameter
- Made the extra packages in setup.py to be returned in deterministic order (courtesy of thomasgoirand)
- Removed is_indexed_foreign_key (superceded by more versatile has_index)
- Fixed LocaleType territory parsing (courtesy of dahlia)
0.30.17 (2015-08-16)
^^^^^^^^^^^^^^^^^^^^
- Added correlate parameter to select_correlated_expression function
0.30.16 (2015-08-04)
^^^^^^^^^^^^^^^^^^^^
- Fixed sort_query handling of aliased classes with hybrid properties
0.30.15 (2015-07-28)
^^^^^^^^^^^^^^^^^^^^
- Added support for aliased classes in get_hybrid_properties utility function
0.30.14 (2015-07-23)
^^^^^^^^^^^^^^^^^^^^
- Added cast_if utility function
0.30.13 (2015-07-21)
^^^^^^^^^^^^^^^^^^^^
- Added support for InstrumentedAttributes, ColumnProperties and Columns in get_columns function
0.30.12 (2015-07-05)
^^^^^^^^^^^^^^^^^^^^
- Added support for PhoneNumber extensions (#121)
0.30.11 (2015-06-18)
^^^^^^^^^^^^^^^^^^^^
- Fix None type handling of ChoiceType
- Make locale casting for translation hybrid expressions cast locales on compilation phase. This extra lazy locale casting is needed in some cases where translation hybrid expressions are used before get_locale
function is available.
0.30.10 (2015-06-17)
^^^^^^^^^^^^^^^^^^^^
- Added better support for dynamic locales in translation_hybrid
- Make babel dependent primitive types to use Locale('en') for data validation instead of current locale. Using current locale leads to infinite recursion in cases where the loaded data has dependency to the loaded object's locale.
0.30.9 (2015-06-09)
^^^^^^^^^^^^^^^^^^^
- Added get_type utility function
- Added default parameter for array_agg function
0.30.8 (2015-06-05)
^^^^^^^^^^^^^^^^^^^
- Added Asterisk compiler
- Added row_to_json GenericFunction
- Added array_agg GenericFunction
- Made quote function accept dialect object as the first paremeter
- Made has_index work with tables without primary keys (#148)
0.30.7 (2015-05-28)
^^^^^^^^^^^^^^^^^^^
- Fixed CompositeType null handling
0.30.6 (2015-05-28)
^^^^^^^^^^^^^^^^^^^
- Made psycopg2 requirement optional (#145, #146)
- Made CompositeArray work with tuples given as bind parameters
0.30.5 (2015-05-27)
^^^^^^^^^^^^^^^^^^^
- Fixed CompositeType bind parameter processing when one of the fields is of TypeDecorator type and
CompositeType is used inside ARRAY type.
0.30.4 (2015-05-27)
^^^^^^^^^^^^^^^^^^^
- Fixed CompositeType bind parameter processing when one of the fields is of TypeDecorator type.
0.30.3 (2015-05-27)
^^^^^^^^^^^^^^^^^^^
- Added length property to range types
- Added CompositeType for PostgreSQL
0.30.2 (2015-05-21)
^^^^^^^^^^^^^^^^^^^
- Fixed ``assert_max_length``, ``assert_non_nullable``, ``assert_min_value`` and ``assert_max_value`` not properly raising an ``AssertionError`` when the assertion failed.
0.30.1 (2015-05-06)
^^^^^^^^^^^^^^^^^^^
- Drop undocumented batch fetch feature. Let's wait until the inner workings of SQLAlchemy loading API is well-documented.
- Fixed GenericRelationshipProperty comparator to work with SA 1.0.x (#139)
- Make all foreign key helpers SA 1.0 compliant
- Make translation_hybrid expression work the same way as SQLAlchemy-i18n translation expressions
- Update SQLAlchemy dependency to 1.0
0.30.0 (2015-04-15)
^^^^^^^^^^^^^^^^^^^
- Added __hash__ method to Country class
- Made Country validate itself during object initialization
- Made Country string coercible
- Removed deprecated function generates
- Fixed observes function to work with simple column properties
0.29.9 (2015-04-07)
^^^^^^^^^^^^^^^^^^^
- Added CurrencyType (#19) and Currency class
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
0.27.9 (2014-12-01)
^^^^^^^^^^^^^^^^^^^
- Fixed aggregated decorator many-to-many relationship handling
- Fixed aggregated column alias handling
0.27.8 (2014-11-13)
^^^^^^^^^^^^^^^^^^^
- Added is_loaded utility function
- Removed deprecated has_any_changes
0.27.7 (2014-11-03)
^^^^^^^^^^^^^^^^^^^
- Added support for Column and ColumnEntity objects in get_mapper
- Made make_order_by_deterministic add deterministic column more aggressively
0.27.6 (2014-10-29)
^^^^^^^^^^^^^^^^^^^
- Fixed assert_max_length not working with non nullable columns
- Add PostgreSQL < 9.2 support for drop_database
0.27.5 (2014-10-24)
^^^^^^^^^^^^^^^^^^^
- Made assert_* functions automatically rollback session
- Changed make_order_by_deterministic attach order by primary key for queries without order by
- Fixed alias handling in has_unique_index
- Fixed alias handling in has_index
- Fixed alias handling in make_order_by_deterministic
0.27.4 (2014-10-23)
^^^^^^^^^^^^^^^^^^^
- Added assert_non_nullable, assert_nullable and assert_max_length testing functions
0.27.3 (2014-10-22)
^^^^^^^^^^^^^^^^^^^
- Added supported for various SQLAlchemy objects in make_order_by_deterministic (previosly this function threw exceptions for other than Column objects)
0.27.2 (2014-10-21)
^^^^^^^^^^^^^^^^^^^
- Fixed MapperEntity handling in get_mapper and get_tables utility functions
- Fixed make_order_by_deterministic handling for queries without order by (no just silently ignores those rather than throws exception)
- Made make_order_by_deterministic if given query uses strings as order by args
0.27.1 (2014-10-20)
^^^^^^^^^^^^^^^^^^^
- Added support for more SQLAlchemy based objects and classes in get_tables function
- Added has_unique_index utility function
- Added make_order_by_deterministic utility function
0.27.0 (2014-10-14)
^^^^^^^^^^^^^^^^^^^
- Added EncryptedType
0.26.17 (2014-10-07)
^^^^^^^^^^^^^^^^^^^^
- Added explain and explain_analyze expressions
- Added analyze function
0.26.16 (2014-09-09)
^^^^^^^^^^^^^^^^^^^^
- Fix aggregate value handling for cascade deleted objects
- Fix ambiguous column sorting with join table inheritance in sort_query
0.26.15 (2014-08-28)
^^^^^^^^^^^^^^^^^^^^
- Fix sort_query support for queries using mappers (not declarative classes) with calculated column properties
0.26.14 (2014-08-26)
^^^^^^^^^^^^^^^^^^^^
- Added count method to QueryChain class
0.26.13 (2014-08-23)
^^^^^^^^^^^^^^^^^^^^
- Added template parameter to create_database function
0.26.12 (2014-08-22)
^^^^^^^^^^^^^^^^^^^^
- Added quote utility function
0.26.11 (2014-08-21)
^^^^^^^^^^^^^^^^^^^^
- Fixed dependent_objects support for single table inheritance
0.26.10 (2014-08-13)
^^^^^^^^^^^^^^^^^^^^
- Fixed dependent_objects support for multiple dependencies
0.26.9 (2014-08-06)
^^^^^^^^^^^^^^^^^^^
- Fixed PasswordType with Oracle dialect
- Added support for sort_query and attributes on mappers using with_polymorphic
0.26.8 (2014-07-30)
^^^^^^^^^^^^^^^^^^^
- Fixed order by column property handling in sort_query when using polymorphic inheritance
- Added support for synonym properties in sort_query
0.26.7 (2014-07-29)
^^^^^^^^^^^^^^^^^^^
- Made sort_query support hybrid properties where function name != property name
- Made get_hybrid_properties return a dictionary of property keys and hybrid properties
- Added documentation for get_hybrid_properties
0.26.6 (2014-07-22)
^^^^^^^^^^^^^^^^^^^
- Added exclude parameter to has_changes
- Made has_changes accept multiple attributes as second parameter
0.26.5 (2014-07-11)
^^^^^^^^^^^^^^^^^^^
- Added get_column_key
- Added Timestamp model mixin
0.26.4 (2014-06-25)
^^^^^^^^^^^^^^^^^^^
- Added auto_delete_orphans
0.26.3 (2014-06-25)
^^^^^^^^^^^^^^^^^^^
- Added has_any_changes
0.26.2 (2014-05-29)
^^^^^^^^^^^^^^^^^^^
- Added various fixes for bugs found in use of psycopg2
- Added has_index
0.26.1 (2014-05-14)
^^^^^^^^^^^^^^^^^^^
- Added get_bind
- Added group_foreign_keys
- Added get_mapper
- Added merge_references
0.26.0 (2014-05-07)
^^^^^^^^^^^^^^^^^^^
- Added get_referencing_foreign_keys
- Added get_tables
- Added QueryChain
- Added dependent_objects
0.25.4 (2014-04-22)
^^^^^^^^^^^^^^^^^^^
- Added ExpressionParser
0.25.3 (2014-04-21)
^^^^^^^^^^^^^^^^^^^
- Added support for primary key aliases in get_primary_keys function
- Added get_columns utility function
0.25.2 (2014-03-25)
^^^^^^^^^^^^^^^^^^^
- Fixed sort_query handling of regular properties (no longer throws exceptions)
0.25.1 (2014-03-20)
^^^^^^^^^^^^^^^^^^^
- Added more import json as a fallback if anyjson package is not installed for JSONType
- Fixed query_entities labeled select handling
0.25.0 (2014-03-05)
^^^^^^^^^^^^^^^^^^^
- Added single table inheritance support for generic_relationship
- Added support for comparing class super types with generic relationships
- BC break: In order to support different inheritance strategies generic_relationship now uses class names as discriminators instead of table names.
0.24.4 (2014-03-05)
^^^^^^^^^^^^^^^^^^^
- Added hybrid_property support for generic_relationship
0.24.3 (2014-03-05)
^^^^^^^^^^^^^^^^^^^
- Added string argument support for generic_relationship
- Added composite primary key support for generic_relationship
0.24.2 (2014-03-04)
^^^^^^^^^^^^^^^^^^^
- Remove toolz from dependencies
- Add step argument support for all range types
- Optional intervals dependency updated to 0.2.4
0.24.1 (2014-02-21)
^^^^^^^^^^^^^^^^^^^
- Made identity return a tuple in all cases
- Added support for declarative model classes as identity function's first argument
0.24.0 (2014-02-18)
^^^^^^^^^^^^^^^^^^^
- Added getdotattr
- Added Path and AttrPath classes
- SQLAlchemy dependency updated to 0.9.3
- Optional intervals dependency updated to 0.2.2
0.23.5 (2014-02-15)
^^^^^^^^^^^^^^^^^^^
- Fixed ArrowType timezone handling
0.23.4 (2014-01-30)
^^^^^^^^^^^^^^^^^^^
- Added force_instant_defaults function
- Added force_auto_coercion function
- Added source paramater for generates function
0.23.3 (2014-01-21)
^^^^^^^^^^^^^^^^^^^
- Fixed backref handling for aggregates
- Added support for many-to-many aggregates
0.23.2 (2014-01-21)
^^^^^^^^^^^^^^^^^^^
- Fixed issues with ColorType and ChoiceType string bound parameter processing
- Fixed inheritance handling with aggregates
- Fixed generic relationship nullifying
0.23.1 (2014-01-14)
^^^^^^^^^^^^^^^^^^^
- Added support for membership operators 'in' and 'not in' in range types
- Added support for contains and contained_by operators in range types
- Added range types to main module import
0.23.0 (2014-01-14)
^^^^^^^^^^^^^^^^^^^
- Deprecated NumberRangeType, NumberRange
- Added IntRangeType, NumericRangeType, DateRangeType, DateTimeRangeType
- Moved NumberRange functionality to intervals package
0.22.1 (2014-01-06)
^^^^^^^^^^^^^^^^^^^
- Fixed in issue where NumberRange would not always raise RangeBoundsException with object initialization
0.22.0 (2014-01-04)
^^^^^^^^^^^^^^^^^^^
- Added SQLAlchemy 0.9 support
- Made JSONType use sqlalchemy.dialects.postgresql.JSON if available
- Updated psycopg requirement to 2.5.1
- Deprecated NumberRange classmethod constructors
0.21.0 (2013-11-11)
^^^^^^^^^^^^^^^^^^^
- Added support for cached aggregates
0.20.0 (2013-10-24)
^^^^^^^^^^^^^^^^^^^
- Added JSONType
- NumberRangeType now supports coercing of integer values
0.19.0 (2013-10-24)
^^^^^^^^^^^^^^^^^^^
- Added ChoiceType
0.18.0 (2013-10-24)
^^^^^^^^^^^^^^^^^^^
- Added LocaleType
0.17.1 (2013-10-23)
^^^^^^^^^^^^^^^^^^^
- Removed compat module, added total_ordering package to Python 2.6 requirements
- Enhanced render_statement function
0.17.0 (2013-10-23)
^^^^^^^^^^^^^^^^^^^
- Added URLType
0.16.25 (2013-10-18)
^^^^^^^^^^^^^^^^^^^^
- Added __ne__ operator implementation for Country object
- New utility function: naturally_equivalent
0.16.24 (2013-10-04)
^^^^^^^^^^^^^^^^^^^^
- Renamed match operator of TSVectorType to match_tsquery in order to avoid confusion with existing match operator
- Added catalog parameter support for match_tsquery operator
0.16.23 (2013-10-04)
^^^^^^^^^^^^^^^^^^^^
- Added match operator for TSVectorType
0.16.22 (2013-10-03)
^^^^^^^^^^^^^^^^^^^^
- Added optional columns and options parameter for TSVectorType
0.16.21 (2013-09-29)
^^^^^^^^^^^^^^^^^^^^
- Fixed an issue with sort_query where sort by relationship property would cause an exception.
0.16.20 (2013-09-26)
^^^^^^^^^^^^^^^^^^^^
- Fixed an issue with sort_query where sort by main entity's attribute would fail if joins where applied.
0.16.19 (2013-09-21)
^^^^^^^^^^^^^^^^^^^^
- Added configuration for silent mode in sort_query
- Added support for aliased entity hybrid properties in sort_query
0.16.18 (2013-09-19)
^^^^^^^^^^^^^^^^^^^^
- Fixed sort_query hybrid property handling (again)
0.16.17 (2013-09-19)
^^^^^^^^^^^^^^^^^^^^
- Added support for relation hybrid property sorting in sort_query
0.16.16 (2013-09-18)
^^^^^^^^^^^^^^^^^^^^
- Fixed fatal bug in batch fetch join table inheritance handling (not handling one-to-many relations properly)
0.16.15 (2013-09-17)
^^^^^^^^^^^^^^^^^^^^
- Fixed sort_query hybrid property handling (now supports both ascending and descending sorting)
0.16.14 (2013-09-17)
^^^^^^^^^^^^^^^^^^^^
- More pythonic __init__ for Country allowing Country(Country('fi')) == Country('fi')
- Better equality operator for Country
0.16.13 (2013-09-17)
^^^^^^^^^^^^^^^^^^^^
- Added i18n module for configuration of locale dependant types
0.16.12 (2013-09-17)
^^^^^^^^^^^^^^^^^^^^
- Fixed remaining Python 3 issues with WeekDaysType
- Better bound method handling for WeekDay get_locale
0.16.11 (2013-09-17)
^^^^^^^^^^^^^^^^^^^^
- Python 3 support for WeekDaysType
- Fixed a bug in batch fetch for situations where joined paths contain zero entitites
0.16.10 (2013-09-16)
^^^^^^^^^^^^^^^^^^^^
- Added WeekDaysType
0.16.9 (2013-08-21)
^^^^^^^^^^^^^^^^^^^
- Support for many-to-one directed relationship properties batch fetching
0.16.8 (2013-08-21)
^^^^^^^^^^^^^^^^^^^
- PasswordType support for PostgreSQL
- Hybrid property for sort_query
0.16.7 (2013-08-18)
^^^^^^^^^^^^^^^^^^^
- Added better handling of local column names in batch_fetch
- PasswordType gets default length even if no crypt context schemes provided
0.16.6 (2013-08-16)
^^^^^^^^^^^^^^^^^^^
- Rewritten batch_fetch schematics, new syntax for backref population
0.16.5 (2013-08-08)
^^^^^^^^^^^^^^^^^^^
- Initial backref population forcing support for batch_fetch
0.16.4 (2013-08-08)
^^^^^^^^^^^^^^^^^^^
- Initial many-to-many relations support for batch_fetch
0.16.3 (2013-08-05)
^^^^^^^^^^^^^^^^^^^
- Added batch_fetch function
0.16.2 (2013-08-01)
^^^^^^^^^^^^^^^^^^^
- Added to_tsquery and plainto_tsquery sql function expressions
0.16.1 (2013-08-01)
^^^^^^^^^^^^^^^^^^^
- Added tsvector_concat and tsvector_match sql function expressions
0.16.0 (2013-07-25)
^^^^^^^^^^^^^^^^^^^
- Added ArrowType
0.15.1 (2013-07-22)
^^^^^^^^^^^^^^^^^^^
- Added utility functions declarative_base, identity and is_auto_assigned_date_column
0.15.0 (2013-07-22)
^^^^^^^^^^^^^^^^^^^
- Added PasswordType
0.14.7 (2013-07-22)
^^^^^^^^^^^^^^^^^^^
- Lazy import for ipaddress package
0.14.6 (2013-07-22)
^^^^^^^^^^^^^^^^^^^
- Fixed UUID import issues
0.14.5 (2013-07-22)
^^^^^^^^^^^^^^^^^^^
- Added UUID type
0.14.4 (2013-07-03)
^^^^^^^^^^^^^^^^^^^
- Added TSVector type
0.14.3 (2013-07-03)
^^^^^^^^^^^^^^^^^^^
- Added non_indexed_foreign_keys utility function
0.14.2 (2013-07-02)
^^^^^^^^^^^^^^^^^^^
- Fixed py3 bug introduced in 0.14.1
0.14.1 (2013-07-02)
^^^^^^^^^^^^^^^^^^^
- Made sort_query support column_property selects with labels
0.14.0 (2013-07-02)
^^^^^^^^^^^^^^^^^^^
- Python 3 support, dropped python 2.5 support
0.13.3 (2013-06-11)
^^^^^^^^^^^^^^^^^^^
- Initial support for psycopg 2.5 NumericRange objects
0.13.2 (2013-06-11)
^^^^^^^^^^^^^^^^^^^
- QuerySorter now threadsafe.
0.13.1 (2013-06-11)
^^^^^^^^^^^^^^^^^^^
- Made sort_query function support multicolumn sorting.
0.13.0 (2013-06-05)
^^^^^^^^^^^^^^^^^^^
- Added table_name utility function.
0.12.5 (2013-06-05)
^^^^^^^^^^^^^^^^^^^
- ProxyDict now contains None values in cache - more efficient contains method.
0.12.4 (2013-06-01)
^^^^^^^^^^^^^^^^^^^
- Fixed ProxyDict contains method
0.12.3 (2013-05-30)
^^^^^^^^^^^^^^^^^^^
- Proxy dict expiration listener from function scope to global scope
0.12.2 (2013-05-29)
^^^^^^^^^^^^^^^^^^^
- Added automatic expiration of proxy dicts
0.12.1 (2013-05-18)
^^^^^^^^^^^^^^^^^^^
- Added utility functions remove_property and primary_keys
0.12.0 (2013-05-17)
^^^^^^^^^^^^^^^^^^^
- Added ProxyDict
0.11.0 (2013-05-08)
^^^^^^^^^^^^^^^^^^^
- Added coercion_listener
0.10.0 (2013-04-29)
^^^^^^^^^^^^^^^^^^^
- Added ColorType
0.9.1 (2013-04-15)
^^^^^^^^^^^^^^^^^^
- Renamed Email to EmailType and ScalarList to ScalarListType (unified type class naming convention)
0.9.0 (2013-04-11)
^^^^^^^^^^^^^^^^^^
- Added CaseInsensitiveComparator
- Added Email type
0.8.4 (2013-04-08)
^^^^^^^^^^^^^^^^^^
- Added sort by aliased and joined entity
0.8.3 (2013-04-03)
^^^^^^^^^^^^^^^^^^
- sort_query now supports labeled and subqueried scalars
0.8.2 (2013-04-03)
^^^^^^^^^^^^^^^^^^
- Fixed empty ScalarList handling
0.8.1 (2013-04-03)
^^^^^^^^^^^^^^^^^^
- Removed unnecessary print statement form ScalarList
- Documentation for ScalarList and NumberRange
0.8.0 (2013-04-02)
^^^^^^^^^^^^^^^^^^
- Added ScalarList type
- Fixed NumberRange bind param and result value processing
0.7.7 (2013-03-27)
^^^^^^^^^^^^^^^^^^
- Changed PhoneNumber string representation to the national phone number format
0.7.6 (2013-03-26)
^^^^^^^^^^^^^^^^^^
- NumberRange now wraps ValueErrors as NumberRangeExceptions
0.7.5 (2013-03-26)
^^^^^^^^^^^^^^^^^^
- Fixed defer_except
- Better string representations for NumberRange
0.7.4 (2013-03-26)
^^^^^^^^^^^^^^^^^^
- Fixed NumberRange upper bound parsing
0.7.3 (2013-03-26)
^^^^^^^^^^^^^^^^^^
- Enabled PhoneNumberType None value storing
0.7.2 (2013-03-26)
^^^^^^^^^^^^^^^^^^
- Enhanced string parsing for NumberRange
0.7.1 (2013-03-26)
^^^^^^^^^^^^^^^^^^
- Fixed requirements (now supports SQLAlchemy 0.8)
0.7.0 (2013-03-26)
^^^^^^^^^^^^^^^^^^
- Added NumberRange type
0.6.0 (2013-03-26)
^^^^^^^^^^^^^^^^^^
- Extended PhoneNumber class from python-phonenumbers library
0.5.0 (2013-03-20)
^^^^^^^^^^^^^^^^^^
- Added PhoneNumberType type decorator
0.4.0 (2013-03-01)
^^^^^^^^^^^^^^^^^^
- Renamed SmartList to InstrumentedList
- Added instrumented_list decorator
0.3.0 (2013-03-01)
^^^^^^^^^^^^^^^^^^
- Added new collection class SmartList
0.2.0 (2013-03-01)
^^^^^^^^^^^^^^^^^^
- Added new function defer_except()
0.1.0 (2013-01-12)
^^^^^^^^^^^^^^^^^^
- Initial public release
|