Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | update perldelta for 5.18.2 | Ricardo Signes | 2013-11-20 | 1 | -323/+25 |
| | |||||
* | perldelta for 89c16a74d5f. | Craig A. Berry | 2013-09-28 | 1 | -3/+4 |
| | |||||
* | document fixing of #119927 (localizing $\) in 5.18.0 | Ricardo Signes | 2013-09-23 | 1 | -0/+5 |
| | |||||
* | perldelta for 0e903f68ee | Tony Cook | 2013-09-11 | 1 | -1/+6 |
| | |||||
* | add new perldelta | Ricardo Signes | 2013-08-12 | 4 | -94/+498 |
| | |||||
* | perlhist: update dates for 5.18.1 in light of RC3 | Ricardo Signes | 2013-08-08 | 1 | -1/+2 |
| | |||||
* | perldelta: mention v5.16, not v5.17, as previous version | Ricardo Signes | 2013-08-08 | 1 | -2/+2 |
| | | | | Thanks for the report, SHIRAKATA Kentaro. | ||||
* | update perlhist and patchlevel for v5.18.1-RC2 | Ricardo Signes | 2013-08-03 | 1 | -0/+1 |
| | |||||
* | perlhist: add 5.18.1! | Ricardo Signes | 2013-08-03 | 1 | -0/+2 |
| | |||||
* | perldelta: remove a leftover XXX section | Ricardo Signes | 2013-08-03 | 1 | -5/+0 |
| | |||||
* | perldelta: fix module updates section | Ricardo Signes | 2013-08-03 | 1 | -1/+11 |
| | |||||
* | perlhist: import the latest perlhist from blead | Ricardo Signes | 2013-08-01 | 1 | -11/+15 |
| | |||||
* | perldelta: remove sections we will not need | Ricardo Signes | 2013-08-01 | 1 | -224/+0 |
| | |||||
* | perldelta: perldelta for /[#]/ and /(?[...])/ changes | Ricardo Signes | 2013-08-01 | 1 | -0/+11 |
| | |||||
* | perldelta: hints updates from 4b985f1 and 9de5f95 | Ricardo Signes | 2013-08-01 | 1 | -2/+7 |
| | |||||
* | perldelta: Digest::SHA fix in 79fe145 | Ricardo Signes | 2013-08-01 | 1 | -1/+1 |
| | |||||
* | perldelta: the easy pre-editing before final checks | Ricardo Signes | 2013-08-01 | 1 | -89/+24 |
| | |||||
* | perldelta: add a missing "=" from a Pod directive | Ricardo Signes | 2013-08-01 | 1 | -1/+1 |
| | |||||
* | perldelta: deep recursion warnings (07b2687d2/#118521) | Father Chrysostomos | 2013-07-27 | 1 | -1/+5 |
| | |||||
* | perldelta for bdbfc51a7b (undef constant my sub) | Father Chrysostomos | 2013-07-27 | 1 | -0/+5 |
| | | | | (cherry picked from commit 07a522a526321341d2a83a852eda7f6fecb333c9) | ||||
* | perldelta for #118305/88dbe4a | Father Chrysostomos | 2013-07-27 | 1 | -0/+5 |
| | | | | (cherry picked from commit 81d3ed5a0fa49c09ac57f7edc0917f345ff6b160) | ||||
* | perldelta for lexsub syntax errors (3a74e0e282c) | Father Chrysostomos | 2013-07-27 | 1 | -0/+5 |
| | | | | (cherry picked from commit 3221bc400f3da87f0d721c2bf3501051fac946ea) | ||||
* | perldelta for two lexsub fixes | Father Chrysostomos | 2013-07-27 | 1 | -0/+10 |
| | | | | (cherry picked from commit 81748522aff12edb368615e9512781d00a2d5d5b) | ||||
* | update perldelta with recent cherry-picks | David Mitchell | 2013-06-15 | 1 | -0/+26 |
| | |||||
* | Ensure that the IV in struct pmop (for ithreads) is aligned properly. | Nicholas Clark | 2013-06-15 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | | Regression in 5.18.0 cherry-picked from c2a50ddb1bed657609ef5e85c7ac5c0bfcaa2c9a The members of struct pmop vary between ithreads and non-ithreads builds. For ithreads, an IV is used for op_pmoffset. For 32 bit platforms built with -Duse64bitint, IVs are 64 bits, but pointers (and all other members of all OP structures) are 32 bits, hence on 32 bit platforms OP structure sizes can be an odd multiple of 4 bytes. Since the swap to the slab allocator, this is causing problems on architectures where 8 byte IVs have to be 8 byte aligned, notably sparcs. The long-term fix is to replace the IV with an appropriate 32 bit type, as it is being used for an array index. However, for maint-5.18 we need a work around which doesn't change the public headers and ideally doesn't impose a large speed or memory penalty. Hence for now, simply avoid using the slab allocator when allocating a struct pmop. Only do this for 32 bit platforms build with 8 byte IVs and ithreads. This is the interim fix for RT #118055. | ||||
* | perldelta for debugger @_ fix | Ricardo Signes | 2013-06-10 | 1 | -0/+5 |
| | |||||
* | perldelta for #117947 | Father Chrysostomos | 2013-06-05 | 1 | -0/+7 |
| | |||||
* | update link for DTrace user guide | Ricardo Signes | 2013-05-31 | 1 | -3/+4 |
| | | | | (cherry picked from commit d2a68ca8e9f23a357624176e0b4b7a3d63913441) | ||||
* | correct example for turning of experimental warnings | Ricardo Signes | 2013-05-30 | 1 | -2/+2 |
| | | | | | Original patch from Thomas Klausner <domm@plix.at>, tweaked with a suggestion by Karen Etheridge <perl@froods.org>. | ||||
* | Fix the man/perldoc/doc command in the debugger. | Nicholas Clark | 2013-05-26 | 1 | -0/+6 |
| | | | | | This was accidentally broken by commit c7b0c61d36b24841. (cherry picked from commit b019bbd28397aba60a9673fa89dded4500c6c783) | ||||
* | add new perldelta for 5.18.1 | Ricardo Signes | 2013-05-25 | 3 | -3519/+3927 |
| | |||||
* | final version and perlhist update for 5.18.0v5.18.0 | Ricardo Signes | 2013-05-17 | 1 | -0/+1 |
| | |||||
* | update perlexperiment | Sebastien Aperghis-Tramoni | 2013-05-17 | 1 | -78/+104 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fixed a typo (%H instead of %^H) - removed mention of Unicode support, which is so deep that I doubt that it could ever be removed - added the following items to the "Current experiments" section - alloccopstash - cop_store_label - gv_fetchmethod_*_flags - op_scope - op_lvalue - Smart match (~~) - Lexical $_ - Array and hash container functions accept references - Regular Expression Set Operations - moved the following items to the "Accepted features" section - fork() emulation - Weak references - Internal file glob - 64-bit support - die accepts a reference - DB module - moved the following items to the "Removed features" section - GetOpt::Long Options - 5.005-style threading - Test::Harness::Straps - perlcc - Assertions - The pseudo-hash data type I tried to add the corresponding Perl versions of when features were added and accepted or removed, but used the stable versions as I searched in the perldelta's. | ||||
* | fix wrong tense | Sebastien Aperghis-Tramoni | 2013-05-17 | 1 | -1/+1 |
| | |||||
* | perldelta: document known failure on HP-UX 11.00 | Ricardo Signes | 2013-05-16 | 1 | -1/+6 |
| | |||||
* | bump patchlevel and perlhist for RC4v5.18.0-RC4 | Ricardo Signes | 2013-05-15 | 1 | -0/+1 |
| | |||||
* | perldelta: restate the changes to ${x} versus $x | Ricardo Signes | 2013-05-15 | 1 | -5/+6 |
| | | | | | Credit for improvements made in this commit to to khw. Blame for anything else goes to rjbs. | ||||
* | perldelta: Clarify removal vs deprecation of modules | Aristotle Pagaltzis | 2013-05-15 | 1 | -10/+22 |
| | |||||
* | perldelta: Use 'Here doc' consistently sans dash | Karl Williamson | 2013-05-15 | 1 | -3/+3 |
| | | | | This corresponds to perldiag, and was suggested by Zsbán Ambrus. | ||||
* | Fix typo in perldelta | Karl Williamson | 2013-05-15 | 1 | -1/+1 |
| | | | | Spotted by Zsbán Ambrus | ||||
* | perldelta clarification | Zsbán Ambrus | 2013-05-15 | 1 | -4/+4 |
| | |||||
* | expand documentation of the \cK change | Ricardo Signes | 2013-05-15 | 1 | -2/+17 |
| | |||||
* | perldelta: add another hash overhaul cross reference | Ricardo Signes | 2013-05-15 | 1 | -0/+5 |
| | |||||
* | Clarified perldelta entry for UID/GID magic variables | Leon Timmermans | 2013-05-15 | 1 | -2/+15 |
| | |||||
* | perldelta: various fixes suggested by Dave Mitchell | Ricardo Signes | 2013-05-15 | 1 | -15/+3 |
| | |||||
* | perldelta: remove a literally incorrect "literal" | Ricardo Signes | 2013-05-15 | 1 | -1/+1 |
| | |||||
* | perldelta: collapse a bit of vertical space | Ricardo Signes | 2013-05-14 | 1 | -8/+5 |
| | |||||
* | perldelta: clarify the deprecation of non-PerlIO perl | Ricardo Signes | 2013-05-14 | 1 | -6/+8 |
| | |||||
* | Spelling correction. | James E Keenan | 2013-05-14 | 1 | -1/+1 |
| | |||||
* | perldelta: add obituary for AMORETTE | Ricardo Signes | 2013-05-14 | 1 | -1/+10 |
| |