diff --git a/Build.PL b/Build.PL index 6b00f43..ee9d15d 100644 --- a/Build.PL +++ b/Build.PL @@ -8,7 +8,7 @@ Module::Build->new( requires => { 'Apache::Session' => 0, 'JSON' => 0, }, recommends => { 'DBI' => 0, 'Net::LDAP' => 0.38, }, test_requires => { DBI => 0, 'DBD::SQLite' => 0, }, - dist_version => '1.3.9', + dist_version => '1.3.10', autosplit => [qw(lib/Apache/Session/Browseable/_common.pm)], configure_requires => { 'Module::Build' => 0, }, meta_merge => { diff --git a/Changes b/Changes index b16a336..e58a954 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Apache::Session::Browseable. +1.3.10 + - Add quote for fields in INSERT query + 1.3.9 - Return number of deleted rows when called in array context. See [LemonLDAP issue #2428](https://gitlab.ow2.org/lemonldap-ng/lemonldap-ng/-/issues/2428) diff --git a/META.json b/META.json index 11e914c..7738da7 100644 --- a/META.json +++ b/META.json @@ -39,7 +39,7 @@ "provides" : { "Apache::Session::Browseable" : { "file" : "lib/Apache/Session/Browseable.pm", - "version" : "v1.3.9" + "version" : "v1.3.10" }, "Apache::Session::Browseable::DBI" : { "file" : "lib/Apache/Session/Browseable/DBI.pm", @@ -91,7 +91,7 @@ }, "Apache::Session::Browseable::Store::DBI" : { "file" : "lib/Apache/Session/Browseable/Store/DBI.pm", - "version" : "v1.2.2" + "version" : "v1.3.10" }, "Apache::Session::Browseable::Store::File" : { "file" : "lib/Apache/Session/Browseable/Store/File.pm", @@ -155,6 +155,6 @@ "url" : "https://github.com/LemonLDAPNG/Apache-Session-Browseable" } }, - "version" : "v1.3.9", - "x_serialization_backend" : "JSON::PP version 4.04" + "version" : "v1.3.10", + "x_serialization_backend" : "JSON::PP version 4.06" } diff --git a/META.yml b/META.yml index f0c0f96..73cdae6 100644 --- a/META.yml +++ b/META.yml @@ -17,7 +17,7 @@ name: Apache-Session-Browseable provides: Apache::Session::Browseable: file: lib/Apache/Session/Browseable.pm - version: v1.3.9 + version: v1.3.10 Apache::Session::Browseable::DBI: file: lib/Apache/Session/Browseable/DBI.pm version: v1.3.9 @@ -56,7 +56,7 @@ provides: version: v1.2.2 Apache::Session::Browseable::Store::DBI: file: lib/Apache/Session/Browseable/Store/DBI.pm - version: v1.2.2 + version: v1.3.10 Apache::Session::Browseable::Store::File: file: lib/Apache/Session/Browseable/Store/File.pm version: v1.2.2 @@ -105,5 +105,5 @@ requires: resources: license: http://dev.perl.org/licenses/ repository: https://github.com/LemonLDAPNG/Apache-Session-Browseable -version: v1.3.9 +version: v1.3.10 x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/Apache/Session/Browseable.pm b/lib/Apache/Session/Browseable.pm index dec193e..aaf922e 100644 --- a/lib/Apache/Session/Browseable.pm +++ b/lib/Apache/Session/Browseable.pm @@ -1,6 +1,6 @@ package Apache::Session::Browseable; -our $VERSION = '1.3.9'; +our $VERSION = '1.3.10'; print STDERR "Use a sub module of Apache::Session::Browseable such as Apache::Session::Browseable::File"; diff --git a/lib/Apache/Session/Browseable/Store/DBI.pm b/lib/Apache/Session/Browseable/Store/DBI.pm index 80dcd51..343cc67 100644 --- a/lib/Apache/Session/Browseable/Store/DBI.pm +++ b/lib/Apache/Session/Browseable/Store/DBI.pm @@ -3,7 +3,7 @@ package Apache::Session::Browseable::Store::DBI; use strict; use Apache::Session::Store::DBI; our @ISA = qw(Apache::Session::Store::DBI); -our $VERSION = 1.2.2; +our $VERSION = 1.3.10; sub insert { my ( $self, $session ) = @_;