File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2023-10-24 Daniël van Eeden, DBI/DBD community (5.002)
2
+ * Add support for compression algorighm selection (#372)
3
+ * Correct handling of mysql_enable_utf8mb4 (#363)
4
+ * tests: Remove have_transactions usage from 50commit.t
5
+ * Makefile: Clearly report that MySQL 8.x is needed and do some cleanup
6
+ * add DBD::mysql::client_version() to have the client version without DB connections
7
+ * Update version test for v5.x
8
+
1
9
2023-10-04 Daniël van Eeden, DBI/DBD community (5.001)
2
10
* Only support MySQL 8.x as MySQL 5.7 is going EOL soon
3
11
* Remove use of MYSQL_OPT_RECONNECT
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 = ' 5.001 ' ;
6
+ our $VERSION = ' 5.002 ' ;
7
7
8
8
1;
9
9
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ our @ISA = qw(DynaLoader);
13
13
# SQL_DRIVER_VER is formatted as dd.dd.dddd
14
14
# for version 5.x please switch to 5.00(_00) version numbering
15
15
# keep $VERSION in Bundle/DBD/mysql.pm in sync
16
- our $VERSION = ' 5.001 ' ;
16
+ our $VERSION = ' 5.002 ' ;
17
17
18
18
bootstrap DBD::mysql $VERSION ;
19
19
You can’t perform that action at this time.
0 commit comments