Skip to content

Commit

Permalink
Merge branch 'develop' into gh-pages
Browse files Browse the repository at this point in the history
* develop:
  v5.0.4
  Better error reporting (#934)
  chore(CHANGELOG): regenerate changelog
  • Loading branch information
marcoscaceres committed Sep 21, 2016
2 parents 8d6eee8 + bb1e8ca commit 63143e3
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 17 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Change Log

## [v5.0.3](https://github.com/w3c/respec/tree/v5.0.3) (2016-09-20)
[Full Changelog](https://github.com/w3c/respec/compare/v5.0.2...v5.0.3)

## [v5.0.2](https://github.com/w3c/respec/tree/v5.0.2) (2016-09-20)
[Full Changelog](https://github.com/w3c/respec/compare/v5.0.1...v5.0.2)

**Closed issues:**

- respecIsReady is not documented [\#930](https://github.com/w3c/respec/issues/930)

**Merged pull requests:**

- jasmine-core@2.5.2 breaks build 🚨 [\#932](https://github.com/w3c/respec/pull/932) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
- moment@2.15.0 breaks build 🚨 [\#929](https://github.com/w3c/respec/pull/929) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))

## [v5.0.1](https://github.com/w3c/respec/tree/v5.0.1) (2016-09-01)
[Full Changelog](https://github.com/w3c/respec/compare/v5.0.0...v5.0.1)

**Implemented enhancements:**

- Auto Conformance section - words are not complete [\#927](https://github.com/w3c/respec/issues/927)

**Fixed bugs:**

- Auto Conformance section - words are not complete [\#927](https://github.com/w3c/respec/issues/927)

**Merged pull requests:**

- Update snyk to version 1.19.1 🚀 [\#926](https://github.com/w3c/respec/pull/926) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
- Update snyk to version 1.18.1 🚀 [\#922](https://github.com/w3c/respec/pull/922) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))
- Update karma-chrome-launcher to version 2.0.0 🚀 [\#920](https://github.com/w3c/respec/pull/920) ([greenkeeperio-bot](https://github.com/greenkeeperio-bot))

## [v5.0.0](https://github.com/w3c/respec/tree/v5.0.0) (2016-08-16)
[Full Changelog](https://github.com/w3c/respec/compare/v4.4.5...v5.0.0)

Expand Down
2 changes: 1 addition & 1 deletion builds/respec-w3c-common.build.js.map

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions builds/respec-w3c-common.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/core/base-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ define(
resolve(result);
}
}).catch(function(e) {
console.error(e, e.stack);
throw e;
});
}
Expand Down
10 changes: 9 additions & 1 deletion js/core/jquery-enhanced.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
define([
"core/pubsubhub",
"core/utils",
Expand All @@ -14,7 +15,14 @@ define([
// $newEl.attr($(this).attr());
for (var i = 0, n = this.attributes.length; i < n; i++) {
var at = this.attributes[i];
$newEl[0].setAttributeNS(at.namespaceURI, at.name, at.value);
try {
$newEl[0].setAttributeNS(at.namespaceURI, at.name, at.value);
} catch (err) {
var msg = "Your HTML markup is malformed. Error in: \n";
msg += this.outerHTML;
pubsubhub.pub("error", msg);
break; // no point in continuing with this element
}
}
$(this).contents().appendTo($newEl);
$(this).replaceWith($newEl);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "respec",
"version": "5.0.3",
"version": "5.0.4",
"license": "W3C",
"description": "A technical specification pre-processor.",
"engines": {
Expand Down

0 comments on commit 63143e3

Please sign in to comment.