From e7b612a69e8b2ec29306d88e08b999dcf79a4822 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 22 Nov 2011 18:15:51 -0500 Subject: [PATCH] changelog --- CHANGES | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 6b7d0e0167..bb2266f0c8 100644 --- a/CHANGES +++ b/CHANGES @@ -5,12 +5,6 @@ CHANGES ======= 0.7.4 ===== -- examples - - [bug] Fixed bug in history_meta.py example where - the "unique" flag was not removed from a - single-table-inheritance subclass which - generates columns to put up onto the base. - - orm - [bug] Fixed backref behavior when "popping" the value off of a many-to-one in response to @@ -82,6 +76,16 @@ CHANGES causing failures later on. [ticket:2312] - sql + - [feature] The update() construct can now accommodate + multiple tables in the WHERE clause, which will + render an "UPDATE..FROM" construct, recognized by + Postgresql and MSSQL. When compiled on MySQL, + will instead generate "UPDATE t1, t2, ..". MySQL + additionally can render against multiple tables in the + SET clause, if Column objects are used as keys + in the "values" parameter or generative method. + [ticket:2166] [ticket:1944] + - [feature] Added accessor to types called "python_type", returns the rudimentary Python type object for a particular TypeEngine instance, if known, @@ -133,6 +137,12 @@ CHANGES - [bug] Unicode adjustments allow latest pymysql (post 0.4) to pass 100% on Python 2. +- examples + - [bug] Fixed bug in history_meta.py example where + the "unique" flag was not removed from a + single-table-inheritance subclass which + generates columns to put up onto the base. + 0.7.3 ===== - general -- 2.47.3