Version 1.2

This commit is contained in:
Yorhel 2025-07-06 07:25:37 +02:00
parent a7868f74bf
commit 5a863c20c2
12 changed files with 16 additions and 11 deletions

View file

@ -1,3 +1,8 @@
1.2 - 2025-07-06
- FU::Pg: Throw error on non-boolean-looking Perl values for boolean bind
parameters
- FU: Improve setting process status during startup
1.1 - 2025-06-07 1.1 - 2025-06-07
- FU::SQL: Add IDENT function and `quote_identifier` option - FU::SQL: Add IDENT function and `quote_identifier` option
- FU::Pg: Set appropriate `quote_identifier` for `$conn->Q()` - FU::Pg: Set appropriate `quote_identifier` for `$conn->Q()`

2
FU.pm
View file

@ -1,4 +1,4 @@
package FU 1.1; package FU 1.2;
use v5.36; use v5.36;
use Carp 'confess', 'croak'; use Carp 'confess', 'croak';
use IO::Socket; use IO::Socket;

View file

@ -30,7 +30,7 @@ The following module versions were used:
=item L<DBD::Pg> 3.18.0 =item L<DBD::Pg> 3.18.0
=item L<FU> 1.1 =item L<FU> 1.2
=item L<HTML::Tiny> 1.08 =item L<HTML::Tiny> 1.08

View file

@ -1,5 +1,5 @@
# Internal module used by FU.pm # Internal module used by FU.pm
package FU::DebugImpl 1.1; package FU::DebugImpl 1.2;
use v5.36; use v5.36;
use utf8; use utf8;
use experimental 'for_list'; use experimental 'for_list';

View file

@ -1,4 +1,4 @@
package FU::Log 1.1; package FU::Log 1.2;
use v5.36; use v5.36;
use Exporter 'import'; use Exporter 'import';
use POSIX 'strftime'; use POSIX 'strftime';

View file

@ -1,4 +1,4 @@
package FU::MultipartFormData 1.1; package FU::MultipartFormData 1.2;
use v5.36; use v5.36;
use Carp 'confess'; use Carp 'confess';
use FU::Util 'utf8_decode'; use FU::Util 'utf8_decode';

View file

@ -1,4 +1,4 @@
package FU::Pg 1.1; package FU::Pg 1.2;
use v5.36; use v5.36;
use FU::XS; use FU::XS;

View file

@ -1,4 +1,4 @@
package FU::SQL 1.1; package FU::SQL 1.2;
use v5.36; use v5.36;
use Exporter 'import'; use Exporter 'import';
use Carp 'confess'; use Carp 'confess';

View file

@ -1,4 +1,4 @@
package FU::Util 1.1; package FU::Util 1.2;
use v5.36; use v5.36;
use FU::XS; use FU::XS;

View file

@ -1,4 +1,4 @@
package FU::Validate 1.1; package FU::Validate 1.2;
use v5.36; use v5.36;
use experimental 'builtin', 'for_list'; use experimental 'builtin', 'for_list';

View file

@ -1,4 +1,4 @@
package FU::XMLWriter 1.1; package FU::XMLWriter 1.2;
use v5.36; use v5.36;
use Carp 'confess'; use Carp 'confess';
use Exporter 'import'; use Exporter 'import';

View file

@ -1,5 +1,5 @@
# This module is for internal use by other FU modules. # This module is for internal use by other FU modules.
package FU::XS 1.1; package FU::XS 1.2;
use Carp; # may be called by XS. use Carp; # may be called by XS.
use XSLoader; use XSLoader;
XSLoader::load('FU'); XSLoader::load('FU');