Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: c2a2dae2a601f3f6763176071568b8eac779de3f
      
https://github.com/Perl/perl5/commit/c2a2dae2a601f3f6763176071568b8eac779de3f
  Author: James E Keenan <jkee...@cpan.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M dist/Data-Dumper/Makefile.PL

  Log Message:
  -----------
  Report Data::Dumper problems to Perl 5 Github issues queue

In the commit message for 29c66c43dc9b80118284c89a37f090d4f2fada58,
Nicholas Clark wrote:

    Really we should decide *which* bugtracker is canonical for Data::Dumper
    (and will be checked and acted upon) and then record that metadata in this
    Makefile.PL so that [metacpan.org, etc., can] link to it.

Let's provide that information based on the examples of other
blead-upstream distros under `dist`, `dist/Module-CoreList/Makefile.PL`
and `dist/PathTools/Makefile.PL`.


  Commit: 9d01359457b066b1a6c0ee815f85a90e6eee8da0
      
https://github.com/Perl/perl5/commit/9d01359457b066b1a6c0ee815f85a90e6eee8da0
  Author: Nicholas Clark <n...@ccl4.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M dist/Data-Dumper/Changes
    M dist/Data-Dumper/Dumper.pm

  Log Message:
  -----------
  Bump Data::Dumper's $VERSION and update Changes, for a dev release.


  Commit: 993d875ed9fa768b16cc370dd5550b05a81b71f0
      
https://github.com/Perl/perl5/commit/993d875ed9fa768b16cc370dd5550b05a81b71f0
  Author: Karl Williamson <k...@cpan.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M dist/Data-Dumper/Dumper.xs

  Log Message:
  -----------
  Dumper.xs: Port ESC_NATIVE back on EBCDIC

Wrap its definition with LATIN1_TO_NATIVE() which will automatically
port it back as far as possible.

This is the only use of ESC_NATIVE on cpan, so I don't think it's worth
putting it in ppport.h


  Commit: 11eb60b7e13a0e889bff409fd9bd08afdb4e85e9
      
https://github.com/Perl/perl5/commit/11eb60b7e13a0e889bff409fd9bd08afdb4e85e9
  Author: Karl Williamson <k...@cpan.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M dist/Data-Dumper/Dumper.xs

  Log Message:
  -----------
  Dumper.xs: isDIGIT() is now in ppport.h

So use it.  This makes the code cleaner, and removes a conditional
(unless the compiler optimizer figures out to do so anyway).


  Commit: fcbd4a2938c13706c5e26cd84141255c0ac9e202
      
https://github.com/Perl/perl5/commit/fcbd4a2938c13706c5e26cd84141255c0ac9e202
  Author: Karl Williamson <k...@cpan.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M dist/Data-Dumper/Dumper.xs

  Log Message:
  -----------
  Dumper.xs: Revise calculation of needed size

This changes the calculation of how large a buffer is needed to use a
loop instead of a chain of conditionals.  I think it is easier to read,
certainly it is tidier, and has the added (small) benefit that it
doesn't give up and choose the worst case scenario for large code
points.


  Commit: 1615185ee59e90a57a3b865c537ba4895a8bd2fd
      
https://github.com/Perl/perl5/commit/1615185ee59e90a57a3b865c537ba4895a8bd2fd
  Author: Karl Williamson <k...@cpan.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M dist/Data-Dumper/Dumper.xs

  Log Message:
  -----------
  Dumper.xs: Output orphaned EBCDIC control as octal

This makes the code simpler, and removes the need to worry about and
comment on EBCDIC.

On ASCII machines there are the C0 controls, the C1 controls, and DEL,
which isn't technically in either set.  The C0 and DEL controls are
treated as low ordinal, and output using octal notation.  This commit
has no behavior changes on ASCII platforms.

On EBCDIC machines, there are 1-1 mappings to the entire set of 65 ASCII
controls.  All but one are in a single block and have been output using
octal.  This commit doesn't change the behavior of the 64 single-block
controls.

There is a lone control that isn't adjacent to the others, orphaned.
This commit's only effect is to cause it to be displayed using octal
instead of hex.  I believe the simplification of the code warrants this
change.

On extant EBCDIC platforms that Perl supports, this control is 0xFF,
named EO or EIGHT ONES, and is somewhat like DEL on ASCII platforms,
which we already display as octal, even though it is much higher ordinal
than any other control displayed as octal.


  Commit: 98ac89521d7fb5d210d344653c664d93e0d7c0c4
      
https://github.com/Perl/perl5/commit/98ac89521d7fb5d210d344653c664d93e0d7c0c4
  Author: Karl Williamson <k...@cpan.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M dist/Data-Dumper/Dumper.xs

  Log Message:
  -----------
  Dumper.xs: Add comment


  Commit: d35299949af458be6f4cee3a4cc26adae86d6a7f
      
https://github.com/Perl/perl5/commit/d35299949af458be6f4cee3a4cc26adae86d6a7f
  Author: Neil Bowers <ne...@neilb.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M AUTHORS
    M Porting/checkAUTHORS.pl
    M dist/Data-Dumper/Changes
    M t/porting/known_pod_issues.dat

  Log Message:
  -----------
  Reformatted Data-Dumper Changes as per CPAN::Changes::Spec

This means that tools can parse this, and in particular MetaCPAN
will list the changes when you look at the dist/release page for
Data-Dumper.

dist/Data-Dumpers/Changes used to be in pod, with a known pod
issue, so that's now dropped.

Updated AUTHORS and checkAUTHORS, as my github account has
an email address not currently known, but it's my prime
email address for Perl stuff.


  Commit: 0bbac695ec3a38c073796ecad0e608d9a0629a65
      
https://github.com/Perl/perl5/commit/0bbac695ec3a38c073796ecad0e608d9a0629a65
  Author: Nicholas Clark <n...@ccl4.org>
  Date:   2021-06-30 (Wed, 30 Jun 2021)

  Changed paths:
    M dist/Data-Dumper/Changes
    M dist/Data-Dumper/Dumper.pm

  Log Message:
  -----------
  Data::Dumper 2.182 was released on 2021-06-30.


Compare: https://github.com/Perl/perl5/compare/35b190cfa2c9...0bbac695ec3a

Reply via email to