From 5297e04bd37f4ab810e1014b3b3540d2b6d56633 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Sat, 10 Aug 2019 21:28:11 -0500 Subject: [PATCH] release v0.16 [Added] - Added Travis tests for more MySQL and MariaDB versions. Thanks @paultcochrane for the initial work on this. (Github #1) - You can now pass in a connected Mojo::mysql instance to the backend to make it use that (instead of creating its own instance). This can help make sure that concurrent connections are limited and reused. Thanks @larryl & @GrantStreetGroup for contributing this! (Github #22) [Fixed] - Fixed SQL errors under MySQL strict mode (Specifically, the SQL GROUP BY columns need to be specified as SELECTed). Thanks @larryl & @GrantStreetGroup! (Github #22) - Fixed backend creating dozens of connections to MySQL. Now basic operations should be far more efficient. Thanks @larryl & @GrantStreetGroup! (Github #22) --- CHANGES | 19 +++++++++++++++++++ META.json | 5 +++-- README.mkdn | 3 ++- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 5d8ceb9..3832135 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,25 @@ Revision history for Perl extension Minion::Backend::mysql. {{ $NEXT }} + [Added] + + - Added Travis tests for more MySQL and MariaDB versions. Thanks + @paultcochrane for the initial work on this. (Github #1) + - You can now pass in a connected Mojo::mysql instance to the backend + to make it use that (instead of creating its own instance). This can + help make sure that concurrent connections are limited and reused. + Thanks @larryl & @GrantStreetGroup for contributing this! + (Github #22) + + [Fixed] + + - Fixed SQL errors under MySQL strict mode (Specifically, the SQL + GROUP BY columns need to be specified as SELECTed). Thanks @larryl + & @GrantStreetGroup! (Github #22) + - Fixed backend creating dozens of connections to MySQL. Now basic + operations should be far more efficient. Thanks @larryl + & @GrantStreetGroup! (Github #22) + 0.15 2018-11-10 11:46:56-06:00 America/Chicago [Fixed] diff --git a/META.json b/META.json index dadc5ed..228b685 100644 --- a/META.json +++ b/META.json @@ -56,7 +56,7 @@ "provides" : { "Minion::Backend::mysql" : { "file" : "lib/Minion/Backend/mysql.pm", - "version" : "0.15" + "version" : "0.16" } }, "release_status" : "stable", @@ -72,12 +72,13 @@ }, "x_IRC" : "irc://irc.perl.org/#mojo" }, - "version" : "0.15", + "version" : "0.16", "x_authority" : "cpan:PREACTION", "x_contributors" : [ "Alexander Nalobin ", "Dmitry Krylov ", "Jason A. Crome ", + "Larry Leszczynski ", "Olaf Alders ", "Paul Cochrane ", "Zoffix Znet " diff --git a/README.mkdn b/README.mkdn index d49e9f1..4b3142d 100644 --- a/README.mkdn +++ b/README.mkdn @@ -7,7 +7,7 @@ Minion::Backend::mysql # VERSION -version 0.15 +version 0.16 # SYNOPSIS @@ -395,6 +395,7 @@ These fields are currently available: - Alexander Nalobin - Dmitry Krylov - Jason A. Crome +- Larry Leszczynski - Olaf Alders - Paul Cochrane - Zoffix Znet