Skip to content

Commit be52823

Browse files
committed
Merge pull request #198
Release version 1.23
2 parents c5880e3 + fadab20 commit be52823

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

.mailmap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ Daniël van Eeden <[email protected]> <[email protected]>
1717
1818
1919
H.Merijn Brand - Tux <[email protected]>
20+
Matthew Horsfall (alh) <[email protected]> <[email protected]>
21+
22+

Changes

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
1.23 2023-09-10
2+
- Add a missing break
3+
(https://github.com/perl5-dbi/DBD-MariaDB/issues/163)
4+
- Signal error if mariadb_db_async_result() fails
5+
(https://github.com/perl5-dbi/DBD-MariaDB/issues/162)
6+
- Update links to project website, issues and years
7+
- Fix compilation with some MariaDB client library 10.2 and 10.3 versions
8+
- Fix mariadb_use_result attribute
9+
(https://github.com/perl5-dbi/DBD-MariaDB/issues/173)
10+
- Fix statements with multiple result sets in asynchronous mode
11+
- Fix mariadb_sockfd attribute for Windows
12+
- Croaks when changing AutoCommit attribute fails
13+
(https://github.com/perl5-dbi/dbi/issues/104)
14+
- Various documentation and tests fixes
15+
- Fix support for MariaDB Connector/C prior to 3.1.3 version
16+
- Fix usage of Win32::GetShortPathName() in Makefile.PL
17+
- Build release tarball in TAR format (instead of PAX)
18+
- Allow to query and change mariadb_multi_statements attribute
19+
- Add connect option mariadb_auth_plugin for specifying auth plugin
20+
- Fix support for MySQL 8.0+ client library
21+
(https://github.com/perl5-dbi/DBD-MariaDB/issues/191)
22+
(https://github.com/perl5-dbi/DBD-mysql/issues/329)
23+
- Add Github Actions CI and Cirrus CI (FreeBSD) for automated testing
24+
125
1.22 2022-04-22
226
- Disable usage of libmysqld.a from MySQL 8.x series
327
- Install README.pod into DBD/MariaDB/ subdirectory

Makefile.PL

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,16 +522,18 @@ my %o =
522522
'David Farrell <[email protected]>',
523523
'David Steinbrunner <[email protected]>',
524524
'Dominik Sauer <[email protected]>',
525+
'E. Choroba <[email protected]>',
525526
'Giovanni Bechis <[email protected]>',
526527
'Graham Ollis <[email protected]>',
527528
'H.Merijn Brand - Tux <[email protected]>',
528529
'Hanno <[email protected]>',
529530
'James McCoy <[email protected]>',
530-
'Jan Holcapek <jan.holcapek@gooddata.com>',
531+
'Jan Holčapek <holcapek@gmail.com>',
531532
'Jim Winstead <[email protected]>',
532533
'Juergen Weigert <[email protected]>',
533534
'Kenny Gryp <[email protected]>',
534535
'Lu Shengliang <[email protected]>',
536+
'Martin Cermak <[email protected]>',
535537
'Masahiro Chiba <[email protected]>',
536538
'Matthew Horsfall (alh) <[email protected]>',
537539
'Michiel Beijen <[email protected]>',
@@ -557,6 +559,7 @@ my %o =
557559
'Tim Mullin <[email protected]>',
558560
'Ville Skyttä <[email protected]>',
559561
'Vladimir Marek <[email protected]>',
562+
'Walt Mankowski <[email protected]>',
560563
'katyavoid <[email protected]>',
561564
562565
'tokuhirom <[email protected]>',
@@ -834,6 +837,11 @@ as well as others.
834837
835838
mysql> grant all privileges on test.* to '$user'\@'localhost' identified by 's3kr1t';
836839
840+
For MySQL 8 it is needed to use different syntax:
841+
842+
mysql> create user '$user'\@'localhost' identified by 's3kr1t';
843+
mysql> grant all privileges on test.* to '$user'\@'localhost';
844+
837845
You can also optionally set the user to run 'make test' with:
838846
839847
perl Makefile.PL --testuser=username

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.22';
13+
our $VERSION = '1.23';
1414

1515
bootstrap DBD::MariaDB $VERSION;
1616

0 commit comments

Comments
 (0)