koffi 0.9.1 → 0.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (439) hide show
  1. package/CMakeLists.txt +2 -36
  2. package/package.json +3 -3
  3. package/vendor/dragonbox/CMakeLists.txt +123 -0
  4. package/vendor/dragonbox/LICENSE-Apache2-LLVM +218 -0
  5. package/vendor/dragonbox/LICENSE-Boost +23 -0
  6. package/vendor/dragonbox/README.md +277 -0
  7. package/vendor/dragonbox/cmake/dragonboxConfig.cmake +1 -0
  8. package/vendor/dragonbox/include/dragonbox/dragonbox.h +2670 -0
  9. package/vendor/dragonbox/include/dragonbox/dragonbox_to_chars.h +108 -0
  10. package/vendor/dragonbox/other_files/Dragonbox.pdf +0 -0
  11. package/vendor/dragonbox/other_files/Dragonbox_old.pdf +0 -0
  12. package/vendor/dragonbox/other_files/milo_benchmark.png +0 -0
  13. package/vendor/dragonbox/other_files/unknown_win64_vc2019.html +540 -0
  14. package/vendor/dragonbox/other_files/unknown_win64_vc2019_randomdigit_time.png +0 -0
  15. package/vendor/dragonbox/source/dragonbox_to_chars.cpp +303 -0
  16. package/vendor/dragonbox/subproject/3rdparty/grisu_exact/CMakeLists.txt +24 -0
  17. package/vendor/dragonbox/subproject/3rdparty/grisu_exact/fp_to_chars.cpp +238 -0
  18. package/vendor/dragonbox/subproject/3rdparty/grisu_exact/fp_to_chars.h +95 -0
  19. package/vendor/dragonbox/subproject/3rdparty/grisu_exact/grisu_exact.h +2666 -0
  20. package/vendor/dragonbox/subproject/3rdparty/ryu/CMakeLists.txt +16 -0
  21. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/common.h +114 -0
  22. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s.c +509 -0
  23. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s_full_table.h +367 -0
  24. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/d2s_intrinsics.h +357 -0
  25. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/digit_table.h +35 -0
  26. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s.c +345 -0
  27. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s_full_table.h +55 -0
  28. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/f2s_intrinsics.h +128 -0
  29. package/vendor/dragonbox/subproject/3rdparty/ryu/ryu/ryu.h +46 -0
  30. package/vendor/dragonbox/subproject/3rdparty/schubfach/CMakeLists.txt +22 -0
  31. package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_32.cc +699 -0
  32. package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_32.h +31 -0
  33. package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_64.cc +1354 -0
  34. package/vendor/dragonbox/subproject/3rdparty/schubfach/schubfach_64.h +31 -0
  35. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/example_shaded_plots.m +68 -0
  36. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/license.txt +25 -0
  37. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_distribution.m +92 -0
  38. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_distribution_prctile.m +121 -0
  39. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_histogram_shaded.m +99 -0
  40. package/vendor/dragonbox/subproject/3rdparty/shaded_plots/plot_shaded.m +93 -0
  41. package/vendor/dragonbox/subproject/benchmark/CMakeLists.txt +65 -0
  42. package/vendor/dragonbox/subproject/benchmark/include/benchmark.h +40 -0
  43. package/vendor/dragonbox/subproject/benchmark/matlab/plot_benchmarks.m +22 -0
  44. package/vendor/dragonbox/subproject/benchmark/matlab/plot_digit_benchmark.m +78 -0
  45. package/vendor/dragonbox/subproject/benchmark/matlab/plot_uniform_benchmark.m +95 -0
  46. package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary32_clang.png +0 -0
  47. package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary32_msvc.png +0 -0
  48. package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary64_clang.png +0 -0
  49. package/vendor/dragonbox/subproject/benchmark/results/digits_benchmark_binary64_msvc.png +0 -0
  50. package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary32_clang.png +0 -0
  51. package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary32_msvc.png +0 -0
  52. package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary64_clang.png +0 -0
  53. package/vendor/dragonbox/subproject/benchmark/results/uniform_benchmark_binary64_msvc.png +0 -0
  54. package/vendor/dragonbox/subproject/benchmark/source/benchmark.cpp +238 -0
  55. package/vendor/dragonbox/subproject/benchmark/source/dragonbox.cpp +30 -0
  56. package/vendor/dragonbox/subproject/benchmark/source/grisu_exact.cpp +36 -0
  57. package/vendor/dragonbox/subproject/benchmark/source/ryu.cpp +27 -0
  58. package/vendor/dragonbox/subproject/benchmark/source/schubfach.cpp +31 -0
  59. package/vendor/dragonbox/subproject/common/CMakeLists.txt +42 -0
  60. package/vendor/dragonbox/subproject/common/include/best_rational_approx.h +97 -0
  61. package/vendor/dragonbox/subproject/common/include/big_uint.h +218 -0
  62. package/vendor/dragonbox/subproject/common/include/continued_fractions.h +174 -0
  63. package/vendor/dragonbox/subproject/common/include/good_rational_approx.h +267 -0
  64. package/vendor/dragonbox/subproject/common/include/random_float.h +182 -0
  65. package/vendor/dragonbox/subproject/common/include/rational_continued_fractions.h +57 -0
  66. package/vendor/dragonbox/subproject/common/source/big_uint.cpp +602 -0
  67. package/vendor/dragonbox/subproject/meta/CMakeLists.txt +41 -0
  68. package/vendor/dragonbox/subproject/meta/results/binary32_generated_cache.txt +82 -0
  69. package/vendor/dragonbox/subproject/meta/results/binary64_compressed_cache_error_table.txt +10 -0
  70. package/vendor/dragonbox/subproject/meta/results/binary64_generated_cache.txt +623 -0
  71. package/vendor/dragonbox/subproject/meta/source/generate_cache.cpp +126 -0
  72. package/vendor/dragonbox/subproject/meta/source/live_test.cpp +81 -0
  73. package/vendor/dragonbox/subproject/meta/source/perf_test.cpp +104 -0
  74. package/vendor/dragonbox/subproject/meta/source/sandbox.cpp +20 -0
  75. package/vendor/dragonbox/subproject/test/CMakeLists.txt +70 -0
  76. package/vendor/dragonbox/subproject/test/results/binary32.csv +255 -0
  77. package/vendor/dragonbox/subproject/test/results/binary64.csv +2047 -0
  78. package/vendor/dragonbox/subproject/test/results/plot_required_bits.m +18 -0
  79. package/vendor/dragonbox/subproject/test/source/test_all_shorter_interval_cases.cpp +88 -0
  80. package/vendor/dragonbox/subproject/test/source/uniform_random_test.cpp +95 -0
  81. package/vendor/dragonbox/subproject/test/source/verify_cache_precision.cpp +338 -0
  82. package/vendor/dragonbox/subproject/test/source/verify_compressed_cache.cpp +154 -0
  83. package/vendor/dragonbox/subproject/test/source/verify_fast_multiplication.cpp +168 -0
  84. package/vendor/dragonbox/subproject/test/source/verify_log_computation.cpp +251 -0
  85. package/vendor/dragonbox/subproject/test/source/verify_magic_division.cpp +113 -0
  86. package/vendor/libcc/libcc.cc +7651 -0
  87. package/vendor/libcc/libcc.hh +4312 -0
  88. package/vendor/node-addon-api/CHANGELOG.md +859 -0
  89. package/vendor/node-addon-api/CODE_OF_CONDUCT.md +4 -0
  90. package/vendor/node-addon-api/CONTRIBUTING.md +93 -0
  91. package/vendor/node-addon-api/LICENSE.md +13 -0
  92. package/vendor/node-addon-api/README.md +293 -0
  93. package/vendor/node-addon-api/appveyor.yml +37 -0
  94. package/vendor/node-addon-api/benchmark/README.md +47 -0
  95. package/vendor/node-addon-api/benchmark/binding.gyp +25 -0
  96. package/vendor/node-addon-api/benchmark/function_args.cc +217 -0
  97. package/vendor/node-addon-api/benchmark/function_args.js +60 -0
  98. package/vendor/node-addon-api/benchmark/index.js +34 -0
  99. package/vendor/node-addon-api/benchmark/property_descriptor.cc +91 -0
  100. package/vendor/node-addon-api/benchmark/property_descriptor.js +37 -0
  101. package/vendor/node-addon-api/common.gypi +21 -0
  102. package/vendor/node-addon-api/doc/addon.md +163 -0
  103. package/vendor/node-addon-api/doc/array.md +81 -0
  104. package/vendor/node-addon-api/doc/array_buffer.md +155 -0
  105. package/vendor/node-addon-api/doc/async_context.md +86 -0
  106. package/vendor/node-addon-api/doc/async_operations.md +31 -0
  107. package/vendor/node-addon-api/doc/async_worker.md +427 -0
  108. package/vendor/node-addon-api/doc/async_worker_variants.md +557 -0
  109. package/vendor/node-addon-api/doc/bigint.md +97 -0
  110. package/vendor/node-addon-api/doc/boolean.md +68 -0
  111. package/vendor/node-addon-api/doc/buffer.md +150 -0
  112. package/vendor/node-addon-api/doc/callback_scope.md +54 -0
  113. package/vendor/node-addon-api/doc/callbackinfo.md +97 -0
  114. package/vendor/node-addon-api/doc/checker-tool.md +32 -0
  115. package/vendor/node-addon-api/doc/class_property_descriptor.md +115 -0
  116. package/vendor/node-addon-api/doc/cmake-js.md +68 -0
  117. package/vendor/node-addon-api/doc/conversion-tool.md +28 -0
  118. package/vendor/node-addon-api/doc/creating_a_release.md +62 -0
  119. package/vendor/node-addon-api/doc/dataview.md +248 -0
  120. package/vendor/node-addon-api/doc/date.md +68 -0
  121. package/vendor/node-addon-api/doc/env.md +196 -0
  122. package/vendor/node-addon-api/doc/error.md +120 -0
  123. package/vendor/node-addon-api/doc/error_handling.md +254 -0
  124. package/vendor/node-addon-api/doc/escapable_handle_scope.md +80 -0
  125. package/vendor/node-addon-api/doc/external.md +63 -0
  126. package/vendor/node-addon-api/doc/function.md +402 -0
  127. package/vendor/node-addon-api/doc/function_reference.md +238 -0
  128. package/vendor/node-addon-api/doc/generator.md +13 -0
  129. package/vendor/node-addon-api/doc/handle_scope.md +63 -0
  130. package/vendor/node-addon-api/doc/hierarchy.md +91 -0
  131. package/vendor/node-addon-api/doc/instance_wrap.md +408 -0
  132. package/vendor/node-addon-api/doc/maybe.md +76 -0
  133. package/vendor/node-addon-api/doc/memory_management.md +27 -0
  134. package/vendor/node-addon-api/doc/name.md +29 -0
  135. package/vendor/node-addon-api/doc/node-gyp.md +82 -0
  136. package/vendor/node-addon-api/doc/number.md +163 -0
  137. package/vendor/node-addon-api/doc/object.md +432 -0
  138. package/vendor/node-addon-api/doc/object_lifetime_management.md +83 -0
  139. package/vendor/node-addon-api/doc/object_reference.md +117 -0
  140. package/vendor/node-addon-api/doc/object_wrap.md +561 -0
  141. package/vendor/node-addon-api/doc/prebuild_tools.md +16 -0
  142. package/vendor/node-addon-api/doc/promises.md +79 -0
  143. package/vendor/node-addon-api/doc/property_descriptor.md +286 -0
  144. package/vendor/node-addon-api/doc/propertylvalue.md +50 -0
  145. package/vendor/node-addon-api/doc/range_error.md +59 -0
  146. package/vendor/node-addon-api/doc/reference.md +113 -0
  147. package/vendor/node-addon-api/doc/setup.md +110 -0
  148. package/vendor/node-addon-api/doc/string.md +93 -0
  149. package/vendor/node-addon-api/doc/symbol.md +61 -0
  150. package/vendor/node-addon-api/doc/threadsafe.md +121 -0
  151. package/vendor/node-addon-api/doc/threadsafe_function.md +290 -0
  152. package/vendor/node-addon-api/doc/type_error.md +59 -0
  153. package/vendor/node-addon-api/doc/typed_array.md +78 -0
  154. package/vendor/node-addon-api/doc/typed_array_of.md +137 -0
  155. package/vendor/node-addon-api/doc/typed_threadsafe_function.md +306 -0
  156. package/vendor/node-addon-api/doc/value.md +340 -0
  157. package/vendor/node-addon-api/doc/version_management.md +43 -0
  158. package/vendor/node-addon-api/except.gypi +25 -0
  159. package/vendor/node-addon-api/index.js +11 -0
  160. package/vendor/node-addon-api/napi-inl.deprecated.h +192 -0
  161. package/vendor/node-addon-api/napi-inl.h +6209 -0
  162. package/vendor/node-addon-api/napi.h +2983 -0
  163. package/vendor/node-addon-api/node_api.gyp +9 -0
  164. package/vendor/node-addon-api/noexcept.gypi +26 -0
  165. package/vendor/node-addon-api/nothing.c +0 -0
  166. package/vendor/node-addon-api/package-support.json +21 -0
  167. package/vendor/node-addon-api/package.json +399 -0
  168. package/vendor/node-addon-api/test/README.md +91 -0
  169. package/vendor/node-addon-api/test/addon.cc +36 -0
  170. package/vendor/node-addon-api/test/addon.js +11 -0
  171. package/vendor/node-addon-api/test/addon_build/index.js +49 -0
  172. package/vendor/node-addon-api/test/addon_build/tpl/addon.cc +17 -0
  173. package/vendor/node-addon-api/test/addon_build/tpl/binding.gyp +62 -0
  174. package/vendor/node-addon-api/test/addon_build/tpl/index.js +9 -0
  175. package/vendor/node-addon-api/test/addon_build/tpl/package.json +11 -0
  176. package/vendor/node-addon-api/test/addon_data.cc +99 -0
  177. package/vendor/node-addon-api/test/addon_data.js +46 -0
  178. package/vendor/node-addon-api/test/array_buffer.cc +243 -0
  179. package/vendor/node-addon-api/test/array_buffer.js +69 -0
  180. package/vendor/node-addon-api/test/async_context.cc +21 -0
  181. package/vendor/node-addon-api/test/async_context.js +86 -0
  182. package/vendor/node-addon-api/test/async_progress_queue_worker.cc +83 -0
  183. package/vendor/node-addon-api/test/async_progress_queue_worker.js +46 -0
  184. package/vendor/node-addon-api/test/async_progress_worker.cc +134 -0
  185. package/vendor/node-addon-api/test/async_progress_worker.js +61 -0
  186. package/vendor/node-addon-api/test/async_worker.cc +106 -0
  187. package/vendor/node-addon-api/test/async_worker.js +179 -0
  188. package/vendor/node-addon-api/test/async_worker_nocallback.js +13 -0
  189. package/vendor/node-addon-api/test/async_worker_persistent.cc +63 -0
  190. package/vendor/node-addon-api/test/async_worker_persistent.js +24 -0
  191. package/vendor/node-addon-api/test/basic_types/array.cc +40 -0
  192. package/vendor/node-addon-api/test/basic_types/array.js +35 -0
  193. package/vendor/node-addon-api/test/basic_types/boolean.cc +38 -0
  194. package/vendor/node-addon-api/test/basic_types/boolean.js +35 -0
  195. package/vendor/node-addon-api/test/basic_types/number.cc +99 -0
  196. package/vendor/node-addon-api/test/basic_types/number.js +114 -0
  197. package/vendor/node-addon-api/test/basic_types/value.cc +120 -0
  198. package/vendor/node-addon-api/test/basic_types/value.js +133 -0
  199. package/vendor/node-addon-api/test/bigint.cc +91 -0
  200. package/vendor/node-addon-api/test/bigint.js +53 -0
  201. package/vendor/node-addon-api/test/binding-swallowexcept.cc +12 -0
  202. package/vendor/node-addon-api/test/binding.cc +171 -0
  203. package/vendor/node-addon-api/test/binding.gyp +117 -0
  204. package/vendor/node-addon-api/test/buffer.cc +183 -0
  205. package/vendor/node-addon-api/test/buffer.js +69 -0
  206. package/vendor/node-addon-api/test/callbackscope.cc +22 -0
  207. package/vendor/node-addon-api/test/callbackscope.js +49 -0
  208. package/vendor/node-addon-api/test/common/index.js +113 -0
  209. package/vendor/node-addon-api/test/common/test_helper.h +61 -0
  210. package/vendor/node-addon-api/test/dataview/dataview.cc +48 -0
  211. package/vendor/node-addon-api/test/dataview/dataview.js +35 -0
  212. package/vendor/node-addon-api/test/dataview/dataview_read_write.cc +115 -0
  213. package/vendor/node-addon-api/test/dataview/dataview_read_write.js +90 -0
  214. package/vendor/node-addon-api/test/date.cc +44 -0
  215. package/vendor/node-addon-api/test/date.js +18 -0
  216. package/vendor/node-addon-api/test/env_cleanup.cc +88 -0
  217. package/vendor/node-addon-api/test/env_cleanup.js +56 -0
  218. package/vendor/node-addon-api/test/error.cc +287 -0
  219. package/vendor/node-addon-api/test/error.js +81 -0
  220. package/vendor/node-addon-api/test/error_handling_for_primitives.cc +13 -0
  221. package/vendor/node-addon-api/test/error_handling_for_primitives.js +29 -0
  222. package/vendor/node-addon-api/test/error_terminating_environment.js +94 -0
  223. package/vendor/node-addon-api/test/external.cc +81 -0
  224. package/vendor/node-addon-api/test/external.js +88 -0
  225. package/vendor/node-addon-api/test/function.cc +295 -0
  226. package/vendor/node-addon-api/test/function.js +121 -0
  227. package/vendor/node-addon-api/test/function_reference.cc +202 -0
  228. package/vendor/node-addon-api/test/function_reference.js +157 -0
  229. package/vendor/node-addon-api/test/globalObject/global_object.cc +61 -0
  230. package/vendor/node-addon-api/test/globalObject/global_object_delete_property.cc +31 -0
  231. package/vendor/node-addon-api/test/globalObject/global_object_delete_property.js +61 -0
  232. package/vendor/node-addon-api/test/globalObject/global_object_get_property.cc +40 -0
  233. package/vendor/node-addon-api/test/globalObject/global_object_get_property.js +57 -0
  234. package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.cc +28 -0
  235. package/vendor/node-addon-api/test/globalObject/global_object_has_own_property.js +48 -0
  236. package/vendor/node-addon-api/test/globalObject/global_object_set_property.cc +31 -0
  237. package/vendor/node-addon-api/test/globalObject/global_object_set_property.js +58 -0
  238. package/vendor/node-addon-api/test/handlescope.cc +60 -0
  239. package/vendor/node-addon-api/test/handlescope.js +14 -0
  240. package/vendor/node-addon-api/test/index.js +136 -0
  241. package/vendor/node-addon-api/test/maybe/check.cc +23 -0
  242. package/vendor/node-addon-api/test/maybe/index.js +38 -0
  243. package/vendor/node-addon-api/test/memory_management.cc +17 -0
  244. package/vendor/node-addon-api/test/memory_management.js +9 -0
  245. package/vendor/node-addon-api/test/movable_callbacks.cc +23 -0
  246. package/vendor/node-addon-api/test/movable_callbacks.js +21 -0
  247. package/vendor/node-addon-api/test/name.cc +108 -0
  248. package/vendor/node-addon-api/test/name.js +59 -0
  249. package/vendor/node-addon-api/test/napi_child.js +14 -0
  250. package/vendor/node-addon-api/test/object/delete_property.cc +38 -0
  251. package/vendor/node-addon-api/test/object/delete_property.js +41 -0
  252. package/vendor/node-addon-api/test/object/finalizer.cc +29 -0
  253. package/vendor/node-addon-api/test/object/finalizer.js +28 -0
  254. package/vendor/node-addon-api/test/object/get_property.cc +34 -0
  255. package/vendor/node-addon-api/test/object/get_property.js +40 -0
  256. package/vendor/node-addon-api/test/object/has_own_property.cc +34 -0
  257. package/vendor/node-addon-api/test/object/has_own_property.js +34 -0
  258. package/vendor/node-addon-api/test/object/has_property.cc +38 -0
  259. package/vendor/node-addon-api/test/object/has_property.js +37 -0
  260. package/vendor/node-addon-api/test/object/object.cc +348 -0
  261. package/vendor/node-addon-api/test/object/object.js +217 -0
  262. package/vendor/node-addon-api/test/object/object_deprecated.cc +66 -0
  263. package/vendor/node-addon-api/test/object/object_deprecated.js +47 -0
  264. package/vendor/node-addon-api/test/object/object_freeze_seal.cc +25 -0
  265. package/vendor/node-addon-api/test/object/object_freeze_seal.js +61 -0
  266. package/vendor/node-addon-api/test/object/set_property.cc +37 -0
  267. package/vendor/node-addon-api/test/object/set_property.js +29 -0
  268. package/vendor/node-addon-api/test/object/subscript_operator.cc +42 -0
  269. package/vendor/node-addon-api/test/object/subscript_operator.js +17 -0
  270. package/vendor/node-addon-api/test/object_reference.cc +219 -0
  271. package/vendor/node-addon-api/test/object_reference.js +259 -0
  272. package/vendor/node-addon-api/test/objectwrap.cc +268 -0
  273. package/vendor/node-addon-api/test/objectwrap.js +284 -0
  274. package/vendor/node-addon-api/test/objectwrap_constructor_exception.cc +26 -0
  275. package/vendor/node-addon-api/test/objectwrap_constructor_exception.js +18 -0
  276. package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.cc +30 -0
  277. package/vendor/node-addon-api/test/objectwrap_multiple_inheritance.js +13 -0
  278. package/vendor/node-addon-api/test/objectwrap_removewrap.cc +45 -0
  279. package/vendor/node-addon-api/test/objectwrap_removewrap.js +40 -0
  280. package/vendor/node-addon-api/test/objectwrap_worker_thread.js +19 -0
  281. package/vendor/node-addon-api/test/promise.cc +29 -0
  282. package/vendor/node-addon-api/test/promise.js +18 -0
  283. package/vendor/node-addon-api/test/reference.cc +24 -0
  284. package/vendor/node-addon-api/test/reference.js +14 -0
  285. package/vendor/node-addon-api/test/run_script.cc +56 -0
  286. package/vendor/node-addon-api/test/run_script.js +45 -0
  287. package/vendor/node-addon-api/test/symbol.cc +79 -0
  288. package/vendor/node-addon-api/test/symbol.js +73 -0
  289. package/vendor/node-addon-api/test/testUtil.js +54 -0
  290. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.cc +195 -0
  291. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function.js +188 -0
  292. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.cc +63 -0
  293. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ctx.js +12 -0
  294. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.cc +115 -0
  295. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_existing_tsfn.js +14 -0
  296. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.cc +26 -0
  297. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_ptr.js +7 -0
  298. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.cc +225 -0
  299. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_sum.js +59 -0
  300. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.cc +42 -0
  301. package/vendor/node-addon-api/test/threadsafe_function/threadsafe_function_unref.js +53 -0
  302. package/vendor/node-addon-api/test/thunking_manual.cc +140 -0
  303. package/vendor/node-addon-api/test/thunking_manual.js +17 -0
  304. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.cc +215 -0
  305. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function.js +188 -0
  306. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.cc +68 -0
  307. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ctx.js +12 -0
  308. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.cc +127 -0
  309. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.js +14 -0
  310. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.cc +28 -0
  311. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_ptr.js +7 -0
  312. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.cc +237 -0
  313. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_sum.js +59 -0
  314. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.cc +53 -0
  315. package/vendor/node-addon-api/test/typed_threadsafe_function/typed_threadsafe_function_unref.js +53 -0
  316. package/vendor/node-addon-api/test/typedarray-bigint.js +58 -0
  317. package/vendor/node-addon-api/test/typedarray.cc +216 -0
  318. package/vendor/node-addon-api/test/typedarray.js +69 -0
  319. package/vendor/node-addon-api/test/version_management.cc +27 -0
  320. package/vendor/node-addon-api/test/version_management.js +31 -0
  321. package/vendor/node-addon-api/tools/README.md +73 -0
  322. package/vendor/node-addon-api/tools/check-napi.js +100 -0
  323. package/vendor/node-addon-api/tools/clang-format.js +68 -0
  324. package/vendor/node-addon-api/tools/conversion.js +309 -0
  325. package/vendor/node-addon-api/tools/eslint-format.js +71 -0
  326. package/build/ALL_BUILD.vcxproj +0 -190
  327. package/build/ALL_BUILD.vcxproj.filters +0 -8
  328. package/build/CMakeCache.txt +0 -429
  329. package/build/CMakeFiles/3.23.0-rc1/CMakeASMCompiler.cmake +0 -20
  330. package/build/CMakeFiles/3.23.0-rc1/CMakeASM_MASMCompiler.cmake +0 -20
  331. package/build/CMakeFiles/3.23.0-rc1/CMakeCCompiler.cmake +0 -72
  332. package/build/CMakeFiles/3.23.0-rc1/CMakeCXXCompiler.cmake +0 -83
  333. package/build/CMakeFiles/3.23.0-rc1/CMakeDetermineCompilerABI_C.bin +0 -0
  334. package/build/CMakeFiles/3.23.0-rc1/CMakeDetermineCompilerABI_CXX.bin +0 -0
  335. package/build/CMakeFiles/3.23.0-rc1/CMakeRCCompiler.cmake +0 -6
  336. package/build/CMakeFiles/3.23.0-rc1/CMakeSystem.cmake +0 -15
  337. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CMakeCCompilerId.c +0 -828
  338. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CompilerIdC.exe +0 -0
  339. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/CompilerIdC.vcxproj +0 -71
  340. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CMakeCCompilerId.obj +0 -0
  341. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.exe.recipe +0 -11
  342. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog +0 -0
  343. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog +0 -0
  344. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog +0 -0
  345. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate +0 -2
  346. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog +0 -0
  347. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog +0 -0
  348. package/build/CMakeFiles/3.23.0-rc1/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog +0 -0
  349. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -816
  350. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CompilerIdCXX.exe +0 -0
  351. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/CompilerIdCXX.vcxproj +0 -71
  352. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj +0 -0
  353. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.exe.recipe +0 -11
  354. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog +0 -0
  355. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog +0 -0
  356. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog +0 -0
  357. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate +0 -2
  358. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog +0 -0
  359. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog +0 -0
  360. package/build/CMakeFiles/3.23.0-rc1/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog +0 -0
  361. package/build/CMakeFiles/3.23.0-rc1/VCTargetsPath.txt +0 -1
  362. package/build/CMakeFiles/3.23.0-rc1/VCTargetsPath.vcxproj +0 -31
  363. package/build/CMakeFiles/3.23.0-rc1/x64/Debug/VCTargetsPath.recipe +0 -11
  364. package/build/CMakeFiles/3.23.0-rc1/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate +0 -2
  365. package/build/CMakeFiles/41bcd16856091d4a38fd1f71fbe2f202/generate.stamp.rule +0 -1
  366. package/build/CMakeFiles/CMakeError.log +0 -108
  367. package/build/CMakeFiles/CMakeOutput.log +0 -413
  368. package/build/CMakeFiles/TargetDirectories.txt +0 -4
  369. package/build/CMakeFiles/cmake.check_cache +0 -1
  370. package/build/CMakeFiles/generate.stamp +0 -1
  371. package/build/CMakeFiles/generate.stamp.depend +0 -28
  372. package/build/CMakeFiles/generate.stamp.list +0 -1
  373. package/build/Raylib.dir/Release/Raylib.dll.recipe +0 -14
  374. package/build/Raylib.dir/Release/Raylib.tlog/CL.command.1.tlog +0 -0
  375. package/build/Raylib.dir/Release/Raylib.tlog/CL.read.1.tlog +0 -0
  376. package/build/Raylib.dir/Release/Raylib.tlog/CL.write.1.tlog +0 -0
  377. package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.command.1.tlog +0 -10
  378. package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.read.1.tlog +0 -27
  379. package/build/Raylib.dir/Release/Raylib.tlog/CustomBuild.write.1.tlog +0 -2
  380. package/build/Raylib.dir/Release/Raylib.tlog/Raylib.lastbuildstate +0 -2
  381. package/build/Raylib.dir/Release/Raylib.tlog/Raylib.write.1u.tlog +0 -0
  382. package/build/Raylib.dir/Release/Raylib.tlog/link.command.1.tlog +0 -0
  383. package/build/Raylib.dir/Release/Raylib.tlog/link.read.1.tlog +0 -0
  384. package/build/Raylib.dir/Release/Raylib.tlog/link.write.1.tlog +0 -0
  385. package/build/Raylib.dir/Release/raudio.obj +0 -0
  386. package/build/Raylib.dir/Release/rcore.obj +0 -0
  387. package/build/Raylib.dir/Release/rglfw.obj +0 -0
  388. package/build/Raylib.dir/Release/rmodels.obj +0 -0
  389. package/build/Raylib.dir/Release/rshapes.obj +0 -0
  390. package/build/Raylib.dir/Release/rtext.obj +0 -0
  391. package/build/Raylib.dir/Release/rtextures.obj +0 -0
  392. package/build/Raylib.dir/Release/utils.obj +0 -0
  393. package/build/Raylib.vcxproj +0 -358
  394. package/build/Raylib.vcxproj.filters +0 -37
  395. package/build/Release/Raylib.dll +0 -0
  396. package/build/Release/Raylib.exp +0 -0
  397. package/build/Release/Raylib.lib +0 -0
  398. package/build/Release/koffi.exp +0 -0
  399. package/build/Release/koffi.lib +0 -0
  400. package/build/Release/koffi.node +0 -0
  401. package/build/ZERO_CHECK.vcxproj +0 -176
  402. package/build/ZERO_CHECK.vcxproj.filters +0 -13
  403. package/build/cmake_install.cmake +0 -44
  404. package/build/koffi.dir/Release/call_arm64.obj +0 -0
  405. package/build/koffi.dir/Release/call_x64_sysv.obj +0 -0
  406. package/build/koffi.dir/Release/call_x64_win.obj +0 -0
  407. package/build/koffi.dir/Release/call_x64_win_fwd.obj +0 -0
  408. package/build/koffi.dir/Release/call_x86.obj +0 -0
  409. package/build/koffi.dir/Release/ffi.obj +0 -0
  410. package/build/koffi.dir/Release/koffi.node.recipe +0 -14
  411. package/build/koffi.dir/Release/koffi.tlog/CL.command.1.tlog +0 -0
  412. package/build/koffi.dir/Release/koffi.tlog/CL.read.1.tlog +0 -0
  413. package/build/koffi.dir/Release/koffi.tlog/CL.write.1.tlog +0 -0
  414. package/build/koffi.dir/Release/koffi.tlog/CustomBuild.command.1.tlog +0 -10
  415. package/build/koffi.dir/Release/koffi.tlog/CustomBuild.read.1.tlog +0 -27
  416. package/build/koffi.dir/Release/koffi.tlog/CustomBuild.write.1.tlog +0 -2
  417. package/build/koffi.dir/Release/koffi.tlog/Masm.read.1u.tlog +0 -0
  418. package/build/koffi.dir/Release/koffi.tlog/Masm.write.1u.tlog +0 -0
  419. package/build/koffi.dir/Release/koffi.tlog/koffi.lastbuildstate +0 -2
  420. package/build/koffi.dir/Release/koffi.tlog/koffi.write.1u.tlog +0 -0
  421. package/build/koffi.dir/Release/koffi.tlog/link.command.1.tlog +0 -0
  422. package/build/koffi.dir/Release/koffi.tlog/link.read.1.tlog +0 -0
  423. package/build/koffi.dir/Release/koffi.tlog/link.write.1.tlog +0 -0
  424. package/build/koffi.dir/Release/libcc.obj +0 -0
  425. package/build/koffi.dir/Release/util.obj +0 -0
  426. package/build/koffi.dir/Release/win_delay_load_hook.obj +0 -0
  427. package/build/koffi.sln +0 -67
  428. package/build/koffi.vcxproj +0 -363
  429. package/build/koffi.vcxproj.filters +0 -40
  430. package/build/x64/Release/ALL_BUILD/ALL_BUILD.recipe +0 -20
  431. package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/ALL_BUILD.lastbuildstate +0 -2
  432. package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.command.1.tlog +0 -10
  433. package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.read.1.tlog +0 -27
  434. package/build/x64/Release/ALL_BUILD/ALL_BUILD.tlog/CustomBuild.write.1.tlog +0 -2
  435. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.recipe +0 -11
  436. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.command.1.tlog +0 -10
  437. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.read.1.tlog +0 -28
  438. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/CustomBuild.write.1.tlog +0 -2
  439. package/build/x64/Release/ZERO_CHECK/ZERO_CHECK.tlog/ZERO_CHECK.lastbuildstate +0 -2
