File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2023-10-04 Daniël van Eeden, DBI/DBD community (4.051)
2
+ * accept 4031 as a valid return code when connection closed
3
+ * removing some proxy bits
4
+ * Docker support
5
+ * fix test plan count
6
+ * add tests for ping on disconnected handle, issue #306
7
+ * Fix type conversions
8
+ * Do no assign from un uninitialized slen
9
+ * Add a missing break to 'd' case in dbd_db_FETCH_attrib()
10
+ * Mention default and reword mysql_client_found_rows POD for clarity
11
+ * Fix typo in comment
12
+ * Fix quoting if NO_BACKSLASH_ESCAPES is set
13
+ * Make type of is_null field consistent and same as in MYSQL_BIND
14
+ * Fix "assignment from incompatible pointer type"
15
+ * Travis: Add MariaDB 10.4.1
16
+
1
17
2018-10-25 Daniël van Eeden, Patrick Galbraith,
2
18
DBI/DBD community (4.050)
3
19
* Fix SQL syntax for statements that have "...limit = ?" #288
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.050 ' ;
6
+ our $VERSION = ' 4.051 ' ;
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.050 ' ;
18
+ our $VERSION = ' 4.051 ' ;
19
19
20
20
bootstrap DBD::mysql $VERSION ;
21
21
You can’t perform that action at this time.
0 commit comments