Skip to content

Commit 4901b8b

Browse files
committed
DBD::mysql v5.003
1 parent 804f71d commit 4901b8b

File tree

5 files changed

+21
-2
lines changed

5 files changed

+21
-2
lines changed

Changes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
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+
118
2023-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)

MANIFEST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ t/92ssl_backronym_vulnerability.t
7777
t/92ssl_riddle_vulnerability.t
7878
t/99compression.t
7979
t/99_bug_server_prepare_blob_null.t
80+
t/gh352.t
8081
t/gh360.t
8182
t/lib.pl
8283
t/manifest.t

MANIFEST.SKIP

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ appveyor.yml
1818
.mailmap
1919
.travis.yml
2020
.github
21+
Dockerfile

lib/Bundle/DBD/mysql.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Bundle::DBD::mysql;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.002';
6+
our $VERSION = '5.003';
77

88
1;
99

lib/DBD/mysql.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1818
bootstrap DBD::mysql $VERSION;
1919

0 commit comments

Comments
 (0)