Comparing version 0.15.3 to 0.15.4
@@ -8,2 +8,7 @@ # Change Log | ||
### [0.15.4] - 2016-12-06 | ||
#### Fix | ||
- Set context of `onStart` callback to be the server context. Resolves circular JSON exception | ||
received when attempting to pass context as a parameter. | ||
### [0.15.3] - 2016-12-06 | ||
@@ -89,3 +94,4 @@ #### Add | ||
[Unreleased]: https://github.com/ryanricard/mockyeah/compare/v0.15.3...HEAD | ||
[Unreleased]: https://github.com/ryanricard/mockyeah/compare/v0.15.4...HEAD | ||
[0.15.4]: https://github.com/ryanricard/mockyeah/compare/v0.15.3...v0.15.4 | ||
[0.15.3]: https://github.com/ryanricard/mockyeah/compare/v0.15.2...v0.15.3 | ||
@@ -92,0 +98,0 @@ [0.15.2]: https://github.com/ryanricard/mockyeah/compare/v0.15.1...v0.15.2 |
{ | ||
"name": "mockyeah", | ||
"version": "0.15.3", | ||
"version": "0.15.4", | ||
"description": "An invaluable service mocking platform built on Express.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -25,3 +25,3 @@ 'use strict'; | ||
// Execute callback once server starts | ||
if (onStart) onStart.call(null, this); | ||
if (onStart) onStart.call(this); | ||
}); | ||
@@ -28,0 +28,0 @@ |
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
327939