Package Release Info

perl-Scalar-List-Utils-1.650.0-bp160.1.12

Update Info: Base Release
Available in Package Hub : 16.0

platforms

AArch64
ppc64le
s390x
x86-64

subpackages

perl-Scalar-List-Utils

Change Logs

* Wed Aug 07 2024 Tina Müller <timueller+perl@suse.de>
- 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
* Tue Aug 09 2022 Tina Müller <timueller+perl@suse.de>
- updated to 1.63
  see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
  1.63 -- 2022-08-08
  [BUGFIXES]
  * Fix off-by-one in stack handling of head() / tail() (RT143905)
  * Fix documentation copy-paste error about builtin::reftype
  * Ensure exotic_names.t will work on EBCDIC platforms
  * Add basic Github CI workflow
* Fri Mar 18 2022 Tina Müller <timueller+perl@suse.de>
- updated to 1.62
  see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
  1.62 -- 2022-03-17
  [CHANGES]
  * Prepare for perl 5.35.10 release:
  + Skip the tainted tests if your perl was built without taint
  support
  + Document the existence of the `builtin::` equivalents for
  several Scalar::Util functions
* Thu Feb 17 2022 Tina Müller <timueller+perl@suse.de>
- updated to 1.61
  see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
  1.61 -- 2022-02-16
  [BUGFIXES}
  * Fix some more signed comparison warnings (Perl5 #19429)
* Sat Oct 09 2021 Tina Müller <timueller+perl@suse.de>
- updated to 1.60
  see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
  1.60 -- 2021-10-08
  [BUGFIXES]
  * Quiet some -Wsign-compare warnings by using `int` instead of `UV`
  (RT136985)
  * Quiet a -Wmaybe-uninitialized warning by ensuring a variable is
  always initialised, because the compiler can't always determine this
  is safe (RT139356)
  * Avoid SIGFPE in product(-1, ...) (RT139601)
* Mon Sep 13 2021 Tina Müller <timueller+perl@suse.de>
- 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)
* Wed Mar 31 2021 Tina Müller <timueller+perl@suse.de>
- updated to 1.56
  see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
  1.56 -- 2021-03-30
  [CHANGES]
  * Added `List::Util::zip`, `List::Util::mesh` and related functions
  (RT129479)
  * Updated embedded ppport.h for Devel::PPPort v3.62
* Mon Apr 13 2020 <timueller+perl@suse.de>
- updated to 1.55
  see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
  1.55 -- 2020-04-09
  [CHANGES]
  * Added List::Util::uniqint
  * Improvements to List::Util::uniqnum handling of floating-point
  values on odd platform configurations (thanks sisyphus)
  * Improvements to $RAND-based unit tests
* Mon Feb 03 2020 <timueller+perl@suse.de>
- 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
* Fri Oct 25 2019 <timueller+perl@suse.de>
- updated to 1.53
  see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
  1.53 -- 2019-10-24 10:41:12
  [BUGFIXES]
  * Handle Unicode package names in Scalar::Util::blessed (GH #81)