I'll just give you my personaly opinion...

The major change between 5.6.x and 5.8.x is the way Perl handles UTF8. The "IO layers". Perl 5.8.x will, by default, do an automatic translation between the internal character set (either ISO-Latin-1 as bytes, or UTF-8, commonly), and the character set your file handle is bound to — on most systems that is Latin-1. Perl 5.6.x didn't do that at all. And I'm not convinced whether I really like the behaviour, of either, the old and the new.

Anyway, recommended reading is, in short:

Anyway, that's the reason why you can get new warnings on Perl 5.8.x that you never had on Perl 5.6.x, something like "output of a wide character" (I should check the exact phrasing when I have access to a modern Perl, later today), when the target character set doesn't contain a translation for some Unicode character, and thus, the conversion fails.

update The exact phrasing of the warning is "Wide character in print". Well, I think I was pretty close.


In reply to Re: Major changes between release versions of perl v5.6.1 and perlv5.8.7. by bart
in thread Major changes between release versions of perl v5.6.1 and perlv5.8.7. 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.