Skip to content
Open

V2.0 #68

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
b21a45f
Adding files to .gitignore and advertising the v2.0.0-beta.0 release
markirish Apr 5, 2019
6f30c05
Updating version number so that it can be npm published
markirish Apr 5, 2019
75e0648
Merge pull request #55 from markdirish/master
markirish Apr 5, 2019
d3c9ada
Fixing UNICODE build issues, JavaScript type checking, updating packa…
markirish Apr 19, 2019
56d3af3
Fixing issues when building with DEBUG define (printing pointers and …
markirish Apr 29, 2019
f0c0a27
Free the hSTMT handle after Connection.query
markirish Apr 30, 2019
64e3986
Quick fix to pool
markirish May 28, 2019
f0066e4
Merge remote-tracking branch 'upstream/v2.0' into v2.0
markirish May 29, 2019
d9d5400
Changing connection and pool initializations to make them fully async…
markirish Jun 4, 2019
80dcc5b
Writing Pool tests, debugging issues with new odbc.connect and odbc.p…
markirish Jun 5, 2019
0ae9e99
Fixing merge conflicts with merging from upstream (wankdanker/v2.0)
markirish Jun 5, 2019
a55ce7e
Adding .npmignore to ignore tests (but not on github)
markirish Jun 5, 2019
4f0941b
Tracking down memory leak errors. Only a few more to go
markirish Jun 8, 2019
9054451
All memory leaks fixed, 0 bytes definitely or indirectly lost during …
markirish Jun 8, 2019
96d1b79
SQL_DECIMAL bound to SQL_C_CHAR, but tried to convert directly from S…
markirish Jun 10, 2019
b82bbf3
Ooops, removing my test javascript file
markirish Jun 10, 2019
1d80095
Adding license for 2.0.0, changing the official GitHub location now t…
markirish Jun 10, 2019
be9e3d6
Fixing merge conflicts with master branch
markirish Jun 10, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ build
node_modules
deps
.idea
<<<<<<< HEAD
sandbox
core
oldtest
.env
.vscode/
.vscode/
=======
core
.env
.vscode
>>>>>>> master
11 changes: 11 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
a.out
build
node_modules
deps
.idea
sandbox
core
oldtest
.env
.vscode/
test/
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Copyright (c) 2019, IBM
Copyright (c) 2010 Lee Smith <notwink@gmail.com>

Permission is hereby granted, free of charge, to any person
Expand Down
Loading