Skip to content

Commit

Permalink
Merge pull request #198
Browse files Browse the repository at this point in the history
Release version 1.23
  • Loading branch information
pali committed Sep 10, 2023
2 parents c5880e3 + fadab20 commit be52823
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ Daniël van Eeden <[email protected]> <[email protected]>
Pali <[email protected]> <[email protected]>
Bernt M. Johnsen <[email protected]> <[email protected]>
H.Merijn Brand - Tux <[email protected]>
Matthew Horsfall (alh) <[email protected]> <[email protected]>
Jan Holčapek <[email protected]> <[email protected]>
E. Choroba <[email protected]> <[email protected]>
24 changes: 24 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
1.23 2023-09-10
- Add a missing break
(https://github.com/perl5-dbi/DBD-MariaDB/issues/163)
- Signal error if mariadb_db_async_result() fails
(https://github.com/perl5-dbi/DBD-MariaDB/issues/162)
- Update links to project website, issues and years
- Fix compilation with some MariaDB client library 10.2 and 10.3 versions
- Fix mariadb_use_result attribute
(https://github.com/perl5-dbi/DBD-MariaDB/issues/173)
- Fix statements with multiple result sets in asynchronous mode
- Fix mariadb_sockfd attribute for Windows
- Croaks when changing AutoCommit attribute fails
(https://github.com/perl5-dbi/dbi/issues/104)
- Various documentation and tests fixes
- Fix support for MariaDB Connector/C prior to 3.1.3 version
- Fix usage of Win32::GetShortPathName() in Makefile.PL
- Build release tarball in TAR format (instead of PAX)
- Allow to query and change mariadb_multi_statements attribute
- Add connect option mariadb_auth_plugin for specifying auth plugin
- Fix support for MySQL 8.0+ client library
(https://github.com/perl5-dbi/DBD-MariaDB/issues/191)
(https://github.com/perl5-dbi/DBD-mysql/issues/329)
- Add Github Actions CI and Cirrus CI (FreeBSD) for automated testing

1.22 2022-04-22
- Disable usage of libmysqld.a from MySQL 8.x series
- Install README.pod into DBD/MariaDB/ subdirectory
Expand Down
10 changes: 9 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -522,16 +522,18 @@ my %o =
'David Farrell <[email protected]>',
'David Steinbrunner <[email protected]>',
'Dominik Sauer <[email protected]>',
'E. Choroba <[email protected]>',
'Giovanni Bechis <[email protected]>',
'Graham Ollis <[email protected]>',
'H.Merijn Brand - Tux <[email protected]>',
'Hanno <[email protected]>',
'James McCoy <[email protected]>',
'Jan Holcapek <jan.holcapek@gooddata.com>',
'Jan Holčapek <holcapek@gmail.com>',
'Jim Winstead <[email protected]>',
'Juergen Weigert <[email protected]>',
'Kenny Gryp <[email protected]>',
'Lu Shengliang <[email protected]>',
'Martin Cermak <[email protected]>',
'Masahiro Chiba <[email protected]>',
'Matthew Horsfall (alh) <[email protected]>',
'Michiel Beijen <[email protected]>',
Expand All @@ -557,6 +559,7 @@ my %o =
'Tim Mullin <[email protected]>',
'Ville Skyttä <[email protected]>',
'Vladimir Marek <[email protected]>',
'Walt Mankowski <[email protected]>',
'katyavoid <[email protected]>',
'kmx <[email protected]>',
'tokuhirom <[email protected]>',
Expand Down Expand Up @@ -834,6 +837,11 @@ as well as others.
mysql> grant all privileges on test.* to '$user'\@'localhost' identified by 's3kr1t';
For MySQL 8 it is needed to use different syntax:
mysql> create user '$user'\@'localhost' identified by 's3kr1t';
mysql> grant all privileges on test.* to '$user'\@'localhost';
You can also optionally set the user to run 'make test' with:
perl Makefile.PL --testuser=username
Expand Down
2 changes: 1 addition & 1 deletion lib/DBD/MariaDB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use DBI;
use DynaLoader();
our @ISA = qw(DynaLoader);

our $VERSION = '1.22';
our $VERSION = '1.23';

bootstrap DBD::MariaDB $VERSION;

Expand Down

0 comments on commit be52823

Please sign in to comment.