@@ -0,0 +1,859 @@
1
+ # node-addon-api Changelog
2
+
3
+ ## 2022-01-21 Version 4.3.0, @NickNaso
4
+
5
+ ### Notable changes:
6
+
7
+ #### API
8
+
9
+ - Added iterator for `Napi::Object`.
10
+ - Fixed usage of `napi_extended_error_info` in `Napi::Error::New()`.
11
+ - Added unwrapping logic to handle graceful error handling for primitives.
12
+
13
+ #### TEST
14
+
15
+ - Removed travis config.
16
+ - Updated compiler used for testing.
17
+ - Added BigInt value test.
18
+ - Minor fixes all overtest suite.
19
+
20
+ ### Documentation
21
+
22
+ - Documentation of iterator for `Napi::Object`.
23
+ - Minor fixes all over documentation.
24
+
25
+ ### Commits
26
+
27
+ * [[`7046834305`](https://github.com/nodejs/node-addon-api/commit/7046834305)] - Update to use recent version of stale action (Michael Dawson)
28
+ * [[`293c7327ad`](https://github.com/nodejs/node-addon-api/commit/293c7327ad)] - Merge pull request #1075 from JckXia/handle-error-thrown (Jack)
29
+ * [[`706b19986d`](https://github.com/nodejs/node-addon-api/commit/706b19986d)] - **test**: create tools/eslint-format (Doni Rubiagatra) [#1080](https://github.com/nodejs/node-addon-api/pull/1080)
30
+ * [[`e0567d098a`](https://github.com/nodejs/node-addon-api/commit/e0567d098a)] - Update documents (JckXia)
31
+ * [[`691813842e`](https://github.com/nodejs/node-addon-api/commit/691813842e)] - Refactor code. Using hard coded string instead of using symbol (JckXia)
32
+ * [[`7423cc5025`](https://github.com/nodejs/node-addon-api/commit/7423cc5025)] - Update object\_wrap.md (#1094) (Alexander Floh)
33
+ * [[`5aab27e6e1`](https://github.com/nodejs/node-addon-api/commit/5aab27e6e1)] - **doc**: add blurb about SetInstanceData (Gabriel Schulhof)
34
+ * [[`e439222fe6`](https://github.com/nodejs/node-addon-api/commit/e439222fe6)] - **test**: add bigint value test (WenheLI) [#1096](https://github.com/nodejs/node-addon-api/pull/1096)
35
+ * [[`0dfa89f4ef`](https://github.com/nodejs/node-addon-api/commit/0dfa89f4ef)] - **doc**: document object iterators (#1090) (Darshan Sen)
36
+ * [[`04b26a9d9b`](https://github.com/nodejs/node-addon-api/commit/04b26a9d9b)] - **test**: add first set of func Ref tests (JckXia) [#1035](https://github.com/nodejs/node-addon-api/pull/1035)
37
+ * [[`a0b3fe9197`](https://github.com/nodejs/node-addon-api/commit/a0b3fe9197)] - Replace magic value with symbol (JckXia)
38
+ * [[`173c5bc9d9`](https://github.com/nodejs/node-addon-api/commit/173c5bc9d9)] - Update PR based on review comments (JckXia)
39
+ * [[`02bcfbccfd`](https://github.com/nodejs/node-addon-api/commit/02bcfbccfd)] - Update doc and appending GUID to object property (JckXia)
40
+ * [[`c89f0bfb0b`](https://github.com/nodejs/node-addon-api/commit/c89f0bfb0b)] - Remove un-necessary comment/iostream and updated docs to reflect on limitations with this impl (JckXia)
41
+ * [[`ed4d1c51c4`](https://github.com/nodejs/node-addon-api/commit/ed4d1c51c4)] - Added unwrapping logic to handle graceful error handling for primitives (JckXia)
42
+ * [[`4663453eae`](https://github.com/nodejs/node-addon-api/commit/4663453eae)] - **src**: fix usage of `napi_extended_error_info` in `Error::New()` (Darshan Sen) [#1092](https://github.com/nodejs/node-addon-api/pull/1092)
43
+ * [[`cb228418e6`](https://github.com/nodejs/node-addon-api/commit/cb228418e6)] - **doc**: fix typo in TypedThreadSafeFunction example (#1083) (Tobias Nießen)
44
+ * [[`b70acdda1f`](https://github.com/nodejs/node-addon-api/commit/b70acdda1f)] - **test**: remove travis config (#1082) (Michael Dawson)
45
+ * [[`1404b7cbea`](https://github.com/nodejs/node-addon-api/commit/1404b7cbea)] - **test**: update compiler used for testing (#1079) (Michael Dawson)
46
+ * [[`4351bffd53`](https://github.com/nodejs/node-addon-api/commit/4351bffd53)] - **doc**: fixup to meet lint rules (Michael Dawson) [#1077](https://github.com/nodejs/node-addon-api/pull/1077)
47
+ * [[`bd8f6e6d1a`](https://github.com/nodejs/node-addon-api/commit/bd8f6e6d1a)] - **src**: add iterator for Object (Darshan Sen)
48
+ * [[`d8fc7b869a`](https://github.com/nodejs/node-addon-api/commit/d8fc7b869a)] - **lint**: add eslint based on config-semistandard (#1067) (Doni Rubiagatra)
49
+
50
+ ## 2021-09-17 Version 4.2.0, @NickNaso
51
+
52
+ ### Notable changes:
53
+
54
+ #### API
55
+
56
+ - Allow creating Function with move-only functor.
57
+ - Fixed casts to not be undefined behavior.
58
+
59
+ #### TEST
60
+
61
+ - Fixed the way to enable C++ exceptions.
62
+ - Run tests with options to prefix build root path.
63
+
64
+ ### Documentation
65
+
66
+ - Fixed documentation about how to enable C++ exception.
67
+ - Minor fixes all over documentation.
68
+
69
+ ### Commits
70
+
71
+ * [[`2dc1f5b66c`](https://github.com/nodejs/node-addon-api/commit/2dc1f5b66c)] - Merge pull request #1065 from strager/move-only-functor (Nicola Del Gobbo)
72
+ * [[`2b57a4aa4c`](https://github.com/nodejs/node-addon-api/commit/2b57a4aa4c)] - **src**: fix casts to not be undefined behavior (Anna Henningsen) [#1070](https://github.com/nodejs/node-addon-api/pull/1070)
73
+ * [[`76de4d8222`](https://github.com/nodejs/node-addon-api/commit/76de4d8222)] - **docs**: fix typos (#1068) (todoroff)
74
+ * [[`22a2f3c926`](https://github.com/nodejs/node-addon-api/commit/22a2f3c926)] - **docs**: fix typo and formatting (#1062) (strager)
75
+ * [[`62b666c34c`](https://github.com/nodejs/node-addon-api/commit/62b666c34c)] - **test**: run tests with opts to prefix bld root path (Deepak Rajamohan) [#1055](https://github.com/nodejs/node-addon-api/pull/1055)
76
+ * [[`cbac3aac5d`](https://github.com/nodejs/node-addon-api/commit/cbac3aac5d)] - **test**: standardize unit test file names (Deepak Rajamohan) [#1056](https://github.com/nodejs/node-addon-api/pull/1056)
77
+ * [[`3e5897a78b`](https://github.com/nodejs/node-addon-api/commit/3e5897a78b)] - **src,test**: allow creating Function with move-only functor (Matthew "strager" Glazar)
78
+ * [[`da2e754a02`](https://github.com/nodejs/node-addon-api/commit/da2e754a02)] - **test**: fix errors reported by newer compiler (Michael Dawson)
79
+ * [[`9aaf3b1324`](https://github.com/nodejs/node-addon-api/commit/9aaf3b1324)] - **doc**: fix documentation about how to enable C++ exception (#1059) (Nicola Del Gobbo) [#1059](https://github.com/nodejs/node-addon-api/pull/1059)
80
+ * [[`b2f861987f`](https://github.com/nodejs/node-addon-api/commit/b2f861987f)] - **test**: fixed the way to enable C++ exceptions. (#1061) (Nicola Del Gobbo) [#1061](https://github.com/nodejs/node-addon-api/pull/1061)
81
+
82
+ ## 2021-08-25 Version 4.1.0, @NickNaso
83
+
84
+ ### Notable changes:
85
+
86
+ #### API
87
+
88
+ - `Napi::Reference` updated the default value to reflect the most possible
89
+ values when there are any errors occurred on `napi_reference_unref`.
90
+ - Added the check for nullpointer on `Napi::String` initialization.
91
+ - Added the wraps for `napi_add_env_cleanup_hook` and
92
+ `napi_remove_env_cleanup_hook`.
93
+ - Added `Napi::Maybe<T>` class to handle pending exception when cpp exception
94
+ disabled.
95
+
96
+ #### TEST
97
+
98
+ - Added first set of tests for `Napi::Symbol`.
99
+ - Updated test suite to avoid parallel running.
100
+
101
+ ### Documentation
102
+
103
+ - Updated example for context sensitivity.
104
+
105
+ ### Commits
106
+
107
+ * [[`3615041423`](https://github.com/nodejs/node-addon-api/commit/3615041423)] - **src**: return Maybe on pending exception when cpp exception disabled (legendecas) [#927](https://github.com/nodejs/node-addon-api/pull/927)
108
+ * [[`10564a43c6`](https://github.com/nodejs/node-addon-api/commit/10564a43c6)] - **src**: add AddCleanupHook (Kevin Eady) [#1014](https://github.com/nodejs/node-addon-api/pull/1014)
109
+ * [[`a459f5cc8f`](https://github.com/nodejs/node-addon-api/commit/a459f5cc8f)] - **doc**: update tests to avoid running in parallel (Michael Dawson) [#1024](https://github.com/nodejs/node-addon-api/pull/1024)
110
+ * [[`6697c51d1d`](https://github.com/nodejs/node-addon-api/commit/6697c51d1d)] - **src,test**: fix up null char \* exception thrown (Gabriel Schulhof) [#1019](https://github.com/nodejs/node-addon-api/pull/1019)
111
+ * [[`e02e8a4ce3`](https://github.com/nodejs/node-addon-api/commit/e02e8a4ce3)] - **test**: add first set of symbol tests (JckXia) [#972](https://github.com/nodejs/node-addon-api/pull/972)
112
+ * [[`da50b51398`](https://github.com/nodejs/node-addon-api/commit/da50b51398)] - **test**: dd check for nullptr inside String init (JckXia) [#1015](https://github.com/nodejs/node-addon-api/pull/1015)
113
+ * [[`627dbf3c37`](https://github.com/nodejs/node-addon-api/commit/627dbf3c37)] - **doc**: update examples for context sensitivity (Kevin Eady) [#1013](https://github.com/nodejs/node-addon-api/pull/1013)
114
+ * [[`37a9b8e753`](https://github.com/nodejs/node-addon-api/commit/37a9b8e753)] - **src**: set default return value of Reference Ref/Unref to 0 (legendecas) [#1004](https://github.com/nodejs/node-addon-api/pull/1004)
115
+
116
+ ## 2021-06-15 Version 4.0.0, @NickNaso
117
+
118
+ ### Notable changes:
119
+
120
+ #### API
121
+
122
+ - Fixed a crashing issue in `Napi::Error::ThrowAsJavaScriptException`
123
+ introducing the preprocessor directive `NODE_API_SWALLOW_UNTHROWABLE_EXCEPTIONS`.
124
+ - Fixed compilation problem for GCC 11 and C++20.
125
+
126
+ #### TEST
127
+
128
+ - Added test for function reference call and contructor.
129
+
130
+ ### Documentation
131
+
132
+ - Updated the oldest Node.js version supported from `10.x` to `12.x`.
133
+
134
+ ### Commits
135
+
136
+ * [[`028107f686`](https://github.com/nodejs/node-addon-api/commit/028107f686)] - **src**: fix Error::ThrowAsJavaScriptException crash (rudolftam) [#975](https://github.com/nodejs/node-addon-api/pull/975)
137
+ * [[`fed13534c5`](https://github.com/nodejs/node-addon-api/commit/fed13534c5)] - **src**: fix gcc-11 c++20 compilation (Kevin Eady) [#1009](https://github.com/nodejs/node-addon-api/pull/1009)
138
+ * [[`b75afc4d29`](https://github.com/nodejs/node-addon-api/commit/b75afc4d29)] - **test**: function reference call & construct (legendecas) [#1005](https://github.com/nodejs/node-addon-api/pull/1005)
139
+
140
+ ## 2021-05-28 Version 3.2.1, @NickNaso
141
+
142
+ ### Notable changes:
143
+
144
+ #### Documentation
145
+
146
+ - Fixed documentation about the oldest Node.js version supported.
147
+
148
+ ### Commits
149
+
150
+ * [[`6d41ee5a3a`](https://github.com/nodejs/node-addon-api/commit/6d41ee5a3a)] - Fixed readme for new release. (NickNaso)
151
+
152
+ ## 2021-05-17 Version 3.2.0, @NickNaso
153
+
154
+ ### Notable changes:
155
+
156
+ #### API
157
+
158
+ - Remove unnecessary symbol exposure.
159
+ - Fixed leak in `Napi::ObjectWrap` instance for getter and setter method.
160
+ - Added `Napi::Object::Freeze` and `Napi::object::Seal` methods.
161
+ - `Napi::Reference` is now copyable.
162
+
163
+ #### Documentation
164
+
165
+ - Added docuemtnation for `Napi::Object::PropertyLValue`.
166
+ - Changed all N-API references to Node-API.
167
+ - Some minor corrections all over the documentation.
168
+
169
+ #### TEST
170
+
171
+ - Added tests relating to fetch property from Global Object.
172
+ - Added addtiona tests for `Napi::Object`.
173
+ - Added test for `Napi::Function` contructors.
174
+ - Fixed intermittent failure for `Napi::ThreadSafeFunction` test.
175
+ - Some minor corrections all over the test suite.
176
+
177
+ ### TOOL
178
+
179
+ - Added Node.js v16.x to CI.
180
+ - Added CI configuration for Windows.
181
+ - Some fixex on linter command.
182
+
183
+ ### Commits
184
+
185
+ * [[`52721312f6`](https://github.com/nodejs/node-addon-api/commit/52721312f6)] - **docs**: add napi-rs iin Other Bindings section (#999) (LongYinan)
186
+ * [[`78a6570a42`](https://github.com/nodejs/node-addon-api/commit/78a6570a42)] - **doc**: fix typo in code example (#997) (Tobias Nießen)
187
+ * [[`da3bd5778f`](https://github.com/nodejs/node-addon-api/commit/da3bd5778f)] - **test**: fix undoc assumptions about the timing of tsfn calls (legendecas) [#995](https://github.com/nodejs/node-addon-api/pull/995)
188
+ * [[`410cf6a81e`](https://github.com/nodejs/node-addon-api/commit/410cf6a81e)] - **src**: return bool on object freeze and seal (#991) (legendecas)
189
+ * [[`93f1898312`](https://github.com/nodejs/node-addon-api/commit/93f1898312)] - **src**: return bool on object set and define property (#977) (legendecas)
190
+ * [[`331c2ee274`](https://github.com/nodejs/node-addon-api/commit/331c2ee274)] - **build**: add Node.js v16.x to CI (#983) (legendecas)
191
+ * [[`b6f5eb15e6`](https://github.com/nodejs/node-addon-api/commit/b6f5eb15e6)] - **test**: run test suites with helpers (legendecas) [#976](https://github.com/nodejs/node-addon-api/pull/976)
192
+ * [[`fbcdf00ea0`](https://github.com/nodejs/node-addon-api/commit/fbcdf00ea0)] - **test**: rename misspelled parameters (Tobias Nießen) [#973](https://github.com/nodejs/node-addon-api/pull/973)
193
+ * [[`63a6c32e80`](https://github.com/nodejs/node-addon-api/commit/63a6c32e80)] - **test**: fix intermittent TSFN crashes (Kevin Eady) [#974](https://github.com/nodejs/node-addon-api/pull/974)
194
+ * [[`8f120b033f`](https://github.com/nodejs/node-addon-api/commit/8f120b033f)] - **fix**: key for wapping drawing's system condition (#970) (Kévin VOYER)
195
+ * [[`1c9d528d66`](https://github.com/nodejs/node-addon-api/commit/1c9d528d66)] - **doc**: correct struct definition (#969) (Darshan Sen)
196
+ * [[`5e64d1fa61`](https://github.com/nodejs/node-addon-api/commit/5e64d1fa61)] - Added badges for Node-API v7 and v8. (#954) (Nicola Del Gobbo)
197
+ * [[`6ce629b3fa`](https://github.com/nodejs/node-addon-api/commit/6ce629b3fa)] - **src**: add pull request template (#967) (Michael Dawson)
198
+ * [[`98126661af`](https://github.com/nodejs/node-addon-api/commit/98126661af)] - Update CONTRIBUTING.md (#966) (Michael Dawson)
199
+ * [[`77350eee98`](https://github.com/nodejs/node-addon-api/commit/77350eee98)] - **src**: added Freeze and Seal method to Object class. (NickNaso) [#955](https://github.com/nodejs/node-addon-api/pull/955)
200
+ * [[`bc5147cc4a`](https://github.com/nodejs/node-addon-api/commit/bc5147cc4a)] - Finished tests relating to fetch property from Global Object (JckXia)
201
+ * [[`0127813111`](https://github.com/nodejs/node-addon-api/commit/0127813111)] - **doc**: unambiguously mark deprecated signatures (Tobias Nießen) [#942](https://github.com/nodejs/node-addon-api/pull/942)
202
+ * [[`787e216105`](https://github.com/nodejs/node-addon-api/commit/787e216105)] - **doc**: rename N-API with Node-API (Darshan Sen) [#951](https://github.com/nodejs/node-addon-api/pull/951)
203
+ * [[`628023689a`](https://github.com/nodejs/node-addon-api/commit/628023689a)] - **src**: rename N-API with Node-API on comments (NickNaso) [#953](https://github.com/nodejs/node-addon-api/pull/953)
204
+ * [[`5c6391578f`](https://github.com/nodejs/node-addon-api/commit/5c6391578f)] - **build**: add CI configuration for Windows (NickNaso) [#948](https://github.com/nodejs/node-addon-api/pull/948)
205
+ * [[`8ef07251ec`](https://github.com/nodejs/node-addon-api/commit/8ef07251ec)] - **doc**: added some warnings for buffer and array buffer factory method. (#929) (Nicola Del Gobbo)
206
+ * [[`6490b1f730`](https://github.com/nodejs/node-addon-api/commit/6490b1f730)] - **doc**: sync Object::Set value arg with Value::From (#933) (Tobias Nießen)
207
+ * [[`7319a0d7a2`](https://github.com/nodejs/node-addon-api/commit/7319a0d7a2)] - Fix tab indent (#938) (Tobias Nießen)
208
+ * [[`1916cb937e`](https://github.com/nodejs/node-addon-api/commit/1916cb937e)] - **chore**: fixup linter commands (#940) (legendecas)
209
+ * [[`fc4585fa23`](https://github.com/nodejs/node-addon-api/commit/fc4585fa23)] - **test**: dd tests for Function constructors (JoseExposito) [#937](https://github.com/nodejs/node-addon-api/pull/937)
210
+ * [[`87b7aae469`](https://github.com/nodejs/node-addon-api/commit/87b7aae469)] - **doc**: warn about SuppressDestruct() (#926) (Anna Henningsen)
211
+ * [[`71494a49a3`](https://github.com/nodejs/node-addon-api/commit/71494a49a3)] - **src,doc**: refactor to replace typedefs with usings (Darshan Sen) [#910](https://github.com/nodejs/node-addon-api/pull/910)
212
+ * [[`298ff8d9d2`](https://github.com/nodejs/node-addon-api/commit/298ff8d9d2)] - **test**: add additional tests for Object (JoseExposito) [#923](https://github.com/nodejs/node-addon-api/pull/923)
213
+ * [[`8a1147b430`](https://github.com/nodejs/node-addon-api/commit/8a1147b430)] - **revert**: src: add additional tests for Function (Michael Dawson)
214
+ * [[`bb56ffaa6f`](https://github.com/nodejs/node-addon-api/commit/bb56ffaa6f)] - **doc**: fix documentation for object api (Nicola Del Gobbo) [#931](https://github.com/nodejs/node-addon-api/pull/931)
215
+ * [[`3b8bddab49`](https://github.com/nodejs/node-addon-api/commit/3b8bddab49)] - **src**: add additional tests for Function (José Expósito) [#928](https://github.com/nodejs/node-addon-api/pull/928)
216
+ * [[`74ab50c775`](https://github.com/nodejs/node-addon-api/commit/74ab50c775)] - **src**: allow references to be copyable in APIs (legendecas) [#915](https://github.com/nodejs/node-addon-api/pull/915)
217
+ * [[`929709d0fe`](https://github.com/nodejs/node-addon-api/commit/929709d0fe)] - **doc**: add propertylvalue.md (#925) (Gabriel Schulhof)
218
+ * [[`69d0d98be4`](https://github.com/nodejs/node-addon-api/commit/69d0d98be4)] - fixup (Anna Henningsen)
219
+ * [[`46e41d961b`](https://github.com/nodejs/node-addon-api/commit/46e41d961b)] - fixup (Anna Henningsen)
220
+ * [[`1af1642fb7`](https://github.com/nodejs/node-addon-api/commit/1af1642fb7)] - **doc**: warn about SuppressDestruct() (Anna Henningsen)
221
+ * [[`12c548b2ff`](https://github.com/nodejs/node-addon-api/commit/12c548b2ff)] - **tools**: fix error detection (#914) (Darshan Sen)
222
+ * [[`458d895d5b`](https://github.com/nodejs/node-addon-api/commit/458d895d5b)] - **packaging**: list files to be published to npm (Lovell Fuller) [#889](https://github.com/nodejs/node-addon-api/pull/889)
223
+ * [[`f7ed2490d4`](https://github.com/nodejs/node-addon-api/commit/f7ed2490d4)] - **test**: remove outdated V8 flag (Darshan Sen) [#895](https://github.com/nodejs/node-addon-api/pull/895)
224
+ * [[`a575a6ec60`](https://github.com/nodejs/node-addon-api/commit/a575a6ec60)] - **src**: fix leak in ObjectWrap instance set/getters (Kevin Eady) [#899](https://github.com/nodejs/node-addon-api/pull/899)
225
+ * [[`b6e844e0b0`](https://github.com/nodejs/node-addon-api/commit/b6e844e0b0)] - **doc**: fix spelling of "targeted" and "targeting" (#904) (Tobias Nießen)
226
+ * [[`4d856f6e91`](https://github.com/nodejs/node-addon-api/commit/4d856f6e91)] - **src**: remove unnecessary symbol exposure (Gabriel Schulhof) [#896](https://github.com/nodejs/node-addon-api/pull/896)
227
+ * [[`f35bb7d0d7`](https://github.com/nodejs/node-addon-api/commit/f35bb7d0d7)] - **doc**: Update GitHub URL references from 'master' to 'HEAD' (#898) (Jim Schlight)
228
+ * [[`286ae215d1`](https://github.com/nodejs/node-addon-api/commit/286ae215d1)] - Add warning about branch rename (Michael Dawson)
229
+ * [[`a4a7b28288`](https://github.com/nodejs/node-addon-api/commit/a4a7b28288)] - Update branch references from master to main (#886) (Jim Schlight)
230
+ * [[`a2ad0a107a`](https://github.com/nodejs/node-addon-api/commit/a2ad0a107a)] - **docs**: add NAN to N-API resource link (#880) (kidneysolo)
231
+ * [[`1c040eeb63`](https://github.com/nodejs/node-addon-api/commit/1c040eeb63)] - **test**: load testModules automatically (raisinten) [#876](https://github.com/nodejs/node-addon-api/pull/876)
232
+ * [[`bf478e4496`](https://github.com/nodejs/node-addon-api/commit/bf478e4496)] - **src**: use NAPI\_NOEXCEPT macro instead of noexcept (NickNaso) [#864](https://github.com/nodejs/node-addon-api/pull/864)
233
+ * [[`744705f2eb`](https://github.com/nodejs/node-addon-api/commit/744705f2eb)] - **test**: refactor remove repeated execution index.js (raisinten) [#839](https://github.com/nodejs/node-addon-api/pull/839)
234
+ * [[`db62e3c811`](https://github.com/nodejs/node-addon-api/commit/db62e3c811)] - Update team members (Michael Dawson)
235
+
236
+ ## 2020-12-17 Version 3.1.0, @NickNaso
237
+
238
+ ### Notable changes:
239
+
240
+ #### API
241
+
242
+ - Added `Napi::TypedThreadSafeFunction` class that is a new implementation for
243
+ thread-safe functions.
244
+ - Fixed leak on `Napi::AsyncProgressWorkerBase`.
245
+ - Fixed empty data on `Napi::AsyncProgressWorker::OnProgress` caused by race
246
+ conditions of `Napi::AsyncProgressWorker`.
247
+ - Added `Napi::ArrayBuffer::Detach()` and `Napi::ArrayBuffer::IsDetached()`.
248
+ - Fixed problem on `Napi::FinalizeCallback` it needs to create a
249
+ `Napi::HandleScope` when it calls `Napi::ObjectWrap::~ObjectWrap()`.
250
+
251
+ #### Documentation
252
+
253
+ - Added documentation for `Napi::TypedThreadSafeFunction`.
254
+ - Removed unsued Doxygen file.
255
+ - Clarified when to use N-API.
256
+ - Added support information.
257
+ - Some minor corrections all over the documentation.
258
+
259
+ #### TEST
260
+
261
+ - Added test for `Napi::TypedThreadSafeFunction`.
262
+ - Fixed testing for specific N-API version.
263
+ - Some minor corrections all over the test suite.
264
+
265
+ ### TOOL
266
+
267
+ - Setup github actions for tests.
268
+ - Added stale action.
269
+ - Removed `sudo` tag from Travis CI.
270
+ - Added clang-format.
271
+ - Added pre-commit package for linting.
272
+
273
+ ### Commits
274
+
275
+ * [[`ff642c5b85`](https://github.com/nodejs/node-addon-api/commit/ff642c5b85)] - **doc**: fix tsfn docs to reflect true implementation (#860) (Kevin Eady)
276
+ * [[`86feeebf54`](https://github.com/nodejs/node-addon-api/commit/86feeebf54)] - **src**: empty data OnProgress in AsyncProgressWorker (legendecas) [#853](https://github.com/nodejs/node-addon-api/pull/853)
277
+ * [[`a7fb5fb31c`](https://github.com/nodejs/node-addon-api/commit/a7fb5fb31c)] - **action**: add stale action (#856) (Michael Dawson)
278
+ * [[`fd44609885`](https://github.com/nodejs/node-addon-api/commit/fd44609885)] - **chore**: setup github actions for tests (#854) (legendecas) [#854](https://github.com/nodejs/node-addon-api/pull/854)
279
+ * [[`c52ace4813`](https://github.com/nodejs/node-addon-api/commit/c52ace4813)] - **script**: fix complains that js files are not supported on npm run lint:fix (#852) (legendecas)
280
+ * [[`b4a3364ad5`](https://github.com/nodejs/node-addon-api/commit/b4a3364ad5)] - **doc**: remove unused Doxygen file (#851) (Michael Dawson)
281
+ * [[`b810466ae2`](https://github.com/nodejs/node-addon-api/commit/b810466ae2)] - **doc**: clarify when to use N-API (#849) (Michael Dawson)
282
+ * [[`528b9f6832`](https://github.com/nodejs/node-addon-api/commit/528b9f6832)] - **test**: remove sudo from travis (#850) (Michael Dawson)
283
+ * [[`4bb680de4e`](https://github.com/nodejs/node-addon-api/commit/4bb680de4e)] - Remove misleading sentence (#847) (Nikolai Vavilov) [#847](https://github.com/nodejs/node-addon-api/pull/847)
284
+ * [[`48e6b584a3`](https://github.com/nodejs/node-addon-api/commit/48e6b584a3)] - Merge pull request #742 from KevinEady/contexted-tsfn-api-gcc-4 (Gabriel Schulhof)
285
+ * [[`d5e37210cc`](https://github.com/nodejs/node-addon-api/commit/d5e37210cc)] - **tools**: print more instructions on clang-format check failed (#846) (legendecas) [#846](https://github.com/nodejs/node-addon-api/pull/846)
286
+ * [[`d9e11ff2c9`](https://github.com/nodejs/node-addon-api/commit/d9e11ff2c9)] - **doc**: add support info (#843) (Michael Dawson) [#843](https://github.com/nodejs/node-addon-api/pull/843)
287
+ * [[`356e93d69a`](https://github.com/nodejs/node-addon-api/commit/356e93d69a)] - **test**: fixup testing for specific N-API version (#840) (Michael Dawson) [#840](https://github.com/nodejs/node-addon-api/pull/840)
288
+ * [[`5e5b9ce1b7`](https://github.com/nodejs/node-addon-api/commit/5e5b9ce1b7)] - Apply formatting changes (Kevin Eady)
289
+ * [[`559ad8c0c0`](https://github.com/nodejs/node-addon-api/commit/559ad8c0c0)] - Merge remote-tracking branch 'upstream/master' into contexted-tsfn-api-gcc-4 (Kevin Eady)
290
+ * [[`c24c455ced`](https://github.com/nodejs/node-addon-api/commit/c24c455ced)] - Rename to TypedThreadSafeFunction (Kevin Eady)
291
+ * [[`63b43f4125`](https://github.com/nodejs/node-addon-api/commit/63b43f4125)] - **test**: fix buildType bug objectwrap\_worker\_thread (raisinten) [#837](https://github.com/nodejs/node-addon-api/pull/837)
292
+ * [[`6321f2ba1a`](https://github.com/nodejs/node-addon-api/commit/6321f2ba1a)] - **test**: fix typos in addon\_build/index.js (raisinten) [#838](https://github.com/nodejs/node-addon-api/pull/838)
293
+ * [[`59c6a6aeb0`](https://github.com/nodejs/node-addon-api/commit/59c6a6aeb0)] - **fix**: git-clang-format doesn't recognize no changes requested on given files (#835) (legendecas)
294
+ * [[`1427b3ef78`](https://github.com/nodejs/node-addon-api/commit/1427b3ef78)] - **src**: create a HandleScope in FinalizeCallback (blagoev) [#832](https://github.com/nodejs/node-addon-api/pull/832)
295
+ * [[`8fb5820557`](https://github.com/nodejs/node-addon-api/commit/8fb5820557)] - **build**: add incremental clang-format checks (legendecas) [#819](https://github.com/nodejs/node-addon-api/pull/819)
296
+ * [[`2c02d317e5`](https://github.com/nodejs/node-addon-api/commit/2c02d317e5)] - **build**: add pre-commit package for linting (#823) (Kevin Eady)
297
+ * [[`1b52c28eb8`](https://github.com/nodejs/node-addon-api/commit/1b52c28eb8)] - Clean up AsyncProgressWorker documentation (#831) (mastergberry)
298
+ * [[`4abe7cfe30`](https://github.com/nodejs/node-addon-api/commit/4abe7cfe30)] - **test**: rename tsfnex test files (Kevin Eady)
299
+ * [[`c9563caa25`](https://github.com/nodejs/node-addon-api/commit/c9563caa25)] - **src**: add ArrayBuffer::Detach() and ::IsDetached() (Tobias Nießen) [#659](https://github.com/nodejs/node-addon-api/pull/659)
300
+ * [[`c79cabaed2`](https://github.com/nodejs/node-addon-api/commit/c79cabaed2)] - **doc**: avoid directing users to HTTP (#828) (Tobias Nießen)
301
+ * [[`7a13f861ab`](https://github.com/nodejs/node-addon-api/commit/7a13f861ab)] - **doc**: fix additional typo (Kevin Eady)
302
+ * [[`7ec9741dd2`](https://github.com/nodejs/node-addon-api/commit/7ec9741dd2)] - Merge remote-tracking branch 'upstream/master' into contexted-tsfn-api-gcc-4 (Kevin Eady)
303
+ * [[`f5fad239fa`](https://github.com/nodejs/node-addon-api/commit/f5fad239fa)] - Update object\_reference.md (#827) (kidneysolo)
304
+ * [[`35b65712c2`](https://github.com/nodejs/node-addon-api/commit/35b65712c2)] - **Fix**: some typos in documentation (#826) (Helio Frota)
305
+ * [[`8983383000`](https://github.com/nodejs/node-addon-api/commit/8983383000)] - **Fix**: some typos in the document (#825) (Ziqiu Zhao)
306
+ * [[`826e466ef6`](https://github.com/nodejs/node-addon-api/commit/826e466ef6)] - Fixed example in addon.md. (#820) (nempoBu4) [#820](https://github.com/nodejs/node-addon-api/pull/820)
307
+ * [[`b54f5eb788`](https://github.com/nodejs/node-addon-api/commit/b54f5eb788)] - Additional changes from review (Kevin Eady)
308
+ * [[`59f27dac9a`](https://github.com/nodejs/node-addon-api/commit/59f27dac9a)] - Fix common.gypi (Kevin Eady)
309
+ * [[`151a914c99`](https://github.com/nodejs/node-addon-api/commit/151a914c99)] - Apply documentation suggestions from code review (Kevin Eady)
310
+ * [[`ceb27d4949`](https://github.com/nodejs/node-addon-api/commit/ceb27d4949)] - **src**: fix leak in AsyncProgressWorkerBase\<DataType\> (Ferdinand Holzer) [#795](https://github.com/nodejs/node-addon-api/pull/795)
311
+
312
+ ## 2020-09-18 Version 3.0.2, @NickNaso
313
+
314
+ ### Notable changes:
315
+
316
+ #### API
317
+
318
+ - Introduced `include_dir` for use with **gyp** in a scalar context.
319
+ - Added `Napi::Addon` to help handle the loading of a native add-on into
320
+ multiple threads and or multiple times in the same thread.
321
+ - Concentrate callbacks provided to core N-API.
322
+ - Make sure wrapcallback is used.
323
+
324
+ #### Documentation
325
+
326
+ - Added documentation for `Napi::Addon`.
327
+ - Added documentation that reports the full class hierarchy.
328
+ - Added link to N-API tutorial website.
329
+ - Some minor corrections all over the documentation.
330
+
331
+ #### TEST
332
+
333
+ - Added tests to check the build process.
334
+ - Refactored test for threasfafe function using async/await.
335
+ - Converted tests that gc into async functions that await 10 ticks after
336
+ each gc.
337
+ - Some minor corrections all over the test suite.
338
+
339
+ ### Commits
340
+
341
+ * [[`51e25f7c39`](https://github.com/nodejs/node-addon-api/commit/51e25f7c39)] - **doc**: remove a file (#815) (Gabriel Schulhof)
342
+ * [[`8c9f1809a2`](https://github.com/nodejs/node-addon-api/commit/8c9f1809a2)] - **doc**: add inheritance links and other changes (Gabriel Schulhof) [#798](https://github.com/nodejs/node-addon-api/pull/798)
343
+ * [[`6562e6b0ab`](https://github.com/nodejs/node-addon-api/commit/6562e6b0ab)] - **test**: added tests to check the build process (NickNaso) [#808](https://github.com/nodejs/node-addon-api/pull/808)
344
+ * [[`a13b36c96e`](https://github.com/nodejs/node-addon-api/commit/a13b36c96e)] - **test**: fix the threasfafe function test (NickNaso) [#807](https://github.com/nodejs/node-addon-api/pull/807)
345
+ * [[`f27623ff61`](https://github.com/nodejs/node-addon-api/commit/f27623ff61)] - **build**: introduce include\_dir (Lovell Fuller) [#766](https://github.com/nodejs/node-addon-api/pull/766)
346
+ * [[`9aceea71fc`](https://github.com/nodejs/node-addon-api/commit/9aceea71fc)] - **src**: concentrate callbacks provided to core N-API (Gabriel Schulhof) [#786](https://github.com/nodejs/node-addon-api/pull/786)
347
+ * [[`2bc45bbffd`](https://github.com/nodejs/node-addon-api/commit/2bc45bbffd)] - **test**: refactor test to use async/await (Velmisov) [#787](https://github.com/nodejs/node-addon-api/pull/787)
348
+ * [[`518cfdcdc1`](https://github.com/nodejs/node-addon-api/commit/518cfdcdc1)] - **test**: test ObjectWrap destructor - no HandleScope (David Halls) [#729](https://github.com/nodejs/node-addon-api/pull/729)
349
+ * [[`c2cbbd9191`](https://github.com/nodejs/node-addon-api/commit/c2cbbd9191)] - **doc**: add link to n-api tutorial website (#794) (Jim Schlight) [#794](https://github.com/nodejs/node-addon-api/pull/794)
350
+ * [[`1c2a8d59b5`](https://github.com/nodejs/node-addon-api/commit/1c2a8d59b5)] - **doc**: Added required return to example (#793) (pacop) [#793](https://github.com/nodejs/node-addon-api/pull/793)
351
+ * [[`cec2c76941`](https://github.com/nodejs/node-addon-api/commit/cec2c76941)] - **src**: wrap finalizer callback (Gabriel Schulhof) [#762](https://github.com/nodejs/node-addon-api/pull/762)
352
+ * [[`4ce40d22a6`](https://github.com/nodejs/node-addon-api/commit/4ce40d22a6)] - **test**: use assert.strictEqual() (Koki Nishihara) [#777](https://github.com/nodejs/node-addon-api/pull/777)
353
+ * [[`461e3640c6`](https://github.com/nodejs/node-addon-api/commit/461e3640c6)] - **test**: string tests together (Gabriel Schulhof) [#773](https://github.com/nodejs/node-addon-api/pull/773)
354
+ * [[`5af645f649`](https://github.com/nodejs/node-addon-api/commit/5af645f649)] - **src**: add Addon\<T\> class (Gabriel Schulhof) [#749](https://github.com/nodejs/node-addon-api/pull/749)
355
+ * [[`6148fb4bcc`](https://github.com/nodejs/node-addon-api/commit/6148fb4bcc)] - Synchronise Node.js versions in Appveyor Windows CI with Travis (#768) (Lovell Fuller)
356
+
357
+ ## 2020-07-13 Version 3.0.1, @NickNaso
358
+
359
+ ### Notable changes:
360
+
361
+ #### API
362
+
363
+ - Fixed the usage of `Napi::Reference` with `Napi::TypedArray`.
364
+ - Fixed `Napi::ObjectWrap` inheritance.
365
+
366
+ #### Documentation
367
+
368
+ - Updated the example for `Napi::ObjectWrap`.
369
+ - Added documentation for instance data APIs.
370
+ - Some minor corrections all over the documentation.
371
+
372
+ #### TEST
373
+
374
+ - Fixed test for `Napi::ArrayBuffer` and `Napi::Buffer`.
375
+ - Some minor corrections all over the test suite.
376
+
377
+ ### Commits
378
+
379
+ * [[`40c7926342`](https://github.com/nodejs/node-addon-api/commit/40c7926342)] - **build**: ensure paths with spaces can be used (Lovell Fuller) [#757](https://github.com/nodejs/node-addon-api/pull/757)
380
+ * [[`ef16dfb4a2`](https://github.com/nodejs/node-addon-api/commit/ef16dfb4a2)] - **doc**: update ObjectWrap example (Gabriel Schulhof) [#754](https://github.com/nodejs/node-addon-api/pull/754)
381
+ * [[`48f6762bf6`](https://github.com/nodejs/node-addon-api/commit/48f6762bf6)] - **src**: add \_\_wasm32\_\_ guards (Gus Caplan)
382
+ * [[`bd2c5ec502`](https://github.com/nodejs/node-addon-api/commit/bd2c5ec502)] - Fixes issue 745. (#748) (Nicola Del Gobbo)
383
+ * [[`4c01af2d87`](https://github.com/nodejs/node-addon-api/commit/4c01af2d87)] - Fix typo in CHANGELOG (#715) (Kasumi Hanazuki)
384
+ * [[`36e1af96d5`](https://github.com/nodejs/node-addon-api/commit/36e1af96d5)] - **src**: fix use of Reference with typed arrays (Michael Dawson) [#726](https://github.com/nodejs/node-addon-api/pull/726)
385
+ * [[`d463f02bc7`](https://github.com/nodejs/node-addon-api/commit/d463f02bc7)] - **src**: fix testEnumerables on ObjectWrap (Ferdinand Holzer) [#736](https://github.com/nodejs/node-addon-api/pull/736)
386
+ * [[`ba7ad37d44`](https://github.com/nodejs/node-addon-api/commit/ba7ad37d44)] - **src**: fix ObjectWrap inheritance (David Halls) [#732](https://github.com/nodejs/node-addon-api/pull/732)
387
+ * [[`31504c862b`](https://github.com/nodejs/node-addon-api/commit/31504c862b)] - **doc**: fix minor typo in object\_wrap.md (#741) (Daniel Bevenius) [#741](https://github.com/nodejs/node-addon-api/pull/741)
388
+ * [[`beccf2145d`](https://github.com/nodejs/node-addon-api/commit/beccf2145d)] - **test**: fix up delays for array buffer test (Michael Dawson) [#737](https://github.com/nodejs/node-addon-api/pull/737)
389
+ * [[`45cb1d9748`](https://github.com/nodejs/node-addon-api/commit/45cb1d9748)] - Correct AsyncProgressWorker link in README (#716) (Jeroen Janssen)
390
+ * [[`381c0da60c`](https://github.com/nodejs/node-addon-api/commit/381c0da60c)] - **doc**: add instance data APIs (Gabriel Schulhof) [#708](https://github.com/nodejs/node-addon-api/pull/708)
391
+
392
+ ## 2020-04-30 Version 3.0.0, @NickNaso
393
+
394
+ ### Notable changes:
395
+
396
+ #### API
397
+
398
+ - `Napi::Object` added templated property descriptors.
399
+ - `Napi::ObjectWrap` added templated methods.
400
+ - `Napi::ObjectWrap` the wrap is removed only on failure.
401
+ - `Napi::ObjectWrap` the constructor's exceptions are gracefully handled.
402
+ - `Napi::Function` added templated factory functions.
403
+ - Added `Env::RunScript` method to run JavaScript code contained in a string.
404
+ - Added templated version of `Napi::Function`.
405
+ - Added benchmarking framework.
406
+ - Added support for native addon instance data.
407
+ - Added `Napi::AsyncProgressQueueWorker` api.
408
+ - Changed the guards to `NAPI_VERSION > 5`.
409
+ - Removed N-API implementation (v6.x and v8.x support).
410
+ - `Napi::AsyncWorker::OnWorkComplete` and `Napi::AsyncWorker::OnExecute` methods
411
+ are override-able.
412
+ - Removed erroneous finalizer cleanup in `Napi::ThreadSafeFunction`.
413
+ - Disabled caching in `Napi::ArrayBuffer`.
414
+ - Explicitly disallow assign and copy operator.
415
+ - Some minor corrections and improvements.
416
+
417
+ #### Documentation
418
+
419
+ - Updated documentation for `Napi::Object`.
420
+ - Updated documentation for `Napi::Function`.
421
+ - Updated documentation for `Napi::ObjectWrap`.
422
+ - Added documentation on how to add benchmark.
423
+ - Added documentation for `Napi::AsyncProgressQueueWorker`.
424
+ - Added suggestion about tags to use on NPM.
425
+ - Added reference to N-API badges.
426
+ - Some minor corrections all over the documentation.
427
+
428
+ #### TEST
429
+
430
+ - Updated test cases for `Napi::Object`.
431
+ - Updated test cases for `Napi::Function`.
432
+ - Updated test cases for `Napi::ObjectWrap`.
433
+ - Updated test cases for `Napi::Env`.
434
+ - Added test cases for `Napi::AsyncProgressQueueWorker`.
435
+ - Some minor corrections all over the test suite.
436
+
437
+ ### Commits
438
+
439
+ * [[`187318e37f`](https://github.com/nodejs/node-addon-api/commit/187318e37f)] - **doc**: Removed references to Node.js lower than 10.x. (#709) (Nicola Del Gobbo)
440
+ * [[`9c9accfbbe`](https://github.com/nodejs/node-addon-api/commit/9c9accfbbe)] - **src**: add support for addon instance data (Gabriel Schulhof) [#663](https://github.com/nodejs/node-addon-api/pull/663)
441
+ * [[`82a96502a4`](https://github.com/nodejs/node-addon-api/commit/82a96502a4)] - **src**: change guards to NAPI\_VERSION \> 5 (Gabriel Schulhof) [#697](https://github.com/nodejs/node-addon-api/pull/697)
442
+ * [[`a64e8a5641`](https://github.com/nodejs/node-addon-api/commit/a64e8a5641)] - **ci**: move travis from 13 to 14 (#707) (Gabriel Schulhof)
443
+ * [[`4de23c9d6b`](https://github.com/nodejs/node-addon-api/commit/4de23c9d6b)] - **doc**: fix support bigint64/biguint64 guards (Yulong Wang) [#705](https://github.com/nodejs/node-addon-api/pull/705)
444
+ * [[`fedc8195e3`](https://github.com/nodejs/node-addon-api/commit/fedc8195e3)] - **doc**: fix semicolon missing in async\_worker.md (Azlan Mukhtar) [#701](https://github.com/nodejs/node-addon-api/pull/701)
445
+ * [[`cdb662506c`](https://github.com/nodejs/node-addon-api/commit/cdb662506c)] - **doc**: fix typo in bigint.md (#700) (Kelvin)
446
+ * [[`e1a827ae29`](https://github.com/nodejs/node-addon-api/commit/e1a827ae29)] - **src**: fix AsyncProgressQueueWorker compilation (#696) (Gabriel Schulhof) [#696](https://github.com/nodejs/node-addon-api/pull/696)
447
+ * [[`2c3d5df463`](https://github.com/nodejs/node-addon-api/commit/2c3d5df463)] - Merge pull request #692 from kelvinhammond/patch-1 (Nicola Del Gobbo)
448
+ * [[`623e876949`](https://github.com/nodejs/node-addon-api/commit/623e876949)] - Merge pull request #688 from NickNaso/badges (Nicola Del Gobbo)
449
+ * [[`6c97913d1f`](https://github.com/nodejs/node-addon-api/commit/6c97913d1f)] - Fix minor typo in object\_lifetime\_management.md (Kelvin)
450
+ * [[`6b8dd47c55`](https://github.com/nodejs/node-addon-api/commit/6b8dd47c55)] - Added badge section to documentation. (NickNaso)
451
+ * [[`89e62a9154`](https://github.com/nodejs/node-addon-api/commit/89e62a9154)] - **doc**: recommend tags of addon helpers (legendecas) [#683](https://github.com/nodejs/node-addon-api/pull/683)
452
+ * [[`ab018444ae`](https://github.com/nodejs/node-addon-api/commit/ab018444ae)] - **src**: implement AsyncProgressQueueWorker (legendecas) [#585](https://github.com/nodejs/node-addon-api/pull/585)
453
+ * [[`d43da6ac2b`](https://github.com/nodejs/node-addon-api/commit/d43da6ac2b)] - **doc**: add @legendecas to active member list (legendecas)
454
+ * [[`cb498bbe7f`](https://github.com/nodejs/node-addon-api/commit/cb498bbe7f)] - **doc**: Add Napi::BigInt::New() overload for uint64\_t (ikokostya)
455
+ * [[`baaaa8452c`](https://github.com/nodejs/node-addon-api/commit/baaaa8452c)] - **doc**: link threadsafe function from JS function (legendecas)
456
+ * [[`7f56a78ff7`](https://github.com/nodejs/node-addon-api/commit/7f56a78ff7)] - **objectwrap**: remove wrap only on failure (Gabriel Schulhof)
457
+ * [[`4d816183da`](https://github.com/nodejs/node-addon-api/commit/4d816183da)] - **doc**: fix example code (András Timár, Dr) [#657](https://github.com/nodejs/node-addon-api/pull/657)
458
+ * [[`7ac6e21801`](https://github.com/nodejs/node-addon-api/commit/7ac6e21801)] - **gyp**: fix gypfile name in index.js (Anna Henningsen) [#658](https://github.com/nodejs/node-addon-api/pull/658)
459
+ * [[`46484202ca`](https://github.com/nodejs/node-addon-api/commit/46484202ca)] - **test**: user data in function property descriptor (Kevin Eady) [#652](https://github.com/nodejs/node-addon-api/pull/652)
460
+ * [[`0f8d730483`](https://github.com/nodejs/node-addon-api/commit/0f8d730483)] - **doc**: fix syntax error in example (András Timár, Dr) [#650](https://github.com/nodejs/node-addon-api/pull/650)
461
+ * [[`4e885069f1`](https://github.com/nodejs/node-addon-api/commit/4e885069f1)] - **src**: call `napi\_remove\_wrap()` in `ObjectWrap` dtor (Anna Henningsen) [#475](https://github.com/nodejs/node-addon-api/pull/475)
462
+ * [[`2fde5c3ca3`](https://github.com/nodejs/node-addon-api/commit/2fde5c3ca3)] - **test**: update BigInt test for recent change in core (Michael Dawson) [#649](https://github.com/nodejs/node-addon-api/pull/649)
463
+ * [[`e8935bd8d9`](https://github.com/nodejs/node-addon-api/commit/e8935bd8d9)] - **test**: add test for own properties on ObjectWrap (Guenter Sandner) [#645](https://github.com/nodejs/node-addon-api/pull/645)
464
+ * [[`23ff7f0b24`](https://github.com/nodejs/node-addon-api/commit/23ff7f0b24)] - **src**: make OnWorkComplete and OnExecute override-able (legendecas) [#589](https://github.com/nodejs/node-addon-api/pull/589)
465
+ * [[`86384f94d3`](https://github.com/nodejs/node-addon-api/commit/86384f94d3)] - **objectwrap**: gracefully handle constructor exceptions (Gabriel Schulhof)
466
+ * [[`9af69da01f`](https://github.com/nodejs/node-addon-api/commit/9af69da01f)] - remove N-API implementation, v6.x and v8.x support (Gabriel Schulhof) [#643](https://github.com/nodejs/node-addon-api/pull/643)
467
+ * [[`920d544779`](https://github.com/nodejs/node-addon-api/commit/920d544779)] - **benchmark**: add templated version of Function (Gabriel Schulhof) [#637](https://github.com/nodejs/node-addon-api/pull/637)
468
+ * [[`03759f7759`](https://github.com/nodejs/node-addon-api/commit/03759f7759)] - ignore benchmark built archives (legendecas) [#631](https://github.com/nodejs/node-addon-api/pull/631)
469
+ * [[`5eeabb0214`](https://github.com/nodejs/node-addon-api/commit/5eeabb0214)] - **tsfn**: Remove erroneous finalizer cleanup (Kevin Eady) [#636](https://github.com/nodejs/node-addon-api/pull/636)
470
+ * [[`9e0e0f31e4`](https://github.com/nodejs/node-addon-api/commit/9e0e0f31e4)] - **src**: remove unnecessary forward declarations (Gabriel Schulhof) [#633](https://github.com/nodejs/node-addon-api/pull/633)
471
+ * [[`79deefb6f3`](https://github.com/nodejs/node-addon-api/commit/79deefb6f3)] - **src**: explicitly disallow assign and copy (legendecas) [#590](https://github.com/nodejs/node-addon-api/pull/590)
472
+ * [[`af50ac281b`](https://github.com/nodejs/node-addon-api/commit/af50ac281b)] - **error**: do not replace pending exception (Gabriel Schulhof) [#629](https://github.com/nodejs/node-addon-api/pull/629)
473
+ * [[`b72f1d6978`](https://github.com/nodejs/node-addon-api/commit/b72f1d6978)] - Disable caching in ArrayBuffer (Tobias Nießen) [#611](https://github.com/nodejs/node-addon-api/pull/611)
474
+ * [[`0e7483eb7b`](https://github.com/nodejs/node-addon-api/commit/0e7483eb7b)] - Fix code format in tests (Tobias Nießen) [#617](https://github.com/nodejs/node-addon-api/pull/617)
475
+ * [[`6a0646356d`](https://github.com/nodejs/node-addon-api/commit/6a0646356d)] - add benchmarking framework (Gabriel Schulhof) [#623](https://github.com/nodejs/node-addon-api/pull/623)
476
+ * [[`ffc71edd54`](https://github.com/nodejs/node-addon-api/commit/ffc71edd54)] - Add Env::RunScript (Tobias Nießen) [#616](https://github.com/nodejs/node-addon-api/pull/616)
477
+ * [[`a1b106066e`](https://github.com/nodejs/node-addon-api/commit/a1b106066e)] - **src**: add templated function factories (Gabriel Schulhof) [#608](https://github.com/nodejs/node-addon-api/pull/608)
478
+ * [[`c584343217`](https://github.com/nodejs/node-addon-api/commit/c584343217)] - Add GetPropertyNames, HasOwnProperty, Delete (#615) (Tobias Nießen) [#615](https://github.com/nodejs/node-addon-api/pull/615)
479
+ * [[`3acc4b32f5`](https://github.com/nodejs/node-addon-api/commit/3acc4b32f5)] - Fix std::string encoding (#619) (Tobias Nießen) [#619](https://github.com/nodejs/node-addon-api/pull/619)
480
+ * [[`e71d0eadcc`](https://github.com/nodejs/node-addon-api/commit/e71d0eadcc)] - \[doc\] Fixed links to array documentation (#613) (Nicola Del Gobbo)
481
+ * [[`3dfb1f0591`](https://github.com/nodejs/node-addon-api/commit/3dfb1f0591)] - Change "WG" to "team" (Tobias Nießen)
482
+ * [[`ce91e14860`](https://github.com/nodejs/node-addon-api/commit/ce91e14860)] - **objectwrap**: add template methods (Dmitry Ashkadov) [#604](https://github.com/nodejs/node-addon-api/pull/604)
483
+ * [[`cfa71b60f7`](https://github.com/nodejs/node-addon-api/commit/cfa71b60f7)] - **object**: add templated property descriptors (Gabriel Schulhof) [#610](https://github.com/nodejs/node-addon-api/pull/610)
484
+ * [[`734725e971`](https://github.com/nodejs/node-addon-api/commit/734725e971)] - Correctly define copy assignment operators. (Rolf Timmermans)
485
+
486
+ ## 2019-11-21 Version 2.0.0, @NickNaso
487
+
488
+ ### Notable changes:
489
+
490
+ #### API
491
+
492
+ - Added `Napi::AsyncProgressWorker` api.
493
+ - Added error checking on `Napi::ThreadSafeFunction::GetContext`.
494
+ - Added copy constructor to `Napi::ThreadSafeFunction`.
495
+ - Added `Napi::ThreadSafeFunction::Ref` and `Napi::ThreadSafeFunction::Unref` to `Napi::ThreadSafeFunction`.
496
+ - Added `Napi::Object::AddFinalizer` method.
497
+ - Use `napi_add_finalizer()` to attach data when building against N-API 5.
498
+ - Added `Napi::Date` api.
499
+ - Added `Napi::ObjectWrap::Finalize` method.
500
+
501
+ #### Documentation
502
+
503
+ - Added documentation for `Napi::AsyncProgressWorker`.
504
+ - Improve `Napi::AsyncWorker` documentation.
505
+ - Added documentation for `Napi::Object::AddFinalizer` method.
506
+ - Improved documentation for `Napi::ThreadSafeFunction`.
507
+ - Improved documentation about the usage of CMake as build tool.
508
+ - Some minor corrections all over the documentation.
509
+
510
+ #### TEST
511
+
512
+ - Added test cases for `Napi::AsyncProgressWorker` api.
513
+ - Added test cases for `Napi::Date` api.
514
+ - Added test cases for new features added to `Napi::ThreadSafeFunction`.
515
+
516
+ ### Commits
517
+
518
+ * [[`c881168d49`](https://github.com/nodejs/node-addon-api/commit/c881168d49)] - **tsfn**: add error checking on GetContext (#583) (Kevin Eady) [#583](https://github.com/nodejs/node-addon-api/pull/583)
519
+ * [[`24d75dd82f`](https://github.com/nodejs/node-addon-api/commit/24d75dd82f)] - Merge pull request #588 from NickNaso/add-asyncprogress-worker-readme (Nicola Del Gobbo)
520
+ * [[`aa79e37b62`](https://github.com/nodejs/node-addon-api/commit/aa79e37b62)] - Merge pull request #587 from timrach/patch-1 (Nicola Del Gobbo)
521
+ * [[`df75e08c2b`](https://github.com/nodejs/node-addon-api/commit/df75e08c2b)] - **tsfn**: support direct calls to underlying napi\_tsfn (Kevin Eady) [#58](https://github.com/nodejs/node-addon-api/pull/58)
522
+ * [[`2298dfae58`](https://github.com/nodejs/node-addon-api/commit/2298dfae58)] - **doc**: Added AsyncProgressWorker to readme (NickNaso)
523
+ * [[`b3609d33b6`](https://github.com/nodejs/node-addon-api/commit/b3609d33b6)] - Fix return type and declaration of setter callback (Tim Rach)
524
+ * [[`295e560f55`](https://github.com/nodejs/node-addon-api/commit/295e560f55)] - **test**: improve guards for experimental features (legendecas)
525
+ * [[`2e71842f63`](https://github.com/nodejs/node-addon-api/commit/2e71842f63)] - **tsfn**: Implement copy constructor (Kevin Eady) [#546](https://github.com/nodejs/node-addon-api/pull/546)
526
+ * [[`650562cab9`](https://github.com/nodejs/node-addon-api/commit/650562cab9)] - **src**: implement AsyncProgressWorker (legendecas) [#529](https://github.com/nodejs/node-addon-api/pull/529)
527
+ * [[`bdfd14101f`](https://github.com/nodejs/node-addon-api/commit/bdfd14101f)] - **src**: attach data with napi\_add\_finalizer (Gabriel Schulhof) [#577](https://github.com/nodejs/node-addon-api/pull/577)
528
+ * [[`9e955a802b`](https://github.com/nodejs/node-addon-api/commit/9e955a802b)] - **doc**: change node.js to Node.js per guideline (#579) (Tobias Nießen) [#579](https://github.com/nodejs/node-addon-api/pull/579)
529
+ * [[`b42e21e3a9`](https://github.com/nodejs/node-addon-api/commit/b42e21e3a9)] - **build**: move node/6 to travis allowed failures and add node/13 (#573) (Gabriel Schulhof)
530
+ * [[`8d6132f609`](https://github.com/nodejs/node-addon-api/commit/8d6132f609)] - **doc**: improve AsyncWorker docs (#571) (legendecas) [#571](https://github.com/nodejs/node-addon-api/pull/571)
531
+ * [[`bc8fc23627`](https://github.com/nodejs/node-addon-api/commit/bc8fc23627)] - **test**: do not run TSFN tests on NAPI\_VERSION \< 4 (legendecas) [#576](https://github.com/nodejs/node-addon-api/pull/576)
532
+ * [[`bcc1d58fc4`](https://github.com/nodejs/node-addon-api/commit/bcc1d58fc4)] - implement Object::AddFinalizer (Gabriel Schulhof)
533
+ * [[`e9a4bcd52a`](https://github.com/nodejs/node-addon-api/commit/e9a4bcd52a)] - **doc**: updates Make.js doc to current best practices (Jim Schlight) [#558](https://github.com/nodejs/node-addon-api/pull/558)
534
+ * [[`b513d1aa7a`](https://github.com/nodejs/node-addon-api/commit/b513d1aa7a)] - **doc**: fix return type of ArrayBuffer::Data (Tobias Nießen) [#552](https://github.com/nodejs/node-addon-api/pull/552)
535
+ * [[`34c11cf0a4`](https://github.com/nodejs/node-addon-api/commit/34c11cf0a4)] - **src**: disallow copying, double close of scopes (legendecas) [#566](https://github.com/nodejs/node-addon-api/pull/566)
536
+ * [[`ce139a05e8`](https://github.com/nodejs/node-addon-api/commit/ce139a05e8)] - **src**: make failure of closing scopes fatal (legendecas) [#566](https://github.com/nodejs/node-addon-api/pull/566)
537
+ * [[`740c79823e`](https://github.com/nodejs/node-addon-api/commit/740c79823e)] - **src**: add Env() to AsyncContext (Rolf Timmermans) [#568](https://github.com/nodejs/node-addon-api/pull/568)
538
+ * [[`ea9ce1c801`](https://github.com/nodejs/node-addon-api/commit/ea9ce1c801)] - **tsfn**: add wrappers for Ref and Unref (Kevin Eady) [#561](https://github.com/nodejs/node-addon-api/pull/561)
539
+ * [[`2e1769e1a3`](https://github.com/nodejs/node-addon-api/commit/2e1769e1a3)] - **error**: remove unnecessary if condition (legendecas) [#562](https://github.com/nodejs/node-addon-api/pull/562)
540
+ * [[`828f223a87`](https://github.com/nodejs/node-addon-api/commit/828f223a87)] - **doc**: fix spelling in ObjectWrap doc (#563) (Tobias Nießen) [#563](https://github.com/nodejs/node-addon-api/pull/563)
541
+ * [[`dd9fa8a4a8`](https://github.com/nodejs/node-addon-api/commit/dd9fa8a4a8)] - **doc**: move Arunesh and Taylor to Emeritus (#540) (Michael Dawson) [#540](https://github.com/nodejs/node-addon-api/pull/540)
542
+ * [[`cf8b8415df`](https://github.com/nodejs/node-addon-api/commit/cf8b8415df)] - **doc**: add Kevin to the list of collaborators (#539) (Michael Dawson) [#539](https://github.com/nodejs/node-addon-api/pull/539)
543
+ * [[`5d6aeae7b5`](https://github.com/nodejs/node-addon-api/commit/5d6aeae7b5)] - **build**: enable travis for fast PR check (legendecas)
544
+ * [[`6192e705cd`](https://github.com/nodejs/node-addon-api/commit/6192e705cd)] - **src**: add napi\_date (Mathias Küsel) [#497](https://github.com/nodejs/node-addon-api/pull/497)
545
+ * [[`7b1ee96d52`](https://github.com/nodejs/node-addon-api/commit/7b1ee96d52)] - **doc**: update prebuild\_tools.md (Nurbol Alpysbayev) [#527](https://github.com/nodejs/node-addon-api/pull/527)
546
+ * [[`0b4f3a5b8c`](https://github.com/nodejs/node-addon-api/commit/0b4f3a5b8c)] - **tsfn**: fix crash on releasing tsfn (legendecas) [#532](https://github.com/nodejs/node-addon-api/pull/532)
547
+ * [[`c3c8814d2f`](https://github.com/nodejs/node-addon-api/commit/c3c8814d2f)] - implement virutal ObjectWrap::Finalize (Michael Price) [#515](https://github.com/nodejs/node-addon-api/pull/515)
548
+
549
+ ## 2019-07-23 Version 1.7.1, @NickNaso
550
+
551
+ ### Notable changes:
552
+
553
+ #### API
554
+
555
+ - Fixed compilation problems that happen on Node.js with N-API version less than 4.
556
+
557
+ ### Commits
558
+
559
+ * [[`c20bcbd069`](https://github.com/nodejs/node-addon-api/commit/c20bcbd069)] - Merge pull request #518 from NickNaso/master (Nicola Del Gobbo)
560
+ * [[`6720d57253`](https://github.com/nodejs/node-addon-api/commit/6720d57253)] - Create the native threadsafe\_function for test only for N-API greater than 3. (NickNaso)
561
+ * [[`37b6c185ad`](https://github.com/nodejs/node-addon-api/commit/37b6c185ad)] - Fix compilation breakage on 1.7.0 (NickNaso)
562
+
563
+ ## 2019-07-23 Version 1.7.0, @NickNaso
564
+
565
+ ### Notable changes:
566
+
567
+ #### API
568
+
569
+ - Added `Napi::ThreadSafeFunction` api.
570
+ - Added `Napi::AsyncWorker::GetResult()` method to `Napi::AsyncWorker`.
571
+ - Added `Napi::AsyncWorker::Destroy()()` method to `Napi::AsyncWorker`.
572
+ - Use full namespace on macros that create the errors.
573
+
574
+ #### Documentation
575
+
576
+ - Added documentation about contribution philosophy.
577
+ - Added documentation for `Napi::ThreadSafeFunction`.
578
+ - Some minor corrections all over the documentation.
579
+
580
+ #### TEST
581
+
582
+ - Added test case for bool operator.
583
+ - Fixed test case for `Napi::ObjectWrap`.
584
+
585
+ ### Commits
586
+
587
+ * [[`717c9ab163`](https://github.com/nodejs/node-addon-api/commit/717c9ab163)] - **AsyncWorker**: add GetResult() method (Kevin Eady) [#512](https://github.com/nodejs/node-addon-api/pull/512)
588
+ * [[`d9d991bbc9`](https://github.com/nodejs/node-addon-api/commit/d9d991bbc9)] - **doc**: add ThreadSafeFunction to main README (#513) (Kevin Eady) [#513](https://github.com/nodejs/node-addon-api/pull/513)
589
+ * [[`ac6000d0fd`](https://github.com/nodejs/node-addon-api/commit/ac6000d0fd)] - **doc**: fix minor typo (Yohei Kishimoto) [#510](https://github.com/nodejs/node-addon-api/pull/510)
590
+ * [[`e9fa1eaa86`](https://github.com/nodejs/node-addon-api/commit/e9fa1eaa86)] - **doc**: document ThreadSafeFunction (#494) (Kevin Eady) [#494](https://github.com/nodejs/node-addon-api/pull/494)
591
+ * [[`cab3b1e2a2`](https://github.com/nodejs/node-addon-api/commit/cab3b1e2a2)] - **doc**: ClassPropertyDescriptor example (Ross Weir) [#507](https://github.com/nodejs/node-addon-api/pull/507)
592
+ * [[`c32d7dbdcf`](https://github.com/nodejs/node-addon-api/commit/c32d7dbdcf)] - **macros**: create errors fully namespaced (Gabriel Schulhof) [#506](https://github.com/nodejs/node-addon-api/pull/506)
593
+ * [[`0a90df2fcb`](https://github.com/nodejs/node-addon-api/commit/0a90df2fcb)] - Implement ThreadSafeFunction class (Jinho Bang)
594
+ * [[`1fb540eeb5`](https://github.com/nodejs/node-addon-api/commit/1fb540eeb5)] - Use curly brackets to include node\_api.h (NickNaso) [#493](https://github.com/nodejs/node-addon-api/pull/493)
595
+ * [[`b2b08122ea`](https://github.com/nodejs/node-addon-api/commit/b2b08122ea)] - **AsyncWorker**: make callback optional (Kevin Eady) [#489](https://github.com/nodejs/node-addon-api/pull/489)
596
+ * [[`a0cac77c82`](https://github.com/nodejs/node-addon-api/commit/a0cac77c82)] - Added test for bool operator (NickNaso) [#490](https://github.com/nodejs/node-addon-api/pull/490)
597
+ * [[`ab7d8fcc48`](https://github.com/nodejs/node-addon-api/commit/ab7d8fcc48)] - **src**: fix objectwrap test case (Michael Dawson) [#495](https://github.com/nodejs/node-addon-api/pull/495)
598
+ * [[`3b6b9eb88a`](https://github.com/nodejs/node-addon-api/commit/3b6b9eb88a)] - **AsyncWorker**: introduce Destroy() method (Gabriel Schulhof) [#488](https://github.com/nodejs/node-addon-api/pull/488)
599
+ * [[`f633fbd95d`](https://github.com/nodejs/node-addon-api/commit/f633fbd95d)] - string.md: Document existing New(env, value, length) APIs (Tux3) [#486](https://github.com/nodejs/node-addon-api/pull/486)
600
+ * [[`aaea55eda9`](https://github.com/nodejs/node-addon-api/commit/aaea55eda9)] - Little fix on code example (Nicola Del Gobbo) [#470](https://github.com/nodejs/node-addon-api/pull/470)
601
+ * [[`e1cf9a35a1`](https://github.com/nodejs/node-addon-api/commit/e1cf9a35a1)] - Use `Value::IsEmpty` to check for empty value (NickNaso) [#478](https://github.com/nodejs/node-addon-api/pull/478)
602
+ * [[`3ad5dfc7d9`](https://github.com/nodejs/node-addon-api/commit/3ad5dfc7d9)] - Fix link (Alba Mendez) [#481](https://github.com/nodejs/node-addon-api/pull/481)
603
+ * [[`a3b4d99c45`](https://github.com/nodejs/node-addon-api/commit/a3b4d99c45)] - **doc**: Add contribution philosophy doc (Hitesh Kanwathirtha)
604
+ * [[`36863f087b`](https://github.com/nodejs/node-addon-api/commit/36863f087b)] - **doc**: refer to TypedArray and ArrayBuffer from Array (Gabriel "_|Nix|_" Schulhof) [#465](https://github.com/nodejs/node-addon-api/pull/465)
605
+
606
+ ## 2019-04-03 Version 1.6.3, @NickNaso
607
+
608
+ ### Notable changes:
609
+
610
+ #### API
611
+
612
+ - Added `SuppressDestruct` method to `Napi::AsyncWorker`.
613
+ - Added new build targets for debug.
614
+ - Exposed macros that throw errors.
615
+ - Fixed memory leaks caused by callback data when a napi error occurs.
616
+ - Fixed missing `void *data` usage in `Napi::PropertyDescriptors`.
617
+
618
+ #### Documentation
619
+
620
+ - Some minor corrections all over the documentation.
621
+
622
+ ### Commits
623
+
624
+ * [[`83b41c2fe4`](https://github.com/nodejs/node-addon-api/commit/83b41c2fe4)] - Document adding -fvisibility=hidden flag for macOS users (Nicola Del Gobbo) [#460](https://github.com/nodejs/node-addon-api/pull/460)
625
+ * [[`1ed7ad8769`](https://github.com/nodejs/node-addon-api/commit/1ed7ad8769)] - **doc**: correct return type of Int32Value to int32\_t (Bill Gallafent) [#459](https://github.com/nodejs/node-addon-api/pull/459)
626
+ * [[`b0f6b601aa`](https://github.com/nodejs/node-addon-api/commit/b0f6b601aa)] - **src**: add AsyncWorker destruction suppression (Gabriel Schulhof) [#407](https://github.com/nodejs/node-addon-api/pull/407)
627
+ * [[`72b1975cff`](https://github.com/nodejs/node-addon-api/commit/72b1975cff)] - **doc**: fix links to the Property Descriptor docs (Ryuichi Okumura) [#458](https://github.com/nodejs/node-addon-api/pull/458)
628
+ * [[`fcfc612728`](https://github.com/nodejs/node-addon-api/commit/fcfc612728)] - **build**: new build targets for debug purposes (Jinho Bang) [#186](https://github.com/nodejs/node-addon-api/pull/186)
629
+ * [[`c629553cd7`](https://github.com/nodejs/node-addon-api/commit/c629553cd7)] - **doc**: minor doc corrections and clarifications (Bruce A. MacNaughton) [#426](https://github.com/nodejs/node-addon-api/pull/426)
630
+ * [[`7b87e0b999`](https://github.com/nodejs/node-addon-api/commit/7b87e0b999)] - **doc**: update number.md (Bernardo Heynemann) [#436](https://github.com/nodejs/node-addon-api/pull/436)
631
+ * [[`fcf173d2a1`](https://github.com/nodejs/node-addon-api/commit/fcf173d2a1)] - **src**: expose macros that throw errors (Gabriel Schulhof) [#448](https://github.com/nodejs/node-addon-api/pull/448)
632
+ * [[`b409a2f987`](https://github.com/nodejs/node-addon-api/commit/b409a2f987)] - **package**: add npm search keywords (Sam Roberts) [#452](https://github.com/nodejs/node-addon-api/pull/452)
633
+ * [[`0bc7987806`](https://github.com/nodejs/node-addon-api/commit/0bc7987806)] - **doc**: fix references to Weak and Persistent (Jake Barnes) [#428](https://github.com/nodejs/node-addon-api/pull/428)
634
+ * [[`ad6f569f85`](https://github.com/nodejs/node-addon-api/commit/ad6f569f85)] - **doc**: dix typo (Abhishek Kumar Singh) [#435](https://github.com/nodejs/node-addon-api/pull/435)
635
+ * [[`28df833a49`](https://github.com/nodejs/node-addon-api/commit/28df833a49)] - Merge pull request #441 from jschlight/master (Jim Schlight)
636
+ * [[`4921e74d83`](https://github.com/nodejs/node-addon-api/commit/4921e74d83)] - Rearranges names to be alphabetical (Jim Schlight)
637
+ * [[`48220335b0`](https://github.com/nodejs/node-addon-api/commit/48220335b0)] - Membership review update (Jim Schlight)
638
+ * [[`44f0695533`](https://github.com/nodejs/node-addon-api/commit/44f0695533)] - Merge pull request #394 from NickNaso/create\_release (Nicola DelGobbo)
639
+ * [[`fa49d68416`](https://github.com/nodejs/node-addon-api/commit/fa49d68416)] - **doc**: fix some `Finalizer` signatures (Philipp Renoth) [#414](https://github.com/nodejs/node-addon-api/pull/414)
640
+ * [[`020ac4a628`](https://github.com/nodejs/node-addon-api/commit/020ac4a628)] - **src**: make `Object::GetPropertyNames()` const (Philipp Renoth)[#415](https://github.com/nodejs/node-addon-api/pull/415)
641
+ * [[`91eaa6f4cb`](https://github.com/nodejs/node-addon-api/commit/91eaa6f4cb)] - **src**: fix callbackData leaks on error napi status (Philipp Renoth) [#417](https://github.com/nodejs/node-addon-api/pull/417)
642
+ * [[`0b40275752`](https://github.com/nodejs/node-addon-api/commit/0b40275752)] - **src**: fix noexcept control flow issues (Philipp Renoth) [#420](https://github.com/nodejs/node-addon-api/pull/420)
643
+ * [[`c1ff2936f9`](https://github.com/nodejs/node-addon-api/commit/c1ff2936f9)] - **src**: fix missing void\*data usage in PropertyDescriptors (Luciano Martorella) [#374](https://github.com/nodejs/node-addon-api/pull/374)
644
+
645
+ ## 2018-11-29 Version 1.6.2, @NickNaso
646
+
647
+ ### Notable changes:
648
+
649
+ #### API
650
+
651
+ - Fixed selection logic for version 6.x.
652
+
653
+ ### Commmits
654
+
655
+ * [[`07a0fc4e95`](https://github.com/nodejs/node-addon-api/commit/07a0fc4e95)] - **src**: fix selection logic for 6.x (Michael Dawson) [#402](https://github.com/nodejs/node-addon-api/pull/402)
656
+
657
+ ## 2018-11-14 Version 1.6.1, @NickNaso
658
+
659
+ ### Notable changes:
660
+
661
+ #### Documentation
662
+
663
+ - Updated links for examples to point to node-addon-examples repo.
664
+ - Fixed typos on some parts of documentation.
665
+
666
+ #### API
667
+
668
+ - Removed unused member on `Napi::CallbackScope`.
669
+ - Enabled `Napi::CallbackScope` only with N-API v3.
670
+
671
+ ### Commits
672
+
673
+ * [[`e7cd292a74`](https://github.com/nodejs/node-addon-api/commit/e7cd292a74)] - **src**: remove unused CallbackScope member (Gabriel Schulhof) [#391](https://github.com/nodejs/node-addon-api/pull/391)
674
+ * [[`d47399fe25`](https://github.com/nodejs/node-addon-api/commit/d47399fe25)] - **src**: guard CallbackScope with N-API v3 (Michael Dawson) [#395](https://github.com/nodejs/node-addon-api/pull/395)
675
+ * [[`29a0262ab9`](https://github.com/nodejs/node-addon-api/commit/29a0262ab9)] - **doc**: fix typo (Dongjin Na) [#385](https://github.com/nodejs/node-addon-api/pull/385)
676
+ * [[`b6dc15b88d`](https://github.com/nodejs/node-addon-api/commit/b6dc15b88d)] - **doc**: make links point to node-addon-examples repo (Nicola Del Gobbo) [#389](https://github.com/nodejs/node-addon-api/pull/389)
677
+
678
+ ## 2018-11-02 Version 1.6.0, @NickNaso
679
+
680
+ ### Notable changes:
681
+
682
+ #### Documentation
683
+
684
+ - Improved documentation about ABI stability.
685
+
686
+ #### API
687
+
688
+ - Add `Napi::CallbackScope` class that help to have the equivalent of the scope
689
+ associated with a callback in place when making certain N-API calls
690
+
691
+ #### TEST
692
+
693
+ - Added tests for `Napi::Array` class.
694
+ - Added tests for `Napi::ArrayBuffer` class.
695
+
696
+ ### Commits
697
+
698
+ * [[`8ce605c657`](https://github.com/nodejs/node-addon-api/commit/8ce605c657)] - **build**: avoid using package-lock.json (Jaeseok Yoon) [#359](https://github.com/nodejs/node-addon-api/pull/359)
699
+ * [[`fa3a6150b3`](https://github.com/nodejs/node-addon-api/commit/fa3a6150b3)] - **src**: use MakeCallback() -\> Call() in AsyncWorker (Jinho Bang) [#361](https://github.com/nodejs/node-addon-api/pull/361)
700
+ * [[`2342415463`](https://github.com/nodejs/node-addon-api/commit/2342415463)] - **test**: create test objects in the stack instead of the heap (Dongjin Na) [#371](https://github.com/nodejs/node-addon-api/pull/371)
701
+ * [[`67b7db0a6f`](https://github.com/nodejs/node-addon-api/commit/67b7db0a6f)] - **test**: write tests for Array class (Jaeseok Yoon) [#363](https://github.com/nodejs/node-addon-api/pull/363)
702
+ * [[`729f6dc4ee`](https://github.com/nodejs/node-addon-api/commit/729f6dc4ee)] - **test**: add arraybuffer tests (Dongjin Na) [#369](https://github.com/nodejs/node-addon-api/pull/369)
703
+ * [[`405f3e5b5b`](https://github.com/nodejs/node-addon-api/commit/405f3e5b5b)] - **src**: implement CallbackScope class (Jinho Bang) [#362](https://github.com/nodejs/node-addon-api/pull/362)
704
+ * [[`015d95312f`](https://github.com/nodejs/node-addon-api/commit/015d95312f)] - **doc**: fix Napi::Reference link (Gentilhomme) [#365](https://github.com/nodejs/node-addon-api/pull/365)
705
+ * [[`fd65078e3c`](https://github.com/nodejs/node-addon-api/commit/fd65078e3c)] - README.md: link to new ABI stability guide (Gabriel Schulhof) [#367](https://github.com/nodejs/node-addon-api/pull/367)
706
+ * [[`ffebf9ba9a`](https://github.com/nodejs/node-addon-api/commit/ffebf9ba9a)] - Updates for release 1.5.0 (NickNaso)
707
+
708
+ ## 2018-10-03 Version 1.5.0, @NickNaso
709
+
710
+ ### Notable changes:
711
+
712
+ #### Documentation
713
+
714
+ - Completed the documentation to cover all the API surface.
715
+ - Numerous fixes to make documentation more consistent in all of its parts.
716
+
717
+ #### API
718
+
719
+ - Add `Napi::AsyncContext` class to handle asynchronous operation.
720
+ - Add `Napi::BigInt` class to work with BigInt type.
721
+ - Add `Napi::VersionManagement` class to retrieve the versions of Node.js and N-API.
722
+ - Fix potential memory leaks.
723
+ - DataView feature is enabled by default
724
+ - Add descriptor for Symbols
725
+ - Add new methods on `Napi::FunctionReference`.
726
+ - Add the possibility to retrieve the environment on `Napi::Promise::Deferred`
727
+
728
+ #### TOOL
729
+
730
+ - Add tool to check if a native add-on is built using N-API
731
+
732
+ #### TEST
733
+
734
+ - Start to increase the test coverage
735
+ - Fix in the test suite to better handle the experimental features that are not
736
+ yet backported in the previous Node.js version.
737
+
738
+ ### Commits
739
+
740
+ * [[`2009c019af`](https://github.com/nodejs/node-addon-api/commit/2009c019af)] - Merge pull request #292 from devsnek/feature/bigint (Gus Caplan)
741
+ * [[`e44aca985e`](https://github.com/nodejs/node-addon-api/commit/e44aca985e)] - add bigint class (Gus Caplan)
742
+ * [[`a3951ab973`](https://github.com/nodejs/node-addon-api/commit/a3951ab973)] - Add documentation for Env(). (Rolf Timmermans) [#318](https://github.com/nodejs/node-addon-api/pull/318)
743
+ * [[`a6f7a6ad51`](https://github.com/nodejs/node-addon-api/commit/a6f7a6ad51)] - Add Env() to Promise::Deferred. (Rolf Timmermans)
744
+ * [[`0097e96b92`](https://github.com/nodejs/node-addon-api/commit/0097e96b92)] - Fixed broken links for Symbol and String (NickNaso)
745
+ * [[`b0ecd38d76`](https://github.com/nodejs/node-addon-api/commit/b0ecd38d76)] - Fix Code of conduct link properly (#323) (Jake Yoon) [#323](https://github.com/nodejs/node-addon-api/pull/323)
746
+ * [[`223474900f`](https://github.com/nodejs/node-addon-api/commit/223474900f)] - **doc**: update Version management (Dongjin Na) [#360](https://github.com/nodejs/node-addon-api/pull/360)
747
+ * [[`4f76262a10`](https://github.com/nodejs/node-addon-api/commit/4f76262a10)] - **doc**: some fix on `Napi::Boolean` documentation (NickNaso) [#354](https://github.com/nodejs/node-addon-api/pull/354)
748
+ * [[`78374f72d2`](https://github.com/nodejs/node-addon-api/commit/78374f72d2)] - **doc**: number documentation (NickNaso) [#356](https://github.com/nodejs/node-addon-api/pull/356)
749
+ * [[`51ffe453f8`](https://github.com/nodejs/node-addon-api/commit/51ffe453f8)] - **doc**: doc cleanup (NickNaso) [#353](https://github.com/nodejs/node-addon-api/pull/353)
750
+ * [[`fc11c944b2`](https://github.com/nodejs/node-addon-api/commit/fc11c944b2)] - **doc**: major doc cleanup (NickNaso) [#335](https://github.com/nodejs/node-addon-api/pull/335)
751
+ * [[`100d0a7cb2`](https://github.com/nodejs/node-addon-api/commit/100d0a7cb2)] - **doc**: first pass on objectwrap documentation (NickNaso) [#321](https://github.com/nodejs/node-addon-api/pull/321)
752
+ * [[`c7d54180ff`](https://github.com/nodejs/node-addon-api/commit/c7d54180ff)] - **doc**: the Napi::ObjectWrap example does not compile (Arnaud Botella) [#339](https://github.com/nodejs/node-addon-api/pull/339)
753
+ * [[`7cdd78726a`](https://github.com/nodejs/node-addon-api/commit/7cdd78726a)] - **doc**: added cpp highlight for string.md (Jaeseok Yoon) [#329](https://github.com/nodejs/node-addon-api/pull/329)
754
+ * [[`8ed29f547c`](https://github.com/nodejs/node-addon-api/commit/8ed29f547c)] - **doc**: add blurb about ABI stability (Gabriel Schulhof) [#326](https://github.com/nodejs/node-addon-api/pull/326)
755
+ * [[`757eb1f5a3`](https://github.com/nodejs/node-addon-api/commit/757eb1f5a3)] - **doc**: add function and function reference doc (NickNaso) [#299](https://github.com/nodejs/node-addon-api/pull/299)
756
+ * [[`2885c18591`](https://github.com/nodejs/node-addon-api/commit/2885c18591)] - **doc**: Create changelog for release 1.4.0 (Nicola Del Gobbo)
757
+ * [[`917bd60baa`](https://github.com/nodejs/node-addon-api/commit/917bd60baa)] - **src**: remove TODOs by fixing memory leaks (Gabriel Schulhof) [#343](https://github.com/nodejs/node-addon-api/pull/343)
758
+ * [[`dfcb93945f`](https://github.com/nodejs/node-addon-api/commit/dfcb93945f)] - **src**: implement AsyncContext class (Jinho Bang) [#252](https://github.com/nodejs/node-addon-api/pull/252)
759
+ * [[`211ed38d0d`](https://github.com/nodejs/node-addon-api/commit/211ed38d0d)] - **src**: make 'nothing' target a static library (Gabriel Schulhof) [#348](https://github.com/nodejs/node-addon-api/pull/348)
760
+ * [[`97c4ab5cf2`](https://github.com/nodejs/node-addon-api/commit/97c4ab5cf2)] - **src**: add Call and MakeCallback that accept cargs (NickNaso) [#344](https://github.com/nodejs/node-addon-api/pull/344)
761
+ * [[`b6e2d92c09`](https://github.com/nodejs/node-addon-api/commit/b6e2d92c09)] - **src**: enable DataView feature by default (Jinho) [#331](https://github.com/nodejs/node-addon-api/pull/331)
762
+ * [[`0a00e7c97b`](https://github.com/nodejs/node-addon-api/commit/0a00e7c97b)] - **src**: implement missing descriptor defs for symbols (Philipp Renoth) [#280](https://github.com/nodejs/node-addon-api/pull/280)
763
+ * [[`38e01b7e3b`](https://github.com/nodejs/node-addon-api/commit/38e01b7e3b)] - **src**: first pass on adding version management apis (NickNaso) [#325](https://github.com/nodejs/node-addon-api/pull/325)
764
+ * [[`79ee8381d2`](https://github.com/nodejs/node-addon-api/commit/79ee8381d2)] - **src**: fix compile failure in test (Michael Dawson) [#345](https://github.com/nodejs/node-addon-api/pull/345)
765
+ * [[`4d92a6066f`](https://github.com/nodejs/node-addon-api/commit/4d92a6066f)] - **src**: Add ObjectReference test case (Anisha Rohra) [#212](https://github.com/nodejs/node-addon-api/pull/212)
766
+ * [[`779560f397`](https://github.com/nodejs/node-addon-api/commit/779560f397)] - **test**: add operator overloading tests in Number (Your Name) [#355](https://github.com/nodejs/node-addon-api/pull/355)
767
+ * [[`73fed84ceb`](https://github.com/nodejs/node-addon-api/commit/73fed84ceb)] - **test**: add ability to control experimental tests (Michael Dawson) [#350](https://github.com/nodejs/node-addon-api/pull/350)
768
+ * [[`14c69abd46`](https://github.com/nodejs/node-addon-api/commit/14c69abd46)] - **test**: write tests for Boolean class (Jaeseok Yoon) [#328](https://github.com/nodejs/node-addon-api/pull/328)
769
+ * [[`2ad47a83b1`](https://github.com/nodejs/node-addon-api/commit/2ad47a83b1)] - **test**: explicitly cast to uint32\_t in test (Gabriel Schulhof) [#341](https://github.com/nodejs/node-addon-api/pull/341)
770
+ * [[`622ffaea76`](https://github.com/nodejs/node-addon-api/commit/622ffaea76)] - **test**: Tighten up compiler warnings (Mikhail Cheshkov) [#315](https://github.com/nodejs/node-addon-api/pull/315)
771
+ * [[`fd3c37b0f2`](https://github.com/nodejs/node-addon-api/commit/fd3c37b0f2)] - **tools**: add tool to check for N-API modules (Gabriel Schulhof) [#346](https://github.com/nodejs/node-addon-api/pull/346)
772
+
773
+ ## 2018-07-19 Version 1.4.0, @NickNaso
774
+
775
+ ### Notable changes:
776
+
777
+ #### Documentation
778
+
779
+ - Numerous additions to the documentation, filling out coverage
780
+ of API surface
781
+
782
+ #### API
783
+
784
+ - Add resource parameters to AsyncWorker constructor
785
+ - Add memory management feature
786
+
787
+ ### Commits
788
+
789
+ * [[`7dc5ac8bc3`](https://github.com/nodejs/node-addon-api/commit/7dc5ac8bc3)] - **doc**: update metadata for release (Nicola Del Gobbo)
790
+ * [[`d68e86adb4`](https://github.com/nodejs/node-addon-api/commit/d68e86adb4)] - **doc**: Added documentation for PropertyDescriptor (Anisha Rohra) [#309](https://github.com/nodejs/node-addon-api/pull/309)
791
+ * [[`968a5f2000`](https://github.com/nodejs/node-addon-api/commit/968a5f2000)] - **doc**: Add documentation for ObjectReference.md (Anisha Rohra) [#307](https://github.com/nodejs/node-addon-api/pull/307)
792
+ * [[`908cdc314c`](https://github.com/nodejs/node-addon-api/commit/908cdc314c)] - **doc**: add `TypedArray` and `TypedArrayOf` (Kyle Farnung) [#305](https://github.com/nodejs/node-addon-api/pull/305)
793
+ * [[`2ff776ffe3`](https://github.com/nodejs/node-addon-api/commit/2ff776ffe3)] - backport node::Persistent (Gabriel Schulhof) [#300](https://github.com/nodejs/node-addon-api/pull/300)
794
+ * [[`98161970c9`](https://github.com/nodejs/node-addon-api/commit/98161970c9)] - Backport perf, crash and exception handling fixes (Gabriel Schulhof) [#295](https://github.com/nodejs/node-addon-api/pull/295)
795
+ * [[`dd1191e086`](https://github.com/nodejs/node-addon-api/commit/dd1191e086)] - **test**: fix asyncworker test so it runs on 6.x (Michael Dawson) [#298](https://github.com/nodejs/node-addon-api/pull/298)
796
+ * [[`11697fcecd`](https://github.com/nodejs/node-addon-api/commit/11697fcecd)] - **doc**: ArrayBuffer and Buffer documentation (Kyle Farnung) [#256](https://github.com/nodejs/node-addon-api/pull/256)
797
+ * [[`605aa2babf`](https://github.com/nodejs/node-addon-api/commit/605aa2babf)] - Add memory management feature (NickNaso) [#286](https://github.com/nodejs/node-addon-api/pull/286)
798
+ * [[`86be13a611`](https://github.com/nodejs/node-addon-api/commit/86be13a611)] - **doc**: Fix HandleScope docs (Ben Berman) [#287](https://github.com/nodejs/node-addon-api/pull/287)
799
+ * [[`90f92c4dc0`](https://github.com/nodejs/node-addon-api/commit/90f92c4dc0)] - **doc**: Update broken links in README.md (Hitesh Kanwathirtha) [#290](https://github.com/nodejs/node-addon-api/pull/290)
800
+ * [[`c2a620dc11`](https://github.com/nodejs/node-addon-api/commit/c2a620dc11)] - **doc**: Clarify positioning versus N-API (Michael Dawson) [#288](https://github.com/nodejs/node-addon-api/pull/288)
801
+ * [[`6cff890ee5`](https://github.com/nodejs/node-addon-api/commit/6cff890ee5)] - **doc**: Fix typo in docs (Ben Berman) [#284](https://github.com/nodejs/node-addon-api/pull/284)
802
+ * [[`7394bfd154`](https://github.com/nodejs/node-addon-api/commit/7394bfd154)] - **doc**: Fix typo in docs (Ben Berman) [#285](https://github.com/nodejs/node-addon-api/pull/285)
803
+ * [[`12b2cdeed3`](https://github.com/nodejs/node-addon-api/commit/12b2cdeed3)] - fix test files (Kyle Farnung) [#257](https://github.com/nodejs/node-addon-api/pull/257)
804
+ * [[`9ab6607242`](https://github.com/nodejs/node-addon-api/commit/9ab6607242)] - **doc**: Update Doc Version Number (joshgarde) [#277](https://github.com/nodejs/node-addon-api/pull/277)
805
+ * [[`e029a076c6`](https://github.com/nodejs/node-addon-api/commit/e029a076c6)] - **doc**: First pass at basic Node Addon API docs (Hitesh Kanwathirtha) [#268](https://github.com/nodejs/node-addon-api/pull/268)
806
+ * [[`74ff79717e`](https://github.com/nodejs/node-addon-api/commit/74ff79717e)] - **doc**: fix link to async\_worker.md (Michael Dawson)
807
+ * [[`5a63f45eda`](https://github.com/nodejs/node-addon-api/commit/5a63f45eda)] - **doc**: First step of error and async doc (NickNaso) [#272](https://github.com/nodejs/node-addon-api/pull/272)
808
+ * [[`9d38f61afb`](https://github.com/nodejs/node-addon-api/commit/9d38f61afb)] - **doc**: New Promise and Reference docs (Jim Schlight) [#243](https://github.com/nodejs/node-addon-api/pull/243)
809
+ * [[`43ff9fa836`](https://github.com/nodejs/node-addon-api/commit/43ff9fa836)] - **doc**: Updated Object documentation (Anisha Rohra) [#254](https://github.com/nodejs/node-addon-api/pull/254)
810
+ * [[`b197f7cc8b`](https://github.com/nodejs/node-addon-api/commit/b197f7cc8b)] - **doc**: minor typos (Nick Soggin) [#248](https://github.com/nodejs/node-addon-api/pull/248)
811
+ * [[`4b8918b352`](https://github.com/nodejs/node-addon-api/commit/4b8918b352)] - Add resource parameters to AsyncWorker constructor (Jinho Bang) [#253](https://github.com/nodejs/node-addon-api/pull/253)
812
+ * [[`1ecf7c19b6`](https://github.com/nodejs/node-addon-api/commit/1ecf7c19b6)] - **doc**: fix wrong link in readme (miloas) [#255](https://github.com/nodejs/node-addon-api/pull/255)
813
+ * [[`a750ed1932`](https://github.com/nodejs/node-addon-api/commit/a750ed1932)] - **release**: updates to metadata for next release (Michael Dawson)
814
+
815
+ ## 2018-05-08 Version 1.3.0, @mhdawson
816
+
817
+ ### Notable changes:
818
+
819
+ #### Documentation
820
+ - Added documentation for Scopes
821
+ - Added documentation for migration from NAN
822
+ - Update documentation to better explain the use of NODE_ADDON_API
823
+
824
+ #### API
825
+ - Implement data manipulation methods for dataview
826
+ - Use built-in N-API on Node.js >= 6.14.2
827
+ - Value
828
+ - Added IsExternal()
829
+ - IsObject() allow functions
830
+ - String
831
+ - Fixed initialization of std::string to nullptr
832
+
833
+ #### Tests
834
+ - Fix test failures on linuxOne and AIX
835
+ - Added basic tests for Scopes
836
+ - Fix MSVC warning C4244 in tests
837
+
838
+ ### Commits
839
+
840
+ * [386c2aeb74] - test: remove dep on later C++ feature (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/267
841
+ * [10697734da] - Use built-in N-API on Node.js >= 6.14.2 (Gabriel Schulhof)
842
+ * [75086da273] - test: add basic tests and doc for scopes (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/250
843
+ * [341dbd25d5] - doc: update blurb explaining NODE_ADDON_API (Gabriel Schulhof) https://github.com/nodejs/node-addon-api/pull/251
844
+ * [cf6c93e4ee] - don't try to escape null (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/245
845
+ * [15e4b35fc2] - test: fix MSVC warning C4244 in tests (Kyle Farnung) https://github.com/nodejs/node-addon-api/pull/236
846
+ * [7f3ca03b8e] - Create a doc for migration (Sampson Gao) https://github.com/nodejs/node-addon-api/pull/118
847
+ * [0a2177debe] - Fix test failures on linuxOne and AIX (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/232
848
+ * [d567f4b6b5] - Added Napi::Value::IsExternal() (Eric Bickle) https://github.com/nodejs/node-addon-api/pull/227
849
+ * [1b0f0e004a] - Update node-gyp.md (Michele Campus) https://github.com/nodejs/node-addon-api/pull/226
850
+ * [faf19c4f7a] - Fixed initialization of std::string to nullptr (Eric Bickle) https://github.com/nodejs/node-addon-api/pull/228
851
+ * [9c4d321b57] - Implement data manipulation methods for dataview (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/218
852
+ * [5a39fdca6f] - n-api: throw RangeError napi_create_typedarray() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/216
853
+ * [1376377202] - Make IsObject() allow functions (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/217
854
+ * [673b59d319] - src: Initial implementation of DataView class (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/205
855
+ * [0a899bf1c5] - doc: update indication of latest version (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/211
856
+ * [17c74e5a5e] - n-api: RangeError in napi_create_dataview() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/214
857
+ * [4058a29989] - n-api: fix memory leak in napi_async_destroy() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/213
858
+
859
+