Skip to content

Commit

Permalink
Change dependency to YAML::PP from YAML
Browse files Browse the repository at this point in the history
YAML::PP allows loading of boolean values as true boolean values
by leveraging JSON::PP::Boolean for loading 'true'/'false'.

This is a requirement for JSON schema validation down the road.
  • Loading branch information
ehuelsmann committed Jun 25, 2022
1 parent 5c8154b commit 7a81087
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Changelog
Expand Up @@ -56,6 +56,8 @@ Dependency updates
* PGObject::Util::DBAdmin 1.6.1 (updated from 1.4.0)
* PostgreSQL 13 (updated from 10)
* Workflow 1.59 (upadted from 1.56)
* YAML::PP (new)
* YAML (dropped)


Changelog for 1.9 Series
Expand Down
2 changes: 1 addition & 1 deletion cpanfile
Expand Up @@ -118,7 +118,7 @@ requires 'Workflow::Persister::DBI', '1.59';
requires 'Workflow::Persister::DBI::ExtraData', '1.59';
requires 'XML::LibXML';
requires 'XML::LibXML::XPathContext';
requires 'YAML';
requires 'YAML::PP';
requires 'namespace::autoclean';

recommends 'Math::BigInt::GMP';
Expand Down
2 changes: 1 addition & 1 deletion lib/LedgerSMB/Admin.pm
Expand Up @@ -25,7 +25,7 @@ use Log::Any::Adapter::Log4perl;
use Log::Log4perl qw(:easy);
use Module::Runtime qw(use_module compose_module_name);
use Pod::Usage qw(pod2usage);
use YAML qw(LoadFile);
use YAML::PP qw(LoadFile);

our $VERSION = '0.0.1';

Expand Down

0 comments on commit 7a81087

Please sign in to comment.