@atomist/slack-messages
Advanced tools
Comparing version 0.5.0 to 0.5.1
@@ -10,6 +10,13 @@ # Change Log | ||
[Unreleased]: https://github.com/atomist/slack-messages/compare/0.5.0...HEAD | ||
[Unreleased]: https://github.com/atomist/slack-messages/compare/0.5.1...HEAD | ||
## [0.5.0] | ||
## [0.5.1] - 2017-05-15 | ||
[0.5.1]: https://github.com/atomist/slack-messages/compare/0.5.0...0.5.1 | ||
### Fixed | ||
- Replace special characters globally: [#9](https://github.com/atomist/slack-messages/issues/9) | ||
## [0.5.0] - 2017-05-15 | ||
[0.5.0]: https://github.com/atomist/slack-messages/compare/0.4.0...0.5.0 | ||
@@ -21,3 +28,3 @@ | ||
### Fixed | ||
- Fixes #8 (TypeError: key.charAt is not a function) | ||
- Fixes [#8](https://github.com/atomist/slack-messages/issues/8) (TypeError: key.charAt is not a function) | ||
- Slack helper function will render empty string when given undefined values | ||
@@ -24,0 +31,0 @@ |
{ | ||
"name": "@atomist/slack-messages", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"author": "Atomist, Inc", | ||
@@ -5,0 +5,0 @@ "directories": { |
@@ -18,5 +18,5 @@ "use strict"; | ||
return text | ||
.replace(/&/, "&") | ||
.replace(/</, "<") | ||
.replace(/>/, ">"); | ||
.replace(/&/g, "&") | ||
.replace(/</g, "<") | ||
.replace(/>/g, ">"); | ||
} | ||
@@ -23,0 +23,0 @@ else { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43014