Dear Monks,

Having an issue with one of the best modules: L. Before Perl 5.28 it warns about "Use of inherited AUTOLOAD for non-method" when calling subs but in 5.28 it's "no longer allowed". Is there a way to fix L? Or another module with the same feature?

perl -ML -e 'Data::Dump::dd(HTTP::Tiny->new->get("https://www.perlmonk +s.org")->{headers})'

5.26

Use of inherited AUTOLOAD for non-method Data::Dump::dd() is deprecated. This will be fatal in Perl 5.28 { "accept-ranges" => "bytes", "content-length" => 61983, "content-type" => "text/html", "date" => "Mon, 28 Oct 2019 01:11:46 GMT", "etag" => "\"f21f-595ee257cedca\"", "last-modified" => "Mon, 28 Oct 2019 01:09:07 GMT", "server" => "Apache/2.4.41", }

5.28

Use of inherited AUTOLOAD for non-method Data::Dump::dd() is no longer allowed
Thank you!

In reply to Perl 28 broke L: How to fix? by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.