File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1+ 2023-12-01 Daniël van Eeden, DBI/DBD community (4.052)
2+ * Check if handle is active when calling prepare
3+ * Work around MariaDB bug with zerofill field
4+
152023-10-04 Daniël van Eeden, DBI/DBD community (4.051)
26* accept 4031 as a valid return code when connection closed
37* removing some proxy bits
Original file line number Diff line number Diff line change @@ -16,10 +16,12 @@ mysql.xs
1616README.md
1717socket.c
1818t/00base.t
19+ t/01caching_sha2_prime.t
1920t/05dbcreate.t
2021t/10connect.t
2122t/15reconnect.t
2223t/16dbi-get_info.t
24+ t/17quote.t
2325t/20createdrop.t
2426t/25lockunlock.t
2527t/29warnings.t
@@ -55,6 +57,7 @@ t/53comment.t
5557t/55utf8.t
5658t/55utf8mb4.t
5759t/56connattr.t
60+ t/57trackgtid.t
5861t/60leaks.t
5962t/65segfault.t
6063t/65types.t
@@ -74,6 +77,7 @@ t/92ssl_optional.t
7477t/92ssl_backronym_vulnerability.t
7578t/92ssl_riddle_vulnerability.t
7679t/99_bug_server_prepare_blob_null.t
80+ t/gh352.t
7781t/lib.pl
7882t/manifest.t
7983t/mysql.dbtest
Original file line number Diff line number Diff line change @@ -17,3 +17,7 @@ mysql.bs
1717appveyor.yml
1818.mailmap
1919.travis.yml
20+ .github/workflows/ci.yml
21+ .github/workflows/ci_mac.yml
22+ docker-compose.yml
23+ Dockerfile
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Bundle::DBD::mysql;
33use strict;
44use warnings;
55
6- our $VERSION = ' 4.051 ' ;
6+ our $VERSION = ' 4.052 ' ;
77
881;
99
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ our @ISA = qw(DynaLoader);
1515# SQL_DRIVER_VER is formatted as dd.dd.dddd
1616# for version 5.x please switch to 5.00(_00) version numbering
1717# keep $VERSION in Bundle/DBD/mysql.pm in sync
18- our $VERSION = ' 4.051 ' ;
18+ our $VERSION = ' 4.052 ' ;
1919
2020bootstrap DBD::mysql $VERSION ;
2121
You can’t perform that action at this time.
0 commit comments