automatic update OBS-URL: https://build.opensuse.org/request/show/618592 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTML-Lint?expand=0&rev=8
148 lines
4.8 KiB
Plaintext
148 lines
4.8 KiB
Plaintext
-------------------------------------------------------------------
|
|
Sat Jun 23 05:26:59 UTC 2018 - coolo@suse.com
|
|
|
|
- updated to 2.32
|
|
see /usr/share/doc/packages/perl-HTML-Lint/Changes
|
|
|
|
|
|
2.32 Fri Jun 22 15:57:39 CDT 2018
|
|
|
|
Note that this very well may be the final release of HTML::Lint that I
|
|
make. I've been spending my time on HTML::Tidy5, which works on HTML5,
|
|
checks for more problems, and is much faster. If you're interested in
|
|
maintaining HTML::Lint, send me email at andy@petdance.com. I'm not
|
|
sure I want to hand it off to anyone yet, but we can discuss.
|
|
|
|
[ENHANCEMENTS]
|
|
Allow "weblint -" to read from STDIN. Thanks, Frank Dana.
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Jan 9 06:32:00 UTC 2018 - coolo@suse.com
|
|
|
|
- updated to 2.30
|
|
see /usr/share/doc/packages/perl-HTML-Lint/Changes
|
|
|
|
2.30 Sun Jan 7 22:02:25 CST 2018
|
|
No changes since 2.27_03.
|
|
|
|
|
|
2.27_03 Wed Jan 3 17:07:07 CST 2018
|
|
[FIXES]
|
|
Removed the text-invalid-entity and attr-invalid-entity, which were
|
|
for entities that had an invalid numeric value, anything greater
|
|
than 𐀀. There is no longer a restriction on the numeric values
|
|
of HTML entities. (GH#60)
|
|
|
|
|
|
2.27_02 Wed Dec 27 11:46:28 CST 2017
|
|
There are be no functionality changes since 2.27_01.
|
|
|
|
[INTERNALS]
|
|
Many Perl::Critic cleanups.
|
|
|
|
|
|
2.27_01 Fri Dec 22 15:54:32 CST 2017
|
|
[ENHANCEMENTS]
|
|
Adds checking of entities in attributes, not just text. Thanks,
|
|
Klaus S. Madsen.
|
|
|
|
[FIXES]
|
|
Calling ->parsefile() would generate an error. Thanks, Shlomi
|
|
Fish. (GH#58)
|
|
|
|
[INTERNALS]
|
|
Prepare for perl 5.26.0 which removes '.' from @INC. Thanks,
|
|
Jim Keenan.
|
|
|
|
Fix disttest target. Thanks, Shlomi Fish.
|
|
|
|
-------------------------------------------------------------------
|
|
Sat Dec 31 06:34:38 UTC 2016 - coolo@suse.com
|
|
|
|
- updated to 2.26
|
|
see /usr/share/doc/packages/perl-HTML-Lint/Changes
|
|
|
|
2.26 Thu Dec 29 22:36:54 CST 2016
|
|
Stable release. No changes from previous release.
|
|
|
|
|
|
2.25_02 Tue Dec 27 14:34:22 CST 2016
|
|
[FIXES]
|
|
html_fragment_ok() was not properly excluding document-level errors.
|
|
It was effectively the same as html_ok().
|
|
|
|
|
|
2.25_01 Fri Dec 23 22:36:17 CST 2016
|
|
[ENHANCEMENTS]
|
|
Added two new types of errors to let you know you're using the
|
|
API incorrectly. You should be parsing files like this:
|
|
|
|
my $lint = HTML::Lint->new;
|
|
$lint->newfile( $filename );
|
|
$lint->parse( $line );
|
|
$lint->eof();
|
|
my @errors = $lint->errors();
|
|
|
|
If you neglect to call ->parse or ->eof, you'll get an error returned
|
|
in the list of errors from ->errors().
|
|
|
|
[FIXES]
|
|
Test::HTML::Lint::html_fragment_ok() was not properly calling ->eof.
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Dec 9 06:38:56 UTC 2016 - coolo@suse.com
|
|
|
|
- updated to 2.24
|
|
see /usr/share/doc/packages/perl-HTML-Lint/Changes
|
|
|
|
2.24 Wed Dec 7 22:20:13 CST 2016
|
|
Official release. No changes from 2.23_01.
|
|
|
|
|
|
2.23_01 Tue Dec 6 22:48:56 CST 2016
|
|
[ENHANCEMENTS]
|
|
Added detection of unknown HTML entities, like "known &unclosed
|
|
&entities are not found". Also fixes the case where HTML::Lint
|
|
gets confused by an entity like "²" which it thought was an
|
|
unterminated "⊃" entity. Thanks, Klaus S. Madsen.
|
|
|
|
[FIXES]
|
|
Errors of the type doc-tag-required did not come out in any defined
|
|
order. They are now sorted by tag name. This was discovered
|
|
because hash randomization caused tests to fail on Perl 5.18 and
|
|
above. Thanks, Slaven Rezic, Andrew Main and Lisa Hare.
|
|
|
|
Handle some warnings that get thrown if certain values are undef.
|
|
Thanks, Yves Lavoie.
|
|
|
|
Handle characters that are not handled by HTML::Entities. (GitHub
|
|
issue #13) Thanks, Tim Landscheidt.
|
|
|
|
[INTERNALS]
|
|
Add a test to verify a fixed bug. Thanks to Lance Wicks as part of
|
|
the CPAN Pull Request Challenge.
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Nov 25 17:31:29 UTC 2015 - mardnh@gmx.de
|
|
|
|
- add patch: perl-HTML-Lint-fix-tests-on-newer-perl-version.patch
|
|
see https://github.com/petdance/html-lint/issues/39
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Apr 20 06:47:58 UTC 2015 - coolo@suse.com
|
|
|
|
- updated to 2.22
|
|
see /usr/share/doc/packages/perl-HTML-Lint/Changes
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Apr 21 18:42:52 UTC 2014 - mardnh@gmx.de
|
|
|
|
- update to version 2.20
|
|
|
|
-------------------------------------------------------------------
|
|
Tue May 3 06:12:24 UTC 2011 - coolo@opensuse.org
|
|
|
|
- initial package 2.06
|
|
* created by cpanspec 1.78.04
|
|
|