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

campaign

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

campaign - npm Package Compare versions

Comparing version 1.4.4 to 1.5.0

6

CHANGELOG.md

@@ -0,3 +1,9 @@

# 1.5.0 Bug as a Service
- Fix an issue where the templating service would throw an error
# 1.4.4 Unsubscribe As Authored
- Introduced `_unsubscribe` layout property, making it optional _(but still a merge variable when using the Mandrill provider)_
# 1.4.3 Easy Going

@@ -4,0 +10,0 @@

2

package.json

@@ -14,3 +14,3 @@ {

},
"version": "1.4.4",
"version": "1.5.0",
"licenses": "MIT",

@@ -17,0 +17,0 @@ "keywords": [

@@ -28,3 +28,3 @@ 'use strict';

}
options.engine.render(options.layout, layoutModel, done);
options.templateEngine.render(options.layout, layoutModel, done);
};

@@ -35,8 +35,8 @@ }

render: function (file, model, done) {
options.engine.render(file, model, getCallback(model, done));
options.templateEngine.render(file, model, getCallback(model, done));
},
renderString: function (template, model, done) {
options.engine.renderString(template, model, getCallback(model, done));
options.templateEngine.renderString(template, model, getCallback(model, done));
}
};
};
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