Mercurial > p > roundup > code
diff CHANGES.txt @ 6149:6a2de9606652
Supply charset utf-8 for mysql connection
Supply charset argument for connection creation for mysql, even for
python2: The parameter was conditional on python version > 2 but seems
to work fine with python2.7. According to the MySQLdb API docs, the
charset argument is supported with MySQL 4.1 which was released in 2004.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Thu, 30 Apr 2020 13:27:04 +0200 |
| parents | 8497bf3f23a1 |
| children | edbd4bba728a |
line wrap: on
line diff
--- a/CHANGES.txt Wed Apr 29 16:30:27 2020 +0200 +++ b/CHANGES.txt Thu Apr 30 13:27:04 2020 +0200 @@ -19,6 +19,21 @@ Meerwald) - exception in logout action when there is no session (Christof Meerwald) +- Supply charset argument for connection creation for mysql, even for + python2: The parameter was conditional on python version > 2 but seems to + work fine with python2.7. According to the MySQLdb API docs, the + charset argument is supported with MySQL 4.1 which was released in + 2004. (Ralf Schlatterbeck) + +Features: + +- When defining Link or Multilink properties in the schema, it's now + possible to add a parameter rev_multilink that accepts a property name + to be inserted into the linked-to class. So this creates a reverse + Multilink property in the linked-to class. This Multilink is read-only + (cannot be updated) but can be used in filter -- and thus in normal + index templates as well as in the REST and XMLRPC APIs. (Ralf + Schlatterbeck) 2020-04-05 2.0.0 beta 0 @@ -74,13 +89,6 @@ with new RoundupException (inheriting from Exception) for most roundup exceptions. (John Rouillard and Ralf Schlatterbeck on request from Robert Klonner.) -- When defining Link or Multilink properties in the schema, it's now - possible to add a parameter rev_multilink that accepts a property name - to be inserted into the linked-to class. So this creates a reverse - Multilink property in the linked-to class. This Multilink is read-only - (cannot be updated) but can be used in filter -- and thus in normal - index templates as well as in the REST and XMLRPC APIs. (Ralf - Schlatterbeck) Fixed:
