You are viewing the version of this documentation from Perl 5.42.0-RC1. This is a development version of Perl.

CONTENTS

NAME

perldelta - what is new for perl v5.42.0

DESCRIPTION

This document describes differences between the 5.42.0 release and the 5.40.0 release.

Core Enhancements

More CORE:: subs

chdir has been added as a subroutine to the CORE:: namespace.

Previously, code like &CORE::chdir($dir) or my $ref = \&CORE::chdir; $ref->($dir) would throw an error saying &CORE::chdir cannot be called directly. These cases are now fully supported.

New pragma source::encoding

This allows you to declare that the portion of a program for the remainder of the lexical scope of this pragma is encoded either entirely in ASCII (for use source::encoding 'ascii') or if UTF-8 is allowed as well (for use source::encoding 'utf8'). No other encodings are accepted. The second form is entirely equivalent to use utf8, and may be used interchangeably with that.

The purpose of this pragma is to catch cases early where you forgot to specify use utf8.

use source::encoding 'ascii' is automatically enabled within the lexical scope of a use v5.41.0 or higher.

no source::encoding turns off all this checking for the remainder of its lexical scope. The meaning of non-ASCII characters is then undefined.

New :writer attribute on field variables

Classes defined using use feature 'class' are now able to automatically create writer accessors for scalar fields, by using the :writer attribute, similar to the way that :reader already creates reader accessors.

class Point {
    field $x :reader :writer :param;
    field $y :reader :writer :param;
}

my $p = Point->new( x => 20, y => 40 );
$p->set_x(60);

New any and all operators

Two new experimental features have been added, which introduce the list-processing operators any and all.

use v5.40;
use feature 'keyword_all';
no warnings 'experimental::keyword_all';

my @numbers = ...

if ( all { $_ % 2 == 0 } @numbers ) {
    say "All the numbers are even";
}

These keywords operate similarly to grep except that they only ever return true or false, testing if any (or all) of the elements in the list make the testing block yield true. Because of this they can short-circuit, avoiding the need to test any further elements if a given element determines the eventual result.

These are inspired by the same-named functions in the List::Util module, except that they are implemented as direct core operators, and thus perform faster, and do not produce an additional subroutine call stack frame for invoking the code block.

