diff --git a/Changes b/Changes index c300887f..fe07c126 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,7 @@ +2023-12-01 Daniël van Eeden, DBI/DBD community (4.052) +* Check if handle is active when calling prepare +* Work around MariaDB bug with zerofill field + 2023-10-04 Daniël van Eeden, DBI/DBD community (4.051) * accept 4031 as a valid return code when connection closed * removing some proxy bits diff --git a/MANIFEST b/MANIFEST index bc022f18..f745ab72 100644 --- a/MANIFEST +++ b/MANIFEST @@ -16,10 +16,12 @@ mysql.xs README.md socket.c t/00base.t +t/01caching_sha2_prime.t t/05dbcreate.t t/10connect.t t/15reconnect.t t/16dbi-get_info.t +t/17quote.t t/20createdrop.t t/25lockunlock.t t/29warnings.t @@ -55,6 +57,7 @@ t/53comment.t t/55utf8.t t/55utf8mb4.t t/56connattr.t +t/57trackgtid.t t/60leaks.t t/65segfault.t t/65types.t @@ -74,6 +77,7 @@ t/92ssl_optional.t t/92ssl_backronym_vulnerability.t t/92ssl_riddle_vulnerability.t t/99_bug_server_prepare_blob_null.t +t/gh352.t t/lib.pl t/manifest.t t/mysql.dbtest diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index def26b75..a5b18fba 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -17,3 +17,7 @@ mysql.bs appveyor.yml .mailmap .travis.yml +.github/workflows/ci.yml +.github/workflows/ci_mac.yml +docker-compose.yml +Dockerfile diff --git a/lib/Bundle/DBD/mysql.pm b/lib/Bundle/DBD/mysql.pm index bb8ab3cf..19c479fe 100644 --- a/lib/Bundle/DBD/mysql.pm +++ b/lib/Bundle/DBD/mysql.pm @@ -3,7 +3,7 @@ package Bundle::DBD::mysql; use strict; use warnings; -our $VERSION = '4.051'; +our $VERSION = '4.052'; 1; diff --git a/lib/DBD/mysql.pm b/lib/DBD/mysql.pm index a352f882..448fbf90 100644 --- a/lib/DBD/mysql.pm +++ b/lib/DBD/mysql.pm @@ -15,7 +15,7 @@ our @ISA = qw(DynaLoader); # SQL_DRIVER_VER is formatted as dd.dd.dddd # for version 5.x please switch to 5.00(_00) version numbering # keep $VERSION in Bundle/DBD/mysql.pm in sync -our $VERSION = '4.051'; +our $VERSION = '4.052'; bootstrap DBD::mysql $VERSION;