Skip to content

Commit

Permalink
chore(all): prepare release 0.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Nov 12, 2015
1 parent 4c79d9e commit 893fbb6
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-resources",
"version": "0.17.1",
"version": "0.17.2",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/sanitize-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ define(['exports', 'aurelia-binding', 'aurelia-dependency-injection', './html-sa
}

SanitizeHTMLValueConverter.prototype.toView = function toView(untrustedMarkup) {
if (untrustedMarkup === null) {
if (untrustedMarkup === null || untrustedMarkup === undefined) {
return null;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/sanitize-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var SanitizeHTMLValueConverter = (function () {
}

SanitizeHTMLValueConverter.prototype.toView = function toView(untrustedMarkup) {
if (untrustedMarkup === null) {
if (untrustedMarkup === null || untrustedMarkup === undefined) {
return null;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/es6/sanitize-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class SanitizeHTMLValueConverter {
}

toView(untrustedMarkup) {
if (untrustedMarkup === null) {
if (untrustedMarkup === null || untrustedMarkup === undefined) {
return null;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/system/sanitize-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ System.register(['aurelia-binding', 'aurelia-dependency-injection', './html-sani
}

SanitizeHTMLValueConverter.prototype.toView = function toView(untrustedMarkup) {
if (untrustedMarkup === null) {
if (untrustedMarkup === null || untrustedMarkup === undefined) {
return null;
}

Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.17.2 (2015-11-12)


#### Bug Fixes

* **sanitize-html:** change toView to return null when untrustedMarkup is undefined ([ab684b08](http://github.com/aurelia/templating-resources/commit/ab684b08b429c71e9209f836ee2632084e3bdf17))


### 0.17.1 (2015-11-11)


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": "aurelia-templating-resources",
"version": "0.17.1",
"version": "0.17.2",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 893fbb6

Please sign in to comment.