Skip to content

Commit f510d42

Browse files
committed
Merge pull request #117
Release version 1.10
2 parents bbd21f9 + 7bac861 commit f510d42

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

Changes

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
1.10 2018-12-05
2+
- Fix spelling error (https://github.com/gooddata/DBD-MariaDB/issues/82)
3+
- Fix MinGW build (https://github.com/gooddata/DBD-MariaDB/issues/91)
4+
- Fix DBI SQL types (https://github.com/gooddata/DBD-MariaDB/issues/109)
5+
- Fix overflow in mariadb_thread_id and mariadb_warning_count attributes
6+
- Fix parsing LIMIT keyword (case-insensitive + allow whitespaces around)
7+
- Fix allocating and releasing memory when using Embedded Server
8+
- Fix escaping placeholders when sql_mode is NO_BACKSLASH_ESCAPES
9+
- Fix output from Unicode related tests
10+
- Fix setting client_flag for mysql_real_connect()
11+
- Fix calling DBI->data_sources() without second argument
12+
- Fix $dbh->last_insert_id() for multi and prepared server side statements
13+
- Use dbd_db_do6 API from DBI 1.642 when available
14+
- Add support for a new DBI method call $sth->last_insert_id()
15+
- Add sanity check for Makefile.PL --testsocket, --testhost and --testport
16+
- Report error when $dbh->{mariadb_ssl_cipher} attribute is not supported
17+
- Check that correct number of bind parameters are in $dbh->do()
18+
- Update workarounds for bugs in MariaDB client library (some were fixed)
19+
- Allow to set zero read, write and connect timeout (which means infinite)
20+
- Set default session collation to utf8mb4_unicode_ci for real Unicode
21+
- Change minimal MySQL client version to 4.1.8 (older is incompatible)
22+
- Skip tests which cannot be started on current system/architecture
23+
- Move testrules.yml to t/ directory
24+
- Miscellaneous fixes in tests
25+
126
1.00 2018-07-12
227
- Do not remove test name and line from test error messages
328
- Update documentation for mariadb_length and mariadb_max_length

lib/DBD/MariaDB.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use DBI;
1010
use DynaLoader();
1111
our @ISA = qw(DynaLoader);
1212

13-
our $VERSION = '1.00';
13+
our $VERSION = '1.10';
1414

1515
bootstrap DBD::MariaDB $VERSION;
1616

0 commit comments

Comments
 (0)