The feature flags enabling those keywords have been named keyword_any and keyword_all to avoid confusion with the ability of the feature module to refer to all of its features by using the :all export tag. [GH #23104]

The related experimental warning flags are consequently named experimental::keyword_any and experimental::keyword_all.

Apostrophe as a global name separator can be disabled

This was deprecated in Perl 5.38 and removed as scheduled in perl 5.41.3, but after some discussion has been reinstated by default.

This can be controlled with the apostrophe_as_package_separator feature which is enabled by default, but is disabled from the 5.41 feature bundle onwards.

If you want to disable use within your own code you can explicitly disable the feature:

no feature "apostrophe_as_package_separator";

Note that disabling this feature only prevents use of apostrophe as a package separator within code; symbolic references still treat ' as :: with the feature disabled:

my $symref = "My'Module'Var";
# default features
my $x = $My'Module'Var; # fine
no feature "apostrophe_as_package_separator";
no strict "refs";
my $y = $$symref;       # like $My::Module::Var
my $z = $My'Module'Var; # syntax error

[GH #22644]

Lexical method declaration using my method

Like sub since Perl version 5.18, method can now be prefixed with the my keyword. This declares a subroutine that has lexical, rather than package visibility. See perlclass for more detail.

Lexical method invocation operator ->&

Along with the ability to declare methods lexically, this release also permits invoking a lexical subroutine as if it were a method, bypassing the usual name-based method resolution.

Combined with lexical method declaration, these two new abilities create the effect of having private methods.

Switch and Smart Match operator kept, behind a feature

The "switch" feature and the smartmatch operator, ~~, were introduced in v5.10. Their behavior was significantly changed in v5.10.1. When the "experiment" system was added in v5.18.0, switch and smartmatch were retroactively declared experimental. Over the years, proposals to fix or supplement the features have come and gone.

They were deprecated in Perl v5.38.0 and scheduled for removal in Perl v5.42.0. After extensive discussion their removal has been indefinitely postponed. Using them no longer produces a deprecation warning.

Switch itself still requires the switch feature, which is enabled by default for feature bundles from v5.9.5 through to v5.34. Switch remains disabled in feature bundles 5.35 and later, but can be separately enabled:

# no switch here
use v5.10;
# switch here
use v5.36;
# no switch here
use feature "switch";
# switch here

Smart match now requires the smartmatch feature, which is enabled by default and included in all feature bundles up to 5.40. It is disabled for the 5.41 feature bundle and later, but can be separately enabled:

# smartmatch here
use v5.41;
# no smartmatch here
use feature "smartmatch";
# smartmatch here

[GH #22752]

Unicode 16.0 supported

Perl now supports Unicode 16.0 https://www.unicode.org/versions/Unicode16.0.0/ including the changes introduced in 15.1 https://www.unicode.org/versions/Unicode15.1.0/.

Assigning logical xor ^^= operator

Perl 5.40.0 introduced the logical medium-precedence exclusive-or operator ^^. It was not noticed at the time that the assigning variant ^^= was also missing. This is now added.

Security

[CVE-2024-56406] Heap buffer overflow vulnerability with tr//

A heap buffer overflow vulnerability was discovered in Perl.

When there are non-ASCII bytes in the left-hand-side of the tr operator, S_do_trans_invmap() can overflow the destination pointer d.

$ perl -e '$_ = "\x{FF}" x 1000000; tr/\xFF/\x{100}/;'
Segmentation fault (core dumped)

It is believed that this vulnerability can enable Denial of Service or Arbitrary Code Execution attacks on platforms that lack sufficient defenses.

The patch to fix this issue (87f42aa0e0096e9a346c9672aa3a0bd3bef8c1dd) is applicable to all perls that are vulnerable, including those out-of-support.

Discovered by: Nathan Mills.

[CVE-2025-40909] Perl threads have a working directory race condition where file operations may target unintended paths

Perl thread cloning had a working directory race condition where file operations may target unintended paths. Perl 5.42 will no longer chdir to each handle.

This problem was reported by Vincent Lefèvre via [GH #23010] and assigned [CVE-2025-40909] by the CPAN Security Group.

Fixes were provided via [GH #23019] and [GH #23361].

Incompatible Changes

Removed containing function references for functions without eval

Perl 5.40 reintroduced unconditional references from functions to their containing functions to fix a bug introduced in Perl 5.18 that broke the special behaviour of eval EXPR in package DB which is used by the debugger.

In some cases this change led to circular reference chains between closures and other existing references, resulting in memory leaks.

This change has been reverted, fixing [GH #22547] but re-breaking [GH #19370].

This means the reference loops won't occur, and that lexical variables and functions from enclosing functions may not be visible in the debugger.

Note that calling eval EXPR in a function unconditionally causes a function to reference its enclosing functions as it always has.

Performance Enhancements

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:

perlapi

perldata

perlfunc

perlgov

perlguts

perlop

perlvar

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.

New Diagnostics

New Errors

New Warnings

Changes to Existing Diagnostics

Utility Changes

Porting/test-dist-modules.pl

Configuration and Compilation

Testing

Tests were added and changed to reflect the other additions and changes in this release. Furthermore, these significant changes were made:

Platform Support

Platform-Specific Notes

arm64 Darwin

Fix arm64 darwin hints when using use64bitall with Configure [GH #22672]

Android

Changes to perl_langinfo.h for Android [GH #22650] related to [GH #22627].

Cygwin

cygwin.c: fix several silly/terrible C errors. [GH #22724]

Supply an explicit base address for cygperl*.dll that cannot conflict with those generated by --enable-auto-image-base. [GH #22695][GH #22104]

MacOS (Darwin)

Collation of strings using locales on MacOS 15 (Darwin 24) and up has been turned off due to a failed assertion in its libc.

If earlier versions are also experiencing issues (such as failures in locale.t), you can explicitly disable locale collation by adding the -Accflags=-DNO_LOCALE_COLLATE option to your invocation of ./Configure, or just -DNO_LOCALE_COLLATE to the ccflags and cppflags variables in config.sh.

Internal Changes

Selected Bug Fixes

Obituaries

Abe Timmerman

Abe Timmerman (ABELTJE) passed away on August 15, 2024.

Since 2002, Abe built and maintained the Test::Smoke project: "a set of scripts and modules that try to run the Perl core tests on as many configurations as possible and combine the results into an easy to read report". Smoking Perl on as many platforms and configurations as possible has been instrumental in finding bugs and developing patches for those bugs.

Abe was a regular attendee of the Perl Toolchain Summit (née Perl QA Hackathon), the Dutch Perl Workshop and the Amsterdam.pm user group meetings. With his kindness, his smile and his laugh, he helped make Perl and its community better.

Abeltje's memorial card said "Grab every opportunity to have a drink of bubbly. This is an opportunity". We'll miss you Abe, and we'll have a drink of bubbly in your honor.

Andrew Main

Andrew Main (ZEFRAM) passed away on March 10, 2025.

Zefram was a brilliant person, seemingly knowledgeable in everything and happy to impart his knowledge and share his striking insights with a gentle, technical demeanor that often failed to convey the genuine care with which he communicated.

It would be impossible to overstate the impact that Zefram has had on both the language and culture of Perl over the years. From his countless contributions to the code-base, to his often quirky but always distinctive appearances at conferences and gatherings, his influence and memory are sure to endure long into the future.

Zefram wished to have no designated memorial location in meatspace. His designated memorial location in cyberspace is http://www.fysh.org/~zefram/personal/.

Acknowledgements

Perl 5.42.0 represents approximately 12 months of development since Perl 5.40.0 and contains approximately 280,000 lines of changes across 1,500 files from 65 authors.

Excluding auto-generated files, documentation and release tools, there were approximately 94,000 lines of changes to 860 .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.42.0:

Aaron Dill, Andrei Horodniceanu, Andrew Ruthven, Antanas Vaitkus, Aristotle Pagaltzis, Branislav Zahradník, brian d foy, Chad Granum, Chris 'BinGOs' Williams, Craig A. Berry, Dabrien 'Dabe' Murphy, Dagfinn Ilmari Mannsåker, Dan Book, Daniel Dragan, Dan Jacobson, David Cantrell, David Mitchell, E. Choroba, Ed J, Ed Sabol, Elvin Aslanov, Eric Herman, Erik Huelsmann, Gianni Ceccarelli, Graham Knop, hbmaclean, H.Merijn Brand, iabyn, James E Keenan, James Raspass, Johan Vromans, Karen Etheridge, Karl Williamson, Leon Timmermans, Lukas Mai, Marek Rouchal, Marin Tsanov, Mark Fowler, Masahiro Honma, Max Maischein, Paul Evans, Paul Johnson, Paul Marquess, Peter Eisentraut, Peter John Acklam, Philippe Bruhat (BooK), pyrrhlin, Reini Urban, Richard Leach, Robert Rothenberg, Robin Ragged, Russ Allbery, Scott Baker, Sergei Zhmylev, Sevan Janiyan, Sisyphus, Štěpán Němec, Steve Hay, TAKAI Kousuke, Thibault Duponchelle, Todd Rinaldo, Tony Cook, Unicode Consortium, Vladimír Marek, Yves Orton.

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 https://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.