Skip to content
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

Switch from NAN to N-API #1304

Merged
merged 29 commits into from
Apr 27, 2020
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
de8888e
Convert NAN to N-API using tool
mohd-akram Sep 30, 2019
fc09ced
Fix macros and binding.gyp
mohd-akram Sep 30, 2019
dd3ef52
Fix compilation
jschlight Jul 8, 2019
421b8ab
Disable N-API C++ exceptions
mohd-akram Sep 30, 2019
4177fb7
Fix tests failing
mohd-akram Sep 30, 2019
3806e0c
Use N-API for async work
mohd-akram Sep 30, 2019
bbec1fa
Add assert.h
mohd-akram Sep 30, 2019
70766c7
Improve usage of libuv
mohd-akram Oct 1, 2019
ae9a005
Support worker threads
mohd-akram Oct 1, 2019
d0142a7
Fix build on Windows
mohd-akram Feb 24, 2020
3aa2e88
fix travis config
Apr 11, 2020
99d7126
Remove unsupported Node.js versions from CI
mohd-akram Apr 16, 2020
6d40993
Add missing return
mohd-akram Apr 16, 2020
bf4770a
Change causes test fail on Node.js 12, macOS
jschlight Apr 16, 2020
8c8083c
Fix references
mohd-akram Apr 16, 2020
5fc6fed
Add define for NAPI_VERSION=3 to binding.gyp
jschlight Apr 17, 2020
b0332e7
Update package.json for N-API builds
jschlight Apr 17, 2020
7b85fb3
Remove unsupported Electron versions
jschlight Apr 18, 2020
af31fb8
Fix warnings
mohd-akram Apr 18, 2020
6b5e3fe
Merge branch 'master' into napi
kewde Apr 19, 2020
e3d9006
ci: fix travis & add latest electron builds
kewde Apr 19, 2020
ad56e17
ci: reduce matrix of prebuilts (to Node >= v10 & electron >= v6) (linux)
kewde Apr 19, 2020
80edf6f
ci: reduce matrix of prebuilts (to Node >= v10 & electron >= v6) (win…
kewde Apr 19, 2020
187adc0
Merge branch 'master' into napi
kewde Apr 19, 2020
766ee8f
Add N-API v3 badge
jschlight Apr 20, 2020
5b38ca4
Update Travis electron node versions
mohd-akram Apr 20, 2020
78dd0d9
Update README with supported versions
mohd-akram Apr 20, 2020
18c37ae
Simplify binding.gyp
mohd-akram Apr 20, 2020
0ffea2d
Merge branch 'master' into napi
kewde Apr 27, 2020
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
Prev Previous commit
Next Next commit
Add assert.h
  • Loading branch information
mohd-akram committed Apr 11, 2020
commit bbec1fa119de0af46055d96d7efad2a32f868af3
1 change: 1 addition & 0 deletions src/database.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#define NODE_SQLITE3_SRC_DATABASE_H


#include <assert.h>
#include <string>
#include <queue>

Expand Down