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
+
1
5
2023-10-04 Daniël van Eeden, DBI/DBD community (4.051)
2
6
* accept 4031 as a valid return code when connection closed
3
7
* removing some proxy bits
Original file line number Diff line number Diff line change @@ -16,10 +16,12 @@ mysql.xs
16
16
README.md
17
17
socket.c
18
18
t/00base.t
19
+ t/01caching_sha2_prime.t
19
20
t/05dbcreate.t
20
21
t/10connect.t
21
22
t/15reconnect.t
22
23
t/16dbi-get_info.t
24
+ t/17quote.t
23
25
t/20createdrop.t
24
26
t/25lockunlock.t
25
27
t/29warnings.t
@@ -55,6 +57,7 @@ t/53comment.t
55
57
t/55utf8.t
56
58
t/55utf8mb4.t
57
59
t/56connattr.t
60
+ t/57trackgtid.t
58
61
t/60leaks.t
59
62
t/65segfault.t
60
63
t/65types.t
@@ -74,6 +77,7 @@ t/92ssl_optional.t
74
77
t/92ssl_backronym_vulnerability.t
75
78
t/92ssl_riddle_vulnerability.t
76
79
t/99_bug_server_prepare_blob_null.t
80
+ t/gh352.t
77
81
t/lib.pl
78
82
t/manifest.t
79
83
t/mysql.dbtest
Original file line number Diff line number Diff line change @@ -17,3 +17,7 @@ mysql.bs
17
17
appveyor.yml
18
18
.mailmap
19
19
.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;
3
3
use strict;
4
4
use warnings;
5
5
6
- our $VERSION = ' 4.051 ' ;
6
+ our $VERSION = ' 4.052 ' ;
7
7
8
8
1;
9
9
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ our @ISA = qw(DynaLoader);
15
15
# SQL_DRIVER_VER is formatted as dd.dd.dddd
16
16
# for version 5.x please switch to 5.00(_00) version numbering
17
17
# keep $VERSION in Bundle/DBD/mysql.pm in sync
18
- our $VERSION = ' 4.051 ' ;
18
+ our $VERSION = ' 4.052 ' ;
19
19
20
20
bootstrap DBD::mysql $VERSION ;
21
21
You can’t perform that action at this time.
0 commit comments