Comparing version 3.1.1 to 3.2.3
# History | ||
## 3.2.3 | ||
* Switch from deprecated `node-uuid` to `uuid` version 3.0.0 (thanks @marcbachmann) | ||
## 3.1.3 | ||
* Update to handlebars 4 that fixes several security vulnerabilities: | ||
- [https://nodesecurity.io/advisories/39](https://nodesecurity.io/advisories/39) | ||
- [https://nodesecurity.io/advisories/48](https://nodesecurity.io/advisories/48) | ||
- [https://nodesecurity.io/advisories/61](https://nodesecurity.io/advisories/61) | ||
- [https://nodesecurity.io/advisories/77](https://nodesecurity.io/advisories/77) | ||
* Updates other packages to recent versions. | ||
## 3.1.2 | ||
* Adds Travis test for node 6 and updates the refs for node 4 and 5 | ||
## 3.1.1 | ||
@@ -4,0 +21,0 @@ |
115
package.json
{ | ||
"name": "boomcatch", | ||
"version": "3.1.1", | ||
"description": "A standalone, node.js-based beacon receiver for boomerang.", | ||
"homepage": "https://github.com/springernature/boomcatch", | ||
"bugs": "https://github.com/springernature/boomcatch/issues", | ||
"license": "GPL-3.0+", | ||
"author": "Springer Nature (https://github.com/springernature)", | ||
"main": "./src", | ||
"bin": { | ||
"boomcatch": "./src/cli.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/springernature/boomcatch.git" | ||
}, | ||
"keywords": [ | ||
"boomerang", | ||
"kylie", | ||
"beacon", | ||
"server", | ||
"receiver", | ||
"forwarder", | ||
"mapper", | ||
"marshaller", | ||
"rum", | ||
"metric", | ||
"monitoring", | ||
"performance" | ||
], | ||
"dependencies": { | ||
"check-types": "~3.2.0", | ||
"commander": "~2.8.1", | ||
"get-off-my-log": "~0.1.0", | ||
"qs": "~3.1.0", | ||
"useragent": "~2.1.6", | ||
"yamlparser": "~0.0.2", | ||
"request": "~2.57.0", | ||
"node-uuid": "~1.4.3", | ||
"toobusy-js": "~0.4.2", | ||
"handlebars": "~3.0.3", | ||
"ua-parser-js": "~0.7.7" | ||
}, | ||
"optionalDependencies": { | ||
"ain2": "~1.5.2" | ||
}, | ||
"devDependencies": { | ||
"jshint": "~2.8.0", | ||
"mocha": "~2.2.5", | ||
"chai": "~3.0.0", | ||
"mockery": "~1.4.0", | ||
"spooks": "~2.0.0", | ||
"cheerio": "~0.19.0" | ||
}, | ||
"scripts": { | ||
"lint": "jshint src --config .jshintrc", | ||
"test": "mocha --ui tdd --reporter spec --recursive --colors test" | ||
} | ||
"name": "boomcatch", | ||
"version": "3.2.3", | ||
"description": "A standalone, node.js-based beacon receiver for boomerang.", | ||
"homepage": "https://github.com/springernature/boomcatch", | ||
"bugs": "https://github.com/springernature/boomcatch/issues", | ||
"license": "GPL-3.0+", | ||
"author": "Springer Nature (https://github.com/springernature)", | ||
"main": "./src", | ||
"bin": { | ||
"boomcatch": "./src/cli.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/springernature/boomcatch.git" | ||
}, | ||
"keywords": [ | ||
"boomerang", | ||
"kylie", | ||
"beacon", | ||
"server", | ||
"receiver", | ||
"forwarder", | ||
"mapper", | ||
"marshaller", | ||
"rum", | ||
"metric", | ||
"monitoring", | ||
"performance" | ||
], | ||
"dependencies": { | ||
"check-types": "~3.2.0", | ||
"commander": "~2.9.0", | ||
"get-off-my-log": "~0.1.0", | ||
"handlebars": "~4.0.5", | ||
"qs": "~3.1.0", | ||
"request": "~2.74.0", | ||
"toobusy-js": "~0.5.1", | ||
"ua-parser-js": "~0.7.10", | ||
"useragent": "~2.1.8", | ||
"uuid": "^3.0.0", | ||
"yamlparser": "~0.0.2" | ||
}, | ||
"optionalDependencies": { | ||
"ain2": "~2.0.0" | ||
}, | ||
"devDependencies": { | ||
"jshint": "~2.9.0", | ||
"mocha": "~3.0.2", | ||
"chai": "~3.0.0", | ||
"mockery": "~1.4.0", | ||
"spooks": "~2.0.0", | ||
"cheerio": "~0.19.0" | ||
}, | ||
"scripts": { | ||
"lint": "jshint src --config .jshintrc", | ||
"test": "mocha --ui tdd --reporter spec --recursive --colors test" | ||
} | ||
} | ||
@@ -10,3 +10,3 @@ # boomcatch | ||
* **boomcatch version**: *3.1.1* | ||
* **boomcatch version**: *3.2.3* | ||
* **node.js versions**: *0.10 and later* | ||
@@ -271,2 +271,6 @@ | ||
## Support | ||
You can have a look at the [Springer Nature Frontend Playbook][support] for an explanation of how we support our open source projects. | ||
## License | ||
@@ -288,3 +292,4 @@ | ||
[history]: HISTORY.md | ||
[support]: https://github.com/springernature/frontend/blob/master/practices/open-source-support.md | ||
[license]: COPYING | ||
@@ -24,3 +24,3 @@ // Copyright © 2014, 2015, 2016 Springer Nature | ||
path = require('path'), | ||
uuid = require('node-uuid'), | ||
uuid = require('uuid'), | ||
extensions; | ||
@@ -27,0 +27,0 @@ |
@@ -30,3 +30,3 @@ // Copyright © 2014, 2015, 2016 Springer Nature | ||
mockery.registerAllowable('check-types'); | ||
mockery.registerAllowable('node-uuid'); | ||
mockery.registerAllowable('uuid'); | ||
mockery.registerAllowable('crypto'); | ||
@@ -33,0 +33,0 @@ |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
536770
293
+ Addeduuid@^3.0.0
+ Addedain2@2.0.0(transitive)
+ Addedasn1@0.2.6(transitive)
+ Addedassert-plus@0.2.01.0.0(transitive)
+ Addedasync@2.6.4(transitive)
+ Addedaws-sign2@0.6.0(transitive)
+ Addedaws4@1.13.2(transitive)
+ Addedbcrypt-pbkdf@1.0.2(transitive)
+ Addedbl@1.1.2(transitive)
+ Addedcaseless@0.11.0(transitive)
+ Addedcommander@2.9.0(transitive)
+ Addedcore-util-is@1.0.2(transitive)
+ Addeddashdash@1.14.1(transitive)
+ Addedecc-jsbn@0.1.2(transitive)
+ Addedextend@3.0.2(transitive)
+ Addedextsprintf@1.3.0(transitive)
+ Addedform-data@1.0.1(transitive)
+ Addedgetpass@0.1.7(transitive)
+ Addedhandlebars@4.0.14(transitive)
+ Addedhar-validator@2.0.6(transitive)
+ Addedhawk@3.1.3(transitive)
+ Addedhttp-signature@1.1.1(transitive)
+ Addedis-typedarray@1.0.0(transitive)
+ Addedisarray@1.0.0(transitive)
+ Addedjsbn@0.1.1(transitive)
+ Addedjson-schema@0.4.0(transitive)
+ Addedjsprim@1.4.2(transitive)
+ Addedlodash@4.17.21(transitive)
+ Addedmime-db@1.52.0(transitive)
+ Addedmime-types@2.1.35(transitive)
+ Addednan@2.3.5(transitive)
+ Addedpinkie@2.0.4(transitive)
+ Addedpinkie-promise@2.0.1(transitive)
+ Addedprocess-nextick-args@1.0.7(transitive)
+ Addedpunycode@1.4.1(transitive)
+ Addedqs@6.2.4(transitive)
+ Addedreadable-stream@2.0.6(transitive)
+ Addedrequest@2.74.0(transitive)
+ Addedsafer-buffer@2.1.2(transitive)
+ Addedsource-map@0.6.1(transitive)
+ Addedsshpk@1.18.0(transitive)
+ Addedtoobusy-js@0.5.1(transitive)
+ Addedtough-cookie@2.3.4(transitive)
+ Addedtweetnacl@0.14.5(transitive)
+ Addeduglify-js@3.19.3(transitive)
+ Addedunix-dgram@0.2.3(transitive)
+ Addedutil-deprecate@1.0.2(transitive)
+ Addeduuid@3.4.0(transitive)
+ Addedverror@1.10.0(transitive)
- Removednode-uuid@~1.4.3
- Removedain2@1.5.3(transitive)
- Removedalign-text@0.1.4(transitive)
- Removedamdefine@1.0.1(transitive)
- Removedasn1@0.1.11(transitive)
- Removedassert-plus@0.1.5(transitive)
- Removedasync@0.9.2(transitive)
- Removedaws-sign2@0.5.0(transitive)
- Removedbl@0.9.5(transitive)
- Removedbluebird@2.11.0(transitive)
- Removedcamelcase@1.2.1(transitive)
- Removedcaseless@0.10.0(transitive)
- Removedcenter-align@0.1.3(transitive)
- Removedcliui@2.1.0(transitive)
- Removedcombined-stream@0.0.7(transitive)
- Removedcommander@2.8.1(transitive)
- Removedctype@0.5.3(transitive)
- Removeddecamelize@1.2.0(transitive)
- Removeddelayed-stream@0.0.5(transitive)
- Removedform-data@0.2.0(transitive)
- Removedhandlebars@3.0.8(transitive)
- Removedhar-validator@1.8.0(transitive)
- Removedhawk@2.3.1(transitive)
- Removedhttp-signature@0.11.0(transitive)
- Removedis-buffer@1.1.6(transitive)
- Removedisarray@0.0.1(transitive)
- Removedkind-of@3.2.2(transitive)
- Removedlazy-cache@1.0.4(transitive)
- Removedlongest@1.0.1(transitive)
- Removedmime-db@1.12.0(transitive)
- Removedmime-types@2.0.14(transitive)
- Removednan@2.0.9(transitive)
- Removedreadable-stream@1.0.34(transitive)
- Removedrepeat-string@1.6.1(transitive)
- Removedrequest@2.57.0(transitive)
- Removedright-align@0.1.3(transitive)
- Removedsource-map@0.1.430.5.7(transitive)
- Removedtldts@6.1.61(transitive)
- Removedtldts-core@6.1.61(transitive)
- Removedtoobusy-js@0.4.3(transitive)
- Removedtough-cookie@5.0.0(transitive)
- Removeduglify-js@2.8.29(transitive)
- Removeduglify-to-browserify@1.0.2(transitive)
- Removedunix-dgram@0.2.2(transitive)
- Removedwindow-size@0.1.0(transitive)
- Removedwordwrap@0.0.2(transitive)
- Removedyargs@3.10.0(transitive)
Updatedcommander@~2.9.0
Updatedhandlebars@~4.0.5
Updatedrequest@~2.74.0
Updatedtoobusy-js@~0.5.1
Updatedua-parser-js@~0.7.10
Updateduseragent@~2.1.8