Updating tedious Dependency to 2.1.1#47
Conversation
…owable. Used sql-server docker container to test against (docker run -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=Password12!' -p 1433:1433 --name dev -d microsoft/mssql-server-linux:2017-latest)
|
@arthurschreiber @v-suhame |
|
@chdh I'll try and get this merged soon, although I'm not 100% sure about the release process around this package. 👍 |
|
@arthurschreiber Any updates? |
|
@kibertoad as I’m Still on travel until Saturday, I can’t really do much here. Also, upgrading to I’ll try to get to this as soon as I can. 🙇🏻♂️ |
|
@arthurschreiber Would it be useful if I also created a PR that would drop pre-6 Node support from this library as well? |
|
@arthurschreiber thanks for following up! I just wanted to check in one more time- if this isn't getting published, no worries, will publish this fork as a scoped package for the time being |
| [](https://david-dm.org/tediousjs/tedious-connection-pool) | ||
| [](https://badge.fury.io/js/tedious-connection-pool) | ||
| [](https://ci.appveyor.com/project/ben-page/tedious-connection-pool) | ||
| npm version: 1.0.6 |
There was a problem hiding this comment.
@jschell12 as much as I like getting rid of those stupid badges, I suppose we ought to call out we're doing that in the PR description if we're going to do it
| "license": "MIT", | ||
| "dependencies": { | ||
| "tedious": "^1.14.0" | ||
| "tedious": "^2.1.1" |
| this.timeout(timeout); | ||
|
|
||
| var poolConfig = {min: 2}; | ||
| var poolConfig = { min: 2 }; |
There was a problem hiding this comment.
@jschell12 I think these other changes might be making this harder to merge (it would be for me anyway, if I was the one who had to merge it)
|
Any reason why this has not been merged? |
Description
The tedious dependency has been updated from 1.14.0 to 2.1.1. Unit tests have been modified slightly as they would fail when running against sql server hosted as a container locally.
Related Issue
#43
Motivation and Context
Although this pull request addresses an existing issue to update the tedious pkg, I personally wanted to leverage the new streaming capabilities added since tedious@2.0.1.
How Has This Been Tested?
This change has not affected existing tests. No new tests have been added. I used a docker container running mssql to runt the tests against.
I also ran the following scripts to set up the test environment in sql server
Types of changes
Checklist: