Changelog for
perl-Mojo-SQLite-3.009-1.12.noarch.rpm :
* Wed Mar 23 2022 Tina Müller
- updated to 3.009 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.009 2022-03-22 20:16:03 EDT - Fix race condition in Mojo::SQLite::Migrations where two processes could attempt to create the same migration. (#25, Oliver Kurz)
* Mon Nov 29 2021 Tina Müller - updated to 3.008 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.008 2021-11-28 11:10:24 EST - Update documentation to indicate that upsert operations are now supported via SQL::Abstract::Pg.
* Mon Aug 02 2021 Tina Müller - updated to 3.007 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.007 2021-08-01 20:17:42 EDT - Increase DBD::SQLite dependency to 1.68 to support and use sqlite_string_mode over sqlite_unicode (#22, Adam Williamson) - The default options now set sqlite_string_mode to DBD_SQLITE_STRING_MODE_UNICODE_FALLBACK, unless sqlite_unicode is specified explicitly in from_string or from_filename. This is equivalent to the previous behavior but ensures that DBD::SQLite will not return malformed strings. - Support wal_mode option to enable WAL journaling mode, which is still currently the default, but may not be set by default in a future release.
* Thu Jun 17 2021 Tina Müller - updated to 3.006 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.006 2021-06-16 00:30:47 EDT - Set default abstract generator to an SQL::Abstract::Pg object, enabling additional features. - Update IRC metadata to libera.chat
* Wed Feb 17 2021 Tina Müller - updated to 3.005 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.005 2021-02-15 21:47:59 EST - Add query_p, select_p, insert_p, update_p, delete_p Mojo::Promise-returning methods to Mojo::SQLite::Database. These are for API compatibility with Mojo::Pg and do not provide non-blocking query functionality. (#20, Stefan Adams) - Use Mojo::Promise in tests instead of the deprecated and decored Mojo::IOLoop::Delay (#20, Stefan Adams)
* Tue Jul 28 2020 Tina Müller - updated to 3.004 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.004 2020-07-22 22:50:43 EDT - The Mojo::SQLite::Migrations sqlite attribute and the Mojo::SQLite::Transaction db attribute are now weak attributes, increasing the required version of Mojolicious to 8.03. - Defer loading of Mojo::IOLoop unless the callback compatibility API is used. - Newly created mojo_migrations tables from Mojo::SQLite::Migrations will use a primary key. - Recognize -json parameters in queries.
* Fri Oct 04 2019 - updated to 3.003 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.003 2019-10-01 15:49:43 EDT - Increase DBD::SQLite dependency to 1.64 to support configuring double-quoted string literals. - Disable double-quoted string literals for all connections. https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted - Change default SQL::Abstract identifier back to double quote.
* Sat Jun 22 2019 Stephan Kulow - updated to 3.002 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.002 2019-06-21 17:41:35 EDT - Changed default SQL::Abstract identifier quoting character to `, as double quoted identifiers may be interpreted as string literals if they are not valid identifiers. https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted
* Sun Jul 22 2018 cooloAATTsuse.com- updated to 3.001 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes
* Fri Jul 21 2017 cooloAATTsuse.com- updated to 3.000 see /usr/share/doc/packages/perl-Mojo-SQLite/Changes 3.000 2017-07-20 01:16:50 EDT - Changed default for max_connections attribute to 1. - Added support for sharing the database connection cache between multiple Mojo::SQLite objects. (based on Mojo::Pg 4.0) - Added parent attribute to Mojo::SQLite. - Fixed database connection leak with automatic migrations. - Removed deprecated Mojo::SQLite::PubSub and associated methods and attributes. SQLite\'s serverless nature means it does not have the ability to support client notifications, so it is not possible to implement an efficient pubsub system as in for example PostgreSQL, Redis, or websockets.