1
0

Accepting request 440745 from devel:languages:perl:autoupdate

- updated to 4.039
   see /usr/share/doc/packages/perl-DBD-mysql/Changes
  2016-11-15 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.039)
  * Fix for security issue Out-of-bounds read by DBD::mysql CVE-2016-1249 (pali)
  
  2016-10-30 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.038_01)
  * Fix compilation of embedded server (pali)
    (https://github.com/perl5-dbi/DBD-mysql/pull/68)
  * Fix compilation against libmariadbclient. First version by
    H.Merijn Brand, improved by Bernt Johnsen @ Oracle.
  * For efficiency use newSVpvn() instead newSVpv() where possible (pali)
  * Correctly coerce fetched scalar values when mysql_server_prepare is
    not used (pali)
  * Add support for fetching columns of BIT type with
    mysql_server_prepare = 1 (pali)
    Fixes https://rt.cpan.org/Public/Bug/Display.html?id=88006
  * Use correct format in printf instead of casting variable types (pali)
  * Include errno.h for MYSQL_ASYNC because it uses errno variable (pali)
  * Travis: also test on perl 5.22 and 5.24.

- updated to 4.038
   see /usr/share/doc/packages/perl-DBD-mysql/Changes
  2016-10-19 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.038)
  * Version 4.037_1 had fixes for MySQL 8.0 provided
    Bernt Johnsen @ Oracle that were not in the Changelogs
    (https://github.com/perl5-dbi/DBD-mysql/pull/56)
  * Fixes for compiling against newer libmysqlclient on Windows (kmx)
  * Fix unit test for 40server_prepare_crash on Windows (pali)
  * Perl's IV in scalar can store 64bit integer when perl was compiled
    with 64 bit support (default on 64bit linux with gcc). Use this

OBS-URL: https://build.opensuse.org/request/show/440745
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBD-mysql?expand=0&rev=42
This commit is contained in:
Stephan Kulow
2016-11-17 20:09:15 +00:00
committed by Git OBS Bridge
parent 14dd674ed8
commit 909d6f4f6d
4 changed files with 54 additions and 5 deletions

View File

@@ -1,3 +1,52 @@
-------------------------------------------------------------------
Thu Nov 17 06:16:34 UTC 2016 - coolo@suse.com
- updated to 4.039
see /usr/share/doc/packages/perl-DBD-mysql/Changes
2016-11-15 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.039)
* Fix for security issue Out-of-bounds read by DBD::mysql CVE-2016-1249 (pali)
2016-10-30 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.038_01)
* Fix compilation of embedded server (pali)
(https://github.com/perl5-dbi/DBD-mysql/pull/68)
* Fix compilation against libmariadbclient. First version by
H.Merijn Brand, improved by Bernt Johnsen @ Oracle.
* For efficiency use newSVpvn() instead newSVpv() where possible (pali)
* Correctly coerce fetched scalar values when mysql_server_prepare is
not used (pali)
* Add support for fetching columns of BIT type with
mysql_server_prepare = 1 (pali)
Fixes https://rt.cpan.org/Public/Bug/Display.html?id=88006
* Use correct format in printf instead of casting variable types (pali)
* Include errno.h for MYSQL_ASYNC because it uses errno variable (pali)
* Travis: also test on perl 5.22 and 5.24.
-------------------------------------------------------------------
Fri Oct 21 05:15:25 UTC 2016 - coolo@suse.com
- updated to 4.038
see /usr/share/doc/packages/perl-DBD-mysql/Changes
2016-10-19 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.038)
* Version 4.037_1 had fixes for MySQL 8.0 provided
Bernt Johnsen @ Oracle that were not in the Changelogs
(https://github.com/perl5-dbi/DBD-mysql/pull/56)
* Fixes for compiling against newer libmysqlclient on Windows (kmx)
* Fix unit test for 40server_prepare_crash on Windows (pali)
* Perl's IV in scalar can store 64bit integer when perl was compiled
with 64 bit support (default on 64bit linux with gcc). Use this
feature and stores MYSQL_TYPE_LONGLONG as integers instead of strings
when possible. (pali, https://github.com/perl5-dbi/DBD-mysql/pull/57)
2016-10-14 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.037_01)
* Newest versions of libmysqlclient and the MariaDB C connector no longer
export the __WIN__ macro. If this macro is not present we would not
compile in the poll.h-based async-support. Changed to use the _WIN32
macro instead. Thanks to Sergei Golubchik for suggesting the fix.
* Fix from Pali Rohár to not use unsafe sprintf with variable lengt,
changes to bind logic, and added test 40server_prepare_crash.
-------------------------------------------------------------------
Tue Oct 4 05:17:34 UTC 2016 - coolo@suse.com