- New upstream release 1.271
- Return correct name for lexical subroutines
- Silence uninitialized warning in t/07_token.t
- Bump minimum Test::More version to 0.96
- Fix some typos in Pod
- Moved repository to Perl-Critic GitHub org:
https://github.com/Perl-Critic/PPI
- New upstream release 1.266
- Prevent heredoc terminator detection triggering regex errors
- Small clean-ups
- Work around test failures caused by DOS line endings in test data files
(https://github.com/adamkennedy/PPI/issues/243)
- New upstream release 1.262
- Add support for the double diamond (<<>>) input operator
- Adjust position of a todo marker to not catch a passing test
- Recognize `for (;<$foo>;) {}` as containing a readline operator
- Remove accidentally included use of Test::InDistDir
- Allow all PPI::Document instances to have a filename attribute
- Allow underscores in vstrings
- Convert newlines in some raw test files from win32 to unix
- New upstream release 1.250
- Support postfix dereference
- Add support for lexical subroutines from perl-5.26
- Support key-value and index-value slices in PPI::Token::Symbol symbol
method
- Support indented here-docs
- Parse list-embedded curlies as hash constructors
- Keep exponents of 2 or more zeroes from trapping PPI in an endless loop
- Remove dependencies on vars, base and List::MoreUtils
- Remove dependency on File::Remove
- Reduce globals and cross-package variables
- Move to Dist::Zilla
- Add some tests including a TODO test for misparse bug on '(1)-1'
- Allow tests to run without pre-determined module versions
- Make xt/api.t skip/run properly
- Fix some typos and formatting in Changes
- Add travis-perl helper to be run before install
- Update versions of Perl Travis tests on
- Modernize spec using %{make_build} and %{make_install}
- Don't try to run the release tests in the package build
- New upstream release 1.236
- Prevent Node->child from proceeding without a valid argument
- Make test pragma warning code enable -w to match warnings policy
- New upstream release 1.234
- Prevent sub names like v10 from being version strings (GH#65)
- Add Changes entries forgotten in 1.230
- Remove temporary fix introduced in 1.226
- Prevent possible regex on undefined scalar in
__current_token_is_forced_word
- New upstream release 1.228
- Fix test reliance on '.' in @INC
- Temporary fix to keep an untested combination from blocking Perl::Critic
- Keep PPI::Dumper from breaking Perl::Critic under cperl 5.27
- Fix upstream's temporary fix (GH#206, GH#212)
- New upstream release 1.224
- Unit tests for many parts, both passing and TODO
- Many documentation fixes
- Add ->version method to PPI::Statement::Package
- Remove unused PPI::Document->new timeout feature
- Do not expect '.' in @INC
- Many parsing fixes
- Various fixes to the behaviors of methods
- Removal of problematic dependencies
- Simplify find command using -delete
- Drop support for EL6/EL7 as they don't have List::Util ≥ 1.33
- New upstream release 1.220
- Incompatible behavior fixes on PPI::Statement::Sub->prototype
- Improved parsing of various syntax elements
- Code quality improvements
- Various small documentation fixes
- BR: perl(IO::All) and perl(Capture::Tiny) to quieten warnings for author
code during module build
- Fix line endings of new README.md file
- New upstream release 1.218
- Fixes for various parsing and documentation bugs
- 1MB limit on input document size removed
- Moved repository to GitHub: https://github.com/adamkennedy/PPI
- This release by MITHALDU → update source URL
- Use %license where possible
- General fix release 1.215:
- index_locations on an empty document no longer warns
- Corrected a bug in line-spanning attribute support
- Regression test for line-spanning attribute support
- return { foo => 1 } should parse curlys as hash constructor, not block
(CPAN RT#61305)
- Fixed bug with map and regexp confusing PPI (CPAN RT#63943)
- Updated copyright year to 2011
- Fix bless {} probably contains a hash constructor (CPAN RT#64247)
- Backed out glob fix
- Fix cast can trump braces in PPI::Token::Symbol->symbol (CPAN RT#65199)
- Targeted bug fix release, no changes to parsing or normal usage:
- Updated to Module::Install 1.00
- Updated module dependencies in xt author tests
- Fixed extremely broken PPI::Token::Pod::merge and added test case
- Bump perl(Perl::MinimumVersion) requirement to 1.25
- Bump perl(Test::CPAN::Meta) requirement to 0.17
- Bump perl(Test::Pod) requirement to 1.44
- Experimental/development support and bugfix release:
- Fixed bug in ForLoop back-compatibility warning (CPAN RT#48819)
- Added support for $ENV{X_TOKENIZER} --> $PPI::Lexer::X_TOKENIZER
- Upgraded to Module::Install 0.93
- Added support for $PPI::Lexer::X_TOKENIZER, so that alternate experimental
tokenizers can be swapped in for testing
- Added an extra 14_charsets.t case to validate we handle byte order marks
properly
- Moved author tests from t to xt to reduce spurious test failures in CPAN
Testers, when the testing modules change across versions
- Fixed#26082: scalar { %x } is misparsed
- Fixed#26591: VMS patch for PPI 1.118
- Fixed#44862: PPI cannot parse "package Foo::100;" correctly
- Fixed#54208: PPI::Token::Quote::Literal::literal is missing due to
case-sensitivity error
- Run release tests as well as regular test suite
- BR: perl(File::Find::Rule) >= 0.32, perl(File::Find::Rule::Perl) >= 1.09,
perl(Perl::MinimumVersion) >= 1.24 and perl(Test::MinimumVersion) >= 0.101080
for release tests
- Packaging fix release:
- No functional changes
- Upgrading to Module::Install 0.93
- Added missing test_requires dependency for Class::Inspector
- Use RELEASE_TESTING rather than AUTOMATED_TESTING for better test coverage
- Small optimisation release:
- No functional changes
- Upgrading to Module::Install 0.92
- Moved the Test::ClassAPI test to only run during RELEASE_TESTING
to reduce the dependency load (and occasionally Test::ClassAPI seems
to FAIL on CPAN Testers)
- This is a general bug fix and accuracy release:
- don't assign '' to $^W, it generates a warning on Gentoo
- added missing PPI::Token::Regexp fix to Changes file
- updating Copyright to the new year
- fixed#50309: literal() wrong result on "qw (a b c)"
- PPI::Dumper no longer causes Elements to flush location data
- PPI::Dumper no longer disables location information for non-Documents
- +{ package => 1 } doesn't create a PPI::Statement::Package
- extra methods in PPI::Token::Regexp and PPI::Token::QuoteLike::Regexp
- use %{_fixperms} macro instead of our own chmod incantation