File tree Expand file tree Collapse file tree 5 files changed +21
-2
lines changed Expand file tree Collapse file tree 5 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2023-12-01 Daniël van Eeden, DBI/DBD community (5.003)
2
+ * Add ifdef for ER_CLIENT_INTERACTION_TIMEOUT
3
+ * Fix for issue 251. Also fixed case of "e<single int>"
4
+ * Docs: Update macOS docs
5
+ * CI: Add macOS
6
+ * Call mysql_library_init() and mysql_library_end()
7
+ * Update bug report address
8
+ * Check if handle is active when calling prepare
9
+ * Add missing testsocket option to the docs
10
+ * Add Dockerfile (#390)
11
+ * More cleanups of unneeded ifdefs (#385)
12
+ * Enable auto reconnect for ER_CLIENT_INTERACTION_TIMEOUT
13
+ * Try out issue template for GitHub
14
+ * 99compression.t: Only test on 8.x
15
+ * Only use MYSQL_OPT_COMPRESSION_ALGORITHMS on >=8.0.18
16
+ * Replace `mysql_ssl_set()` with `mysql_options()`
17
+
1
18
2023-10-24 Daniël van Eeden, DBI/DBD community (5.002)
2
19
* Add support for compression algorighm selection (#372)
3
20
* Correct handling of mysql_enable_utf8mb4 (#363)
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ t/92ssl_backronym_vulnerability.t
77
77
t/92ssl_riddle_vulnerability.t
78
78
t/99compression.t
79
79
t/99_bug_server_prepare_blob_null.t
80
+ t/gh352.t
80
81
t/gh360.t
81
82
t/lib.pl
82
83
t/manifest.t
Original file line number Diff line number Diff line change @@ -18,3 +18,4 @@ appveyor.yml
18
18
.mailmap
19
19
.travis.yml
20
20
.github
21
+ 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 = ' 5.002 ' ;
6
+ our $VERSION = ' 5.003 ' ;
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.002 ' ;
16
+ our $VERSION = ' 5.003 ' ;
17
17
18
18
bootstrap DBD::mysql $VERSION ;
19
19
You can’t perform that action at this time.
0 commit comments