Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atomist/slack-messages

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atomist/slack-messages - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

13

CHANGELOG.md

@@ -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(/</, "&lt;")
.replace(/>/, "&gt;");
.replace(/&/g, "&amp;")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;");
}

@@ -23,0 +23,0 @@ else {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc