Skip to content

Commit 144f5a2

Browse files
committed
DBD::mysql v4.052
1 parent 8b31069 commit 144f5a2

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

Changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
2023-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

MANIFEST

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ mysql.xs
1616
README.md
1717
socket.c
1818
t/00base.t
19+
t/01caching_sha2_prime.t
1920
t/05dbcreate.t
2021
t/10connect.t
2122
t/15reconnect.t
2223
t/16dbi-get_info.t
24+
t/17quote.t
2325
t/20createdrop.t
2426
t/25lockunlock.t
2527
t/29warnings.t
@@ -55,6 +57,7 @@ t/53comment.t
5557
t/55utf8.t
5658
t/55utf8mb4.t
5759
t/56connattr.t
60+
t/57trackgtid.t
5861
t/60leaks.t
5962
t/65segfault.t
6063
t/65types.t
@@ -74,6 +77,7 @@ t/92ssl_optional.t
7477
t/92ssl_backronym_vulnerability.t
7578
t/92ssl_riddle_vulnerability.t
7679
t/99_bug_server_prepare_blob_null.t
80+
t/gh352.t
7781
t/lib.pl
7882
t/manifest.t
7983
t/mysql.dbtest

MANIFEST.SKIP

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ mysql.bs
1717
appveyor.yml
1818
.mailmap
1919
.travis.yml
20+
.github/workflows/ci.yml
21+
.github/workflows/ci_mac.yml
22+
docker-compose.yml
23+
Dockerfile

lib/Bundle/DBD/mysql.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Bundle::DBD::mysql;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '4.051';
6+
our $VERSION = '4.052';
77

88
1;
99

lib/DBD/mysql.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2020
bootstrap DBD::mysql $VERSION;
2121

0 commit comments

Comments
 (0)