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+
1182023-10-24 Daniël van Eeden, DBI/DBD community (5.002)
219* Add support for compression algorighm selection (#372)
320* 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
7777t/92ssl_riddle_vulnerability.t
7878t/99compression.t
7979t/99_bug_server_prepare_blob_null.t
80+ t/gh352.t
8081t/gh360.t
8182t/lib.pl
8283t/manifest.t
Original file line number Diff line number Diff line change @@ -18,3 +18,4 @@ appveyor.yml
1818.mailmap
1919.travis.yml
2020.github
21+ Dockerfile
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Bundle::DBD::mysql;
33use strict;
44use warnings;
55
6- our $VERSION = ' 5.002 ' ;
6+ our $VERSION = ' 5.003 ' ;
77
881;
99
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ our @ISA = qw(DynaLoader);
1313# SQL_DRIVER_VER is formatted as dd.dd.dddd
1414# for version 5.x please switch to 5.00(_00) version numbering
1515# keep $VERSION in Bundle/DBD/mysql.pm in sync
16- our $VERSION = ' 5.002 ' ;
16+ our $VERSION = ' 5.003 ' ;
1717
1818bootstrap DBD::mysql $VERSION ;
1919
You can’t perform that action at this time.
0 commit comments