Skip to content

Commit

Permalink
DBD::mysql v5.003
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Dec 1, 2023
1 parent 804f71d commit 4901b8b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
17 changes: 17 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
2023-12-01 Daniël van Eeden, DBI/DBD community (5.003)
* Add ifdef for ER_CLIENT_INTERACTION_TIMEOUT
* Fix for issue 251. Also fixed case of "e<single int>"
* Docs: Update macOS docs
* CI: Add macOS
* Call mysql_library_init() and mysql_library_end()
* Update bug report address
* Check if handle is active when calling prepare
* Add missing testsocket option to the docs
* Add Dockerfile (#390)
* More cleanups of unneeded ifdefs (#385)
* Enable auto reconnect for ER_CLIENT_INTERACTION_TIMEOUT
* Try out issue template for GitHub
* 99compression.t: Only test on 8.x
* Only use MYSQL_OPT_COMPRESSION_ALGORITHMS on >=8.0.18
* Replace `mysql_ssl_set()` with `mysql_options()`

2023-10-24 Daniël van Eeden, DBI/DBD community (5.002)
* Add support for compression algorighm selection (#372)
* Correct handling of mysql_enable_utf8mb4 (#363)
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ t/92ssl_backronym_vulnerability.t
t/92ssl_riddle_vulnerability.t
t/99compression.t
t/99_bug_server_prepare_blob_null.t
t/gh352.t
t/gh360.t
t/lib.pl
t/manifest.t
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ appveyor.yml
.mailmap
.travis.yml
.github
Dockerfile
2 changes: 1 addition & 1 deletion lib/Bundle/DBD/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Bundle::DBD::mysql;
use strict;
use warnings;

our $VERSION = '5.002';
our $VERSION = '5.003';

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/DBD/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ our @ISA = qw(DynaLoader);
# SQL_DRIVER_VER is formatted as dd.dd.dddd
# for version 5.x please switch to 5.00(_00) version numbering
# keep $VERSION in Bundle/DBD/mysql.pm in sync
our $VERSION = '5.002';
our $VERSION = '5.003';

bootstrap DBD::mysql $VERSION;

Expand Down

0 comments on commit 4901b8b

Please sign in to comment.