Skip to content

Commit

Permalink
Prepare the 17.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowbarker committed Mar 26, 2017
1 parent 3e65e5d commit e47a252
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions WHATSNEW.md
@@ -1,9 +1,9 @@

06 February 2017.
26 March 2017.

This is an important bug-fix follow-up to the 17.2.0 release. It fixes a bug in the language detector that when running the vnu.jar command-line checker on a list of documents caused it to sometimes misidentify the language of the 2nd, 3rd, 4th, etc., documents. The bug also caused the memory used by the checker to increase as the number of documents checked at the same time increased, and caused performance to degrade. The release also fixes a longstanding bug around code for identifying overlapping cells in the table-integrity checker. Along with those bug fixes this release also adds an `--exit-zero-always` option to the vnu.jar command-line checker, and changes the checker behavior to allow the `aria-required` attribute everywhere the `required` attribute is allowed.
This release makes the “color” attribute allowed with `link[rel="mask-icon"]`, adds an `--asciiquotes` option to the vnu.jar command-line checker, improves the language detector to help prevent language misidentifications (especially for Russian and Chinese documents), adds better support for IDNs (by updating to ICU4J 58.2), changes the checker behavior to not fail for “Corrupt GZIP trailer” cases, fixes a bug that disallowed Microdata global attributes for `meta[name]`, and makes `allow-top-navigation-by-user-activation` an allowed value for `iframe[sandbox]` (while adding a new error if that value is used at the same time as `allow-top-navigation`).

More: https://github.com/validator/validator/blob/master/CHANGELOG.md#1721
More: https://github.com/validator/validator/blob/master/CHANGELOG.md#1730

The files in this release provide a portable standalone version of the Nu Html Checker in two different forms: as a Java jar file, and as a Java war file.

Expand Down
3 changes: 2 additions & 1 deletion build/build.py
Expand Up @@ -82,7 +82,8 @@
year = time.strftime('%y')
month = time.strftime('%m').lstrip('0')
day = time.strftime('%d').lstrip('0')
validatorVersion = "%s.%s.%s" % (year, month, day)
# validatorVersion = "%s.%s.%s" % (year, month, day)
validatorVersion = "17.3.0"
jingVersion = "20150629VNU"
htmlparserVersion = "1.4.6"
galimatiasVersion = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "vnu-jar",
"version": "17.2.1",
"version": "17.3.0",
"description": "Provides the Nu Html Checker «vnu.jar» file",
"main": "vnu-jar.js",
"engines": {
Expand Down

0 comments on commit e47a252

Please sign in to comment.