Socket
Socket
Sign inDemoInstall

generic-pool

Package Overview
Dependencies
Maintainers
2
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

generic-pool - npm Package Compare versions

Comparing version 2.4.6 to 2.5.0

test/generic-pool-test.js

7

CHANGELOG.md
# Change Log
## [2.5.0] - November 16 2016
- backport test suite change to node-tap
- drop support for node 0.6
## [2.4.6] - November 12 2016

@@ -121,3 +125,4 @@ - linting fixes and pkg improvements

[unreleased]: https://github.com/coopernurse/node-pool/compare/v2.4.6...HEAD
[unreleased]: https://github.com/coopernurse/node-pool/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/coopernurse/node-pool/compare/v2.4.6...v2.5.0
[2.4.6]: https://github.com/coopernurse/node-pool/compare/v2.4.5...v2.4.6

@@ -124,0 +129,0 @@ [2.4.5]: https://github.com/coopernurse/node-pool/compare/v2.4.4...v2.4.5

12

package.json
{
"name": "generic-pool",
"description": "Generic resource pooling for Node.JS",
"version": "2.4.6",
"version": "2.5.0",
"author": "James Cooper <james@bitmechanic.com>",

@@ -67,16 +67,16 @@ "contributors": [

"devDependencies": {
"expresso": ">0.0.0"
"tap": "^5.7.1"
},
"engines": {
"node": ">= 0.2.0"
"node": ">= 0.8.0"
},
"scripts": {
"lint": "eslint lib test",
"lint-install": "npm install eslint@^1.10.2 eslint-config-standard@^4.4.0 eslint-plugin-standard@^1.3.1" ,
"test": "expresso test/*.js"
"lint-install": "npm install eslint@^1.10.2 eslint-config-standard@^4.4.0 eslint-plugin-standard@^1.3.1",
"test": "tap test/*-test.js"
},
"publishConfig" : {
"tag": "2.4.x"
"tag": "2.5.x"
},
"license": "MIT"
}

@@ -8,7 +8,7 @@ [![Build Status](https://travis-ci.org/coopernurse/node-pool.svg?branch=v2.4)](https://travis-ci.org/coopernurse/node-pool)

This is the legacy [v2.4 branch](https://github.com/coopernurse/node-pool/tree/v2.4). If possible it's recommended yo upgrade to the version 3 of generic pool as it's most likely that this branch will only be recieving bug fixes. Minor version upgrades are unlikely at this point.
This is the legacy [v2.5 branch](https://github.com/coopernurse/node-pool/tree/v2.5). If possible it's recommended yo upgrade to the version 3 of generic pool as it's most likely that this branch will only be recieving bug fixes. Minor version upgrades are unlikely at this point.
## Installation
$ npm install generic-pool@2.4
$ npm install generic-pool@2.5

@@ -254,16 +254,7 @@ ## History

$ npm install expresso
$ npm install
$ npm test
The test runner runs every test in parallel, so tests cannot safely share
resources. If a test fails, its thrown assertion error may bubble up and halt
execution/cause failures in other running tests; these are spurious. If you
have a failing test, try running it in isolation until you get it to pass.
The tests are run/written using Tap. Most are ports from the old espresso tests and are not in great condition.
The individual tests "wait" by repeatedly checking the condition in the
`beforeExit` callback. The test is marked as "passed" if the `beforeExit`
callback runs successfully. Generally, this is accomplished by counting the
number of assertions and checking that all of the test's assertions have been
asserted.
## Linting

@@ -273,3 +264,3 @@

Becuase the linting tools require nodejs >= `0.10` but we test against `0.8` and `0.6` installation of the tools is done via `npm run lint-install`. Some kind of optionalDevDependencies would be great!
Becuase the linting tools require nodejs >= `0.10` but we test against `0.8` installation of the tools is done via `npm run lint-install`.

@@ -276,0 +267,0 @@ $ npm run lint-install

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