[commits] Horde branch master updated. c9f0a250a886a5316f7b7d056c34132bf8935bab

Jan Schneider jan at horde.org
Fri Jan 30 18:42:08 UTC 2015


The branch "master" has been updated.
The following is a summary of the commits.

from: 67256a66955bd703919ae34ada6fe96e9c2d58df

f8d811c Fix skip messages.
0e6ec98 Those queries no longer silently munge columns values anymore, in recent MySQL versions.
f2e88f3 Default values for blobs are not allowed.
4832014 Match PDO error message too.
ad2eec5 Fix configuration loading.
b1267ac Try to really close connections.
000d6e1 Not required.
1f8a8b2 Bad idea to silence potentially fatal calls.
05c43a6 No reason to skip this. No assertion but still tests if it runs without error.
c9f0a25 This is no longer an autoincrement column here.

Summary: http://github.com/horde/horde/compare/67256a66955bd703919ae34ada6fe96e9c2d58df...c9f0a250a886a5316f7b7d056c34132bf8935bab

-----------------------------------------------------------------------

commit f8d811cb545d45f681235c6bd392ca550ab7847f
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 16:53:47 2015 +0000

    Fix skip messages.

 framework/Db/test/Horde/Db/Adapter/MysqlBase.php      |    1 +
 framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlTest.php  |    1 +
 framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php |    1 +
 framework/Db/test/Horde/Db/Adapter/TestBase.php       |    2 +-
 4 files changed, 4 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/f8d811cb545d45f681235c6bd392ca550ab7847f

-----------------------------------------------------------------------

commit 0e6ec982acdb71bac18338afef1418dd998e5cdd
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 16:54:33 2015 +0000

    Those queries no longer silently munge columns values anymore, in recent MySQL versions.

 framework/Db/test/Horde/Db/Adapter/MysqlBase.php |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

http://github.com/horde/horde/commit/0e6ec982acdb71bac18338afef1418dd998e5cdd

-----------------------------------------------------------------------

commit f2e88f33824f731c62bb725a35da9b4c54c5ae0a
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 16:55:02 2015 +0000

    Default values for blobs are not allowed.

 framework/Db/test/Horde/Db/Adapter/TestBase.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/f2e88f33824f731c62bb725a35da9b4c54c5ae0a

-----------------------------------------------------------------------

commit 48320142c75852c2e5779bd08df854e75842a787
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 17:17:10 2015 +0000

    Match PDO error message too.

 framework/Db/test/Horde/Db/Adapter/MysqlBase.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/48320142c75852c2e5779bd08df854e75842a787

-----------------------------------------------------------------------

commit ad2eec5acbd0c4255c7e914d3d6aa545e4992293
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 17:17:32 2015 +0000

    Fix configuration loading.

 framework/Db/test/Horde/Db/Adapter/Pdo/MysqlTest.php |    2 +-
 framework/Db/test/Horde/Db/Adapter/Pdo/PgsqlTest.php |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/ad2eec5acbd0c4255c7e914d3d6aa545e4992293

-----------------------------------------------------------------------

commit b1267ac456d8549414734e2aa0637389c7fb1e27
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 18:04:05 2015 +0000

    Try to really close connections.
    
    It was missing completely for the oci8 driver.
    
    For PDO the comments in the documentation suggest that unsetting any statement
    handlers is required, and that unsetting the PDO object only is not sufficient.
    Still doesn't work yet though.

 framework/Db/lib/Horde/Db/Adapter/Mysql.php    |    7 ++-
 framework/Db/lib/Horde/Db/Adapter/Mysqli.php   |    7 ++-
 framework/Db/lib/Horde/Db/Adapter/Oci8.php     |   11 +++++
 framework/Db/lib/Horde/Db/Adapter/Pdo/Base.php |   50 +++++++++++++++++++-----
 4 files changed, 59 insertions(+), 16 deletions(-)

http://github.com/horde/horde/commit/b1267ac456d8549414734e2aa0637389c7fb1e27

-----------------------------------------------------------------------

commit 000d6e15f28fea91a887e6db5525e4fe6fb57cc6
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 18:11:01 2015 +0000

    Not required.

 framework/Date/test/Horde/Date/RecurrenceTest.php |    2 --
 framework/Secret/test/Horde/Secret/Autoload.php   |    2 --
 2 files changed, 0 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/000d6e15f28fea91a887e6db5525e4fe6fb57cc6

-----------------------------------------------------------------------

commit 1f8a8b2e6853d343efae981612177d0a08ccb6c1
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 18:11:58 2015 +0000

    Bad idea to silence potentially fatal calls.

 framework/Exception/test/Horde/Exception/ExceptionTest.php  |    2 +-
 framework/Notification/test/Horde/Notification/Autoload.php |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/1f8a8b2e6853d343efae981612177d0a08ccb6c1

-----------------------------------------------------------------------

commit 05c43a61e65575990d38ee4910e4af2e96ea396e
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 18:17:09 2015 +0000

    No reason to skip this. No assertion but still tests if it runs without error.

 framework/Feed/test/Horde/Feed/BlogrollTest.php |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/05c43a61e65575990d38ee4910e4af2e96ea396e

-----------------------------------------------------------------------

commit c9f0a250a886a5316f7b7d056c34132bf8935bab
Author: Jan Schneider <jan at horde.org>
Date:   Fri Jan 30 18:37:47 2015 +0000

    This is no longer an autoincrement column here.

 framework/History/test/Horde/History/Sql/Base.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/c9f0a250a886a5316f7b7d056c34132bf8935bab




More information about the commits mailing list