CPAN-Changes
view release on metacpan or search on metacpan
corpus/dists/B-C.changes view on Meta::CPAN
Fixed wrong xpvshared logic (5.10-5.17), issue 138
Optimized away 0=default op and gp flags and pointers
Optimized away default sv_refcnt=1 (GV not), and skip redundant bytecodes
Set PadnamelistMAXNAMED(comppad_name) needed since 5.19.3 for eval string (#268)
* ByteLoader (0.10): set sv_refcnt to 1 in newsv to skip most defaults
* Assembler (1.11): allow "newpadlx 0"
* Disassembler (1.12): use B::Concise op_flags and private_flags
* Stash (1.03): fix compilation for 5.8.8 and below: gv_fetchsv missing
* t/perldoc.t: perlcc fails with 5.8 because Cwd disturbs the
fragile method package finder for File::Spec. Use cc_harness.
1.42 2012-02-01 rurban
stable up to 5.14
* C: Improved finding methods in parent classes (Warning: method not found),
Save @ISA of those child classes.
Re-implement and simplify my_share_hek, now in terms of share_hek.
PL_strtab hack gone. This fixed the shared_hek destruction
problems.
Turn off CvDYNFILE needed since 5.15.4, use static CvFILE. (DateTime)
corpus/dists/B-C.changes view on Meta::CPAN
Added Win32 workaround for missing PL_do_undump
Stripped perl_ prefix from perl_get_cv, perl_call_pv, perl_call_method
* CC.pm (1.07): added -fslow-signals.
Disabled inlined pp_enter: Fails on empty cxstack.
Backed out inlining of enterloop: GIMME_V fails on freebsd7
Remove strawberry PerlProc_setjmp definition, #define PERL_CORE fixed that
* Bytecode.pm (1.06): same NVX => xpad_cop_seq fix as in C.pm, added 2 new
bytecodes (cop_seq_low, cop_seq_high), fixed tests 9,10,12. Passes
all tests > 5.6 now.
* bytecode.pl: added cop_seq_low (155), cop_seq_high (156) instead of xnv.
No conversion code for loading older bytecode needed, but fragile (double => 2 int)
* t/modules.t: refactored by Todd Rinaldo (toddr). 4*tests per module:
-s a, exitcode 0, ok, no warnings on stderr
* t/TESTS: added 38, failing on CC (Nick Koston).
added 39, failing everywhere.
* t/test.pl: refactor: Try to timeout on all tests (compiler and exec) if
IPC::Run is installed
* MANIFEST, *.pod: Moved conference pods to ramblings,
removed lib/B/Asmdata.pm again, added t/qr_loaded_module.pm
* t/testm.sh, t/modules.pm: added, -t not working yet though
* t/b.t: $[ => $]
corpus/dists/B-C.parsed view on Meta::CPAN
"text" => "Disassembler (1.12): use B::Concise op_flags and private_flags"
},
{
"line" => 135,
"raw" => "\t* Stash (1.03): fix compilation for 5.8.8 and below: gv_fetchsv missing\n",
"style" => "*",
"text" => "Stash (1.03): fix compilation for 5.8.8 and below: gv_fetchsv missing"
},
{
"line" => 136,
"raw" => "\t* t/perldoc.t: perlcc fails with 5.8 because Cwd disturbs the\n\t fragile method package finder for File::Spec. Use cc_harness.\n\n",
"style" => "*",
"text" => "t/perldoc.t: perlcc fails with 5.8 because Cwd disturbs the fragile method package finder for File::Spec. Use cc_harness."
}
],
"line" => 33,
"note" => "rurban",
"raw" => "1.43\t2014-01-15 rurban\n",
"raw_date" => "2014-01-15",
"version" => "1.43"
},
{
"date" => "2012-02-01",
corpus/dists/B-C.parsed view on Meta::CPAN
"text" => "CC.pm (1.07): added -fslow-signals. Disabled inlined pp_enter: Fails on empty cxstack. Backed out inlining of enterloop: GIMME_V fails on freebsd7 Remove strawberry PerlProc_setjmp definition, #define PERL_CORE fixed that"
},
{
"line" => 730,
"raw" => "\t* Bytecode.pm (1.06): same NVX => xpad_cop_seq fix as in C.pm, added 2 new\n\t bytecodes (cop_seq_low, cop_seq_high), fixed tests 9,10,12. Passes\n\t all tests > 5.6 now.\n",
"style" => "*",
"text" => "Bytecode.pm (1.06): same NVX => xpad_cop_seq fix as in C.pm, added 2 new bytecodes (cop_seq_low, cop_seq_high), fixed tests 9,10,12. Passes all tests > 5.6 now."
},
{
"line" => 733,
"raw" => "\t* bytecode.pl: added cop_seq_low (155), cop_seq_high (156) instead of xnv.\n\t No conversion code for loading older bytecode needed, but fragile (double => 2 int)\n",
"style" => "*",
"text" => "bytecode.pl: added cop_seq_low (155), cop_seq_high (156) instead of xnv. No conversion code for loading older bytecode needed, but fragile (double => 2 int)"
},
{
"line" => 735,
"raw" => "\t* t/modules.t: refactored by Todd Rinaldo (toddr). 4*tests per module:\n\t -s a, exitcode 0, ok, no warnings on stderr\n",
"style" => "*",
"text" => "t/modules.t: refactored by Todd Rinaldo (toddr). 4*tests per module: -s a, exitcode 0, ok, no warnings on stderr"
},
{
"line" => 737,
"raw" => "\t* t/TESTS: added 38, failing on CC (Nick Koston).\n\tadded 39, failing everywhere.\n",
corpus/dists/DBIx-Class.changes view on Meta::CPAN
* Fixes
- Fix complex has_many prefetch with resultsets not selecting identity
columns from the root result source
- Fix SkipFirst and FirstSkip limit dialects (Informix and Firebird)
- Fix "Skimming limit" dialects (Top, FetchFirst) to properly check
the order_by criteria for stability
- Fix "Skimming limit" dialects (Top, FetchFirst) to propagate
non-selected order criteria when part of a larger subquery
- Fix RowNumberOver and all "skimming limits" to correctly assemble
bind values when supplied for both select and order_by
- Fix all subquery-based dialects to not lose a subquery fragment
when we both select and order by the result of the same subquery
- Fix the Sybase hubrid limit dialect (RowCountOrGenericSubQ) losing
Group/Having/Order clauses when called without an offset (RT#73244)
- No longer generate incorrect SQL on ->as_query called on resultsets
with software_limit enabled
- A number of corner case fixes of void context populate() with \[]
- Fix corner case of forked children disconnecting the parents DBI
handle
- Improve identity/autoinc retrieval code in MSSQL and Sybase -
should reduce weird side-effects especially with populate()
corpus/dists/DBIx-Class.parsed view on Meta::CPAN
"text" => "Fix \"Skimming limit\" dialects (Top, FetchFirst) to propagate non-selected order criteria when part of a larger subquery"
},
{
"line" => 283,
"raw" => " - Fix RowNumberOver and all \"skimming limits\" to correctly assemble\n bind values when supplied for both select and order_by\n",
"style" => "-",
"text" => "Fix RowNumberOver and all \"skimming limits\" to correctly assemble bind values when supplied for both select and order_by"
},
{
"line" => 285,
"raw" => " - Fix all subquery-based dialects to not lose a subquery fragment\n when we both select and order by the result of the same subquery\n",
"style" => "-",
"text" => "Fix all subquery-based dialects to not lose a subquery fragment when we both select and order by the result of the same subquery"
},
{
"line" => 287,
"raw" => " - Fix the Sybase hubrid limit dialect (RowCountOrGenericSubQ) losing\n Group/Having/Order clauses when called without an offset (RT#73244)\n",
"style" => "-",
"text" => "Fix the Sybase hubrid limit dialect (RowCountOrGenericSubQ) losing Group/Having/Order clauses when called without an offset (RT#73244)"
},
{
"line" => 289,
"raw" => " - No longer generate incorrect SQL on ->as_query called on resultsets\n with software_limit enabled\n",
( run in 2.776 seconds using v1.01-cache-2.11-cpan-b16cb0d3907 )