Skip to content

Commit

Permalink
release v0.16
Browse files Browse the repository at this point in the history
  [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)
  • Loading branch information
preaction committed Aug 11, 2019
1 parent 7a1b6a1 commit 5297e04
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGES
Expand Up @@ -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]
Expand Down
5 changes: 3 additions & 2 deletions META.json
Expand Up @@ -56,7 +56,7 @@
"provides" : {
"Minion::Backend::mysql" : {
"file" : "lib/Minion/Backend/mysql.pm",
"version" : "0.15"
"version" : "0.16"
}
},
"release_status" : "stable",
Expand All @@ -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 <nalobin@reg.ru>",
"Dmitry Krylov <pentabion@gmail.com>",
"Jason A. Crome <jcrome@empoweredbenefits.com>",
"Larry Leszczynski <larryl@cpan.org>",
"Olaf Alders <olaf@wundersolutions.com>",
"Paul Cochrane <paul@liekut.de>",
"Zoffix Znet <cpan@zoffix.com>"
Expand Down
3 changes: 2 additions & 1 deletion README.mkdn
Expand Up @@ -7,7 +7,7 @@ Minion::Backend::mysql

# VERSION

version 0.15
version 0.16

# SYNOPSIS

Expand Down Expand Up @@ -395,6 +395,7 @@ These fields are currently available:
- Alexander Nalobin <nalobin@reg.ru>
- Dmitry Krylov <pentabion@gmail.com>
- Jason A. Crome <jcrome@empoweredbenefits.com>
- Larry Leszczynski <larryl@cpan.org>
- Olaf Alders <olaf@wundersolutions.com>
- Paul Cochrane <paul@liekut.de>
- Zoffix Znet <cpan@zoffix.com>
Expand Down

0 comments on commit 5297e04

Please sign in to comment.