-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating tedious Dependency to 2.1.1 #47
base: master
Are you sure you want to change the base?
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 |
[![Dependency Status](https://david-dm.org/tediousjs/tedious-connection-pool.svg)](https://david-dm.org/tediousjs/tedious-connection-pool) | ||
[![npm version](https://badge.fury.io/js/tedious-connection-pool.svg)](https://badge.fury.io/js/tedious-connection-pool) | ||
[![Build status](https://ci.appveyor.com/api/projects/status/jnurb48ao1wrbgbr?svg=true)](https://ci.appveyor.com/project/ben-page/tedious-connection-pool) | ||
npm version: 1.0.6 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@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
@@ -31,7 +31,7 @@ | |||
], | |||
"license": "MIT", | |||
"dependencies": { | |||
"tedious": "^1.14.0" | |||
"tedious": "^2.1.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we go to 5?
@@ -78,10 +78,10 @@ describe('ConnectionPool', function () { | |||
it('min', function (done) { | |||
this.timeout(timeout); | |||
|
|||
var poolConfig = {min: 2}; | |||
var poolConfig = { min: 2 }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@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 [email protected].
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: