forked from pool/perl-Mojo-SQLite
Accepting request 511738 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/511738 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Mojo-SQLite?expand=0&rev=16
This commit is contained in:
committed by
Git OBS Bridge
parent
17ff262bcc
commit
0c944ba723
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:70b46e6de9f5c2408cdec4d4f666aaa9f0801e276878c8c77ab802124f97e5eb
|
||||
size 44046
|
||||
3
Mojo-SQLite-3.000.tar.gz
Normal file
3
Mojo-SQLite-3.000.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7fa9960e682dee80c025677ffdc80963c541cf8a224ceda030422ccbfad87f6f
|
||||
size 41355
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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 $!;
|
||||
|
||||
Reference in New Issue
Block a user