- updated to 1.680.0 (1.68)
see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
1.68 -- 2024-10-18
[CHANGES]
* Added (empty) Scalar::List::Utils module so that a module exists
which matches the name of the distribution (GH #135)
1.67 -- 2024-10-18
[BUGFIXES]
* zip() and mesh() should not alias their input values into the
returned results (RT156183)
* Exception message from mesh() should name the correct function
1.66 -- 2024-09-19
[BUGFIXES]
* Apostrophe is no longer special in package names in recent Perl
versions
* Fix operator precedence issue in `t/uniqnum.t`
OBS-URL: https://build.opensuse.org/request/show/1235308
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Scalar-List-Utils?expand=0&rev=55
- updated to 1.650.0 (1.65)
see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
1.65 -- 2024-08-06
[BUGFIXES]
* Update exotic names test to avoid single quote package separator
(GH #128)
* Don't loop forever in uniqnum.t (GH #130)
1.64 -- 2024-08-02
[CHANGES]
* On Perl version 5.40 or later, various `Scalar::Util` functions are
now simply aliases to core-provided functions in `builtin::`:
+ blessed(), refaddr(), reftype(), weaken(), unweaken(), isweak()
* Remember to list `head` and `tail` in `List::Util` SYNOPSIS
* Various improvements to internal CI infrastructure
OBS-URL: https://build.opensuse.org/request/show/1195912
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Scalar-List-Utils?expand=0&rev=53
- updated to 1.59
see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
1.59 -- 2021-09-12
[CHANGES]
* Removed Scalar::Util::isbool() as the API design for older perls
isn't quite clear, and it doesn't do anything useful on any
currently-released perl version
* Tidy up the unnecessary bits of @EXPORT_FAIL
* Use the new G_LIST constant rather than G_ARRAY
1.58 -- 2021-09-12
(bad release because I forgot to `git push`)
1.57 -- 2021-09-11
[CHANGES]
* Added Scalar::Util::isbool() to track new core-supported boolean
value nature on scalars
* Fix various typoes in docs, code comments, etc...
* Removed code conditional on whether SvWEAKREF is supported, as
every perl since v5.6 supports it
[BUGFIXES]
* Fix segfaults when an undefined subroutine is passed to
block-taking subs (thanks ilmari)
* Correct refcount handling on hv_store_ent to PL_DBsub in
set_subname() (thanks nwc10)
* Don't rely on Scalar::Util functions when unit-testing List::Util
ones (thanks haarg)
OBS-URL: https://build.opensuse.org/request/show/918683
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Scalar-List-Utils?expand=0&rev=46
- updated to 1.54
see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
1.54 -- 2020-02-02 15:47
[CHANGES]
* Added List::Util::reductions (RT128237)
* Added List::Util::sample (RT131535)
* Recognise $List::Util::RAND as a source of randomness for sampling
functions (RT131536)
[BUGFIXES]
* Document the difference between ref() and reftype() on precompiled
qr// regexps (RT127963)
* Various improvements to List::Util::uniqnum() to handle stringified
Inf and NaN, negative zero
* Detect platform NV size and number of digits required to calculate
uniqueness
OBS-URL: https://build.opensuse.org/request/show/769921
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Scalar-List-Utils?expand=0&rev=40
see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
1.42 -- 2015/04/32 01:25:55
[CHANGES]
* Added List::Util::unpairs() - the inverse of pairs()
* Documentation to pre-warn users about the possible behaviour in a
later version where the pair* higher-order functionals are no longer
transparent to $_
[BUGFIXES]
* Silence some warnings at test time
* Ensure that the List::Util we're loading the XS via is a sufficient
version when Scalar::Util or Sub::Util load it (RT100863)
1.41 -- 2014/09/05 15:49:50
[BUGFIXES]
* Avoid pre-C99 declaration after statements (RT98624)
* Fix use of GetMagic in List::Util::reduce (RT63211)
1.40 -- 2014/08/30 11:36:36
[CHANGES]
* Added entire new module, Sub::Util to contain functions related
to CODE refs
* Added subname inspired by Sub::Identify
* Added set_subname copied and renamed from Sub::Name
* Also moved set_prototype into Sub::Name, with back-compat wrapper
in Scalar::Util
* Added prototype wrapper of CODE::prototype, for completeness
* Nicer module documentation format, allows neater use of L</...>
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Scalar-List-Utils?expand=0&rev=13
* Added List::Util::product()
* Ensure that List::Util::{any,all,none,notall} return PL_sv_{yes,no}
* Implement reduce() and first() even in the absence of MULTICALL
* Avoid C99/C++-style comments in XS code
* Fix dualvar tests for perl 5.6; fix skip() test counts in dualvar.t
* Neater documentation examples of other functions that can be built using
reduce
* Added any, all, none, notall list reduction functions
(inspired by List::MoreUtils)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Scalar-List-Utils?expand=0&rev=8
+ Bugfix pairmap to return list length in scalar context
+ Added "Odd number of elements" warnings to all pair* functions
+ Added pairfirst
+ Added MULTICALL implementations to pairmap/pairgrep/pairfirst
+ Fix declaration-after-code for C99-challenged compilers
+ Documentation updates to List::Util
+ Bugfix to pairmap/pairgrep when stack moves beneath them
during operation
+ Added pairgrep, pairmap, pairs (inspired by List::Pairwise)
+ Added pairkeys and pairvalues
+ Fix multicall refcount bug RT#80646
+ Merge patch from JDHEDDEN - Add Scalar::Util::isdual() RT#76150
+ Fix a hash order dependency bug t/tainted.t
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Scalar-List-Utils?expand=0&rev=5
+ Use PERL_NO_GET_CONTEXT for efficiency (see perlguts)
+ avoid non-portable warnings
+ Fix PP::reftype in edge cases
+ RT#51484 Preserve utf8 flag of string passed to dualvar()
+ RT#51454 Check first argument to first/reduce is a code
reference
+ RT#50528 [PATCH] p_tainted.t fix for VMS [Craig A. Berry]
+ RT#48550 fix pure perl looks_like_number not to match
non-ascii digits
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Scalar-List-Utils?expand=0&rev=2