You are viewing the version of this documentation from Perl blead. This is a development version of Perl.

CONTENTS

NAME

perl5337delta - what is new for perl v5.33.7

DESCRIPTION

This document describes differences between the 5.33.6 release and the 5.33.7 release.

If you are upgrading from an earlier release such as 5.33.5, first read perl5336delta, which describes differences between 5.33.5 and 5.33.6.

Core Enhancements

Experimental Try/Catch Syntax

An initial experimental attempt at providing try/catch notation has been added.

use feature 'try';

try {
    a_function();
}
catch ($e) {
    warn "An error occurred: $e";
}

For more information, see "Try Catch Exception Handling" in perlsyn.

Modules and Pragmata

Updated Modules and Pragmata

Documentation

Changes to Existing Documentation

We have attempted to update the documentation to reflect the changes listed in this document. If you find any we have missed, open an issue at https://github.com/Perl/perl5/issues.

Additionally, the following selected changes have been made:

perlfunc

Diagnostics

The following additions or changes have been made to diagnostic output, including warnings and fatal error messages. For the complete list of diagnostic messages, see perldiag.

Changes to perldiag

perldiag was missing some entries for existing diagnostics.

Configuration and Compilation

Platform Support

Platform-Specific Notes

Windows

Building with mingw.org compilers (version 3.4.5 or later) using mingw runtime versions < 3.22 now works again. This was broken in Perl 5.31.4.

Building with mingw.org compilers (version 3.4.5 or later) using mingw runtime versions >= 3.21 now works (for compilers up to version 5.3.0).

Makefile.mk, and thus support for dmake, has been removed. It is still possible to build Perl on Windows using nmake (Makefile) and GNU make (GNUmakefile). [GH #18511]

Selected Bug Fixes

Obituary

Kent Fredric (KENTNL) passed away in February 2021. A native of New Zealand and a self-described "huge geek," Kent was the author or maintainer of 178 CPAN distributions, the Perl maintainer for the Gentoo Linux distribution and a contributor to the Perl core distribution. He is mourned by his family, friends and open source software communities worldwide.

Acknowledgements

Perl 5.33.7 represents approximately 4 weeks of development since Perl 5.33.6 and contains approximately 11,000 lines of changes across 230 files from 19 authors.

Excluding auto-generated files, documentation and release tools, there were approximately 2,800 lines of changes to 140 .pm, .t, .c and .h files.

Perl continues to flourish into its fourth decade thanks to a vibrant community of users and developers. The following people are known to have contributed the improvements that became Perl 5.33.7:

Andy Dougherty, Chris 'BinGOs' Williams, Craig A. Berry, Dan Book, Eugene Alvin Villar, H.Merijn Brand, Hugo van der Sanden, James E Keenan, Karl Williamson, Leon Timmermans, Paul Evans, Ricardo Signes, Richard Leach, Sawyer X, Steve Hay, Tomasz Konojacki, Tony Cook, Yves Orton, Zakariyya Mughal.

The list above is almost certainly incomplete as it is automatically generated from version control history. In particular, it does not include the names of the (very much appreciated) contributors who reported issues to the Perl bug tracker.

Many of the changes included in this version originated in the CPAN modules included in Perl's core. We're grateful to the entire CPAN community for helping Perl to flourish.

For a more complete list of all of Perl's historical contributors, please see the AUTHORS file in the Perl source distribution.

Reporting Bugs

If you find what you think is a bug, you might check the perl bug database at https://github.com/Perl/perl5/issues. There may also be information at http://www.perl.org/, the Perl Home Page.

If you believe you have an unreported bug, please open an issue at https://github.com/Perl/perl5/issues. Be sure to trim your bug down to a tiny but sufficient test case.

If the bug you are reporting has security implications which make it inappropriate to send to a public issue tracker, then see "SECURITY VULNERABILITY CONTACT INFORMATION" in perlsec for details of how to report the issue.

Give Thanks

If you wish to thank the Perl 5 Porters for the work we had done in Perl 5, you can do so by running the perlthanks program:

perlthanks

This will send an email to the Perl 5 Porters list with your show of thanks.

SEE ALSO

The Changes file for an explanation of how to view exhaustive details on what changed.

The INSTALL file for how to build Perl.

The README file for general stuff.

The Artistic and Copying files for copyright information.