Skip to content

Commit

Permalink
DBD::mysql v4.052
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Dec 1, 2023
1 parent 8b31069 commit 144f5a2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,7 @@ mysql.bs
appveyor.yml
.mailmap
.travis.yml
.github/workflows/ci.yml
.github/workflows/ci_mac.yml
docker-compose.yml
Dockerfile
2 changes: 1 addition & 1 deletion lib/Bundle/DBD/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Bundle::DBD::mysql;
use strict;
use warnings;

our $VERSION = '4.051';
our $VERSION = '4.052';

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/DBD/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 144f5a2

Please sign in to comment.