diff --git a/Mojo-SQLite-2.002.tar.gz b/Mojo-SQLite-2.002.tar.gz deleted file mode 100644 index 5a0928e..0000000 --- a/Mojo-SQLite-2.002.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:70b46e6de9f5c2408cdec4d4f666aaa9f0801e276878c8c77ab802124f97e5eb -size 44046 diff --git a/Mojo-SQLite-3.000.tar.gz b/Mojo-SQLite-3.000.tar.gz new file mode 100644 index 0000000..d9b0e0f --- /dev/null +++ b/Mojo-SQLite-3.000.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa9960e682dee80c025677ffdc80963c541cf8a224ceda030422ccbfad87f6f +size 41355 diff --git a/perl-Mojo-SQLite.changes b/perl-Mojo-SQLite.changes index f703340..a9a5e2c 100644 --- a/perl-Mojo-SQLite.changes +++ b/perl-Mojo-SQLite.changes @@ -1,3 +1,20 @@ +------------------------------------------------------------------- +Fri Jul 21 05:50:16 UTC 2017 - coolo@suse.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. + ------------------------------------------------------------------- Fri Jun 2 06:11:27 UTC 2017 - coolo@suse.com diff --git a/perl-Mojo-SQLite.spec b/perl-Mojo-SQLite.spec index 7d8caf4..cc7c1e8 100644 --- a/perl-Mojo-SQLite.spec +++ b/perl-Mojo-SQLite.spec @@ -17,7 +17,7 @@ Name: perl-Mojo-SQLite -Version: 2.002 +Version: 3.000 Release: 0 %define cpan_name Mojo-SQLite Summary: Tiny Mojolicious Wrapper for Sqlite @@ -34,7 +34,7 @@ BuildRequires: perl(DBD::SQLite) >= 1.50 BuildRequires: perl(DBI) >= 1.627 BuildRequires: perl(Module::Build::Tiny) >= 0.034 BuildRequires: perl(Module::Metadata) -BuildRequires: perl(Mojolicious) >= 7.15 +BuildRequires: perl(Mojolicious) >= 7.32 BuildRequires: perl(SQL::Abstract) >= 1.81 BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(URI) >= 1.69 @@ -42,7 +42,7 @@ BuildRequires: perl(URI::db) >= 0.15 BuildRequires: perl(URI::file) >= 4.21 Requires: perl(DBD::SQLite) >= 1.50 Requires: perl(DBI) >= 1.627 -Requires: perl(Mojolicious) >= 7.15 +Requires: perl(Mojolicious) >= 7.32 Requires: perl(SQL::Abstract) >= 1.81 Requires: perl(URI) >= 1.69 Requires: perl(URI::db) >= 0.15 @@ -52,7 +52,9 @@ Requires: perl(URI::file) >= 4.21 %description Mojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us -real-time web framework. +real-time web framework. Use all at http://sqlite.org/lang.html SQLite has +to offer, generate CRUD queries from data structures, and manage your +database schema with migrations. Database and statement handles are cached automatically, so they can be reused transparently to increase performance. And you can handle connection @@ -84,7 +86,10 @@ All I/O and queries are performed synchronously. However, the "Write-Ahead Log" journal is enabled for all connections, allowing multiple processes to read and write concurrently to the same database file (but only one can write at a time). You can prevent this mode from being enabled by passing -the option 'no_wal'. See http://sqlite.org/wal.html for more information. +the option 'no_wal', but note that this is incompatible with SQLite +databases that have already had WAL mode enabled. See +http://sqlite.org/wal.html and DBD::SQLite/"journal_mode" for more +information. # Performed concurrently my $pid = fork || die $!;