UNPKG

3.9 kBMarkdownView Raw
1# 5.1.0 (2022-10-06)
2 * Update `node-pre-gyp` to 1.0.11
3
4# 5.1.0 (2022-10-06)
5 * Update `node-pre-gyp` to 1.0.10
6 * Replace `nodeunit` with `jest` as the testing library
7
8# 5.0.1 (2021-02-22)
9
10 * Update `node-pre-gyp` to 1.0.0
11
12# 5.0.0 (2020-06-02)
13
14 * Fix the bcrypt "wrap-around" bug. It affects passwords with lengths >= 255.
15 It is uncommon but it's a bug nevertheless. Previous attempts to fix the bug
16 was unsuccessful.
17 * Experimental support for z/OS
18 * Fix a bug related to NUL in password input
19 * Update `node-pre-gyp` to 0.15.0
20
21# 4.0.1 (2020-02-27)
22
23 * Fix compilation errors in Alpine linux
24
25# 4.0.0 (2020-02-17)
26
27 * Switch to NAPI bcrypt
28 * Drop support for NodeJS 8
29
30# 3.0.8 (2019-12-31)
31
32 * Update `node-pre-gyp` to 0.14
33 * Pre-built binaries for NodeJS 13
34
35# 3.0.7 (2019-10-18)
36
37 * Update `nan` to 2.14.0
38 * Update `node-pre-gyp` to 0.13
39
40# 3.0.6 (2019-04-11)
41
42 * Update `nan` to 2.13.2
43
44# 3.0.5 (2019-03-19)
45
46 * Update `nan` to 2.13.1
47 * NodeJS 12 compatibility
48 * Remove `node-pre-gyp` from bundled dependencies
49
50# 3.0.4-napi (2019-03-08)
51
52 * Sync N-API bcrypt with NAN bcrypt
53
54# 3.0.4 (2019-02-07)
55
56 * Fix GCC, NAN and V8 deprecation warnings
57
58# 3.0.3 (2018-12-19)
59
60 * Update `nan` to 2.12.1
61
62# 3.0.2 (2018-10-18)
63
64 * Update `nan` to 2.11.1
65
66# 3.0.1 (2018-09-20)
67
68 * Update `nan` to 2.11.0
69
70# 3.0.0 (2018-07-06)
71
72 * Drop support for NodeJS <= 4
73
74# 2.0.1 (2018-04-20)
75
76 * Update `node-pre-gyp` to allow downloading prebuilt modules
77
78# 2.0.0 (2018-04-07)
79
80 * Make `2b` the default bcrypt version
81
82# 1.1.0-napi (2018-01-21)
83
84 * Initial support for [N-API](https://nodejs.org/api/n-api.html)
85
86# 1.0.3 (2016-08-23)
87
88 * update to nan v2.6.2 for NodeJS 8 support
89 * Fix: use npm scripts instead of node-gyp directly.
90
91# 1.0.2 (2016-12-31)
92
93 * Fix `compare` promise rejection with invalid arguments
94
95# 1.0.1 (2016-12-07)
96
97 * Fix destructuring imports with promises
98
99# 1.0.0 (2016-12-04)
100
101 * add Promise support (commit 2488473)
102
103# 0.8.7 (2016-06-09)
104
105 * update nan to 2.3.5 for improved node v6 support
106
107# 0.8.6 (2016-04-20)
108
109 * update nan for node v6 support
110
111# 0.8.5 (2015-08-12)
112
113 * update to nan v2 (adds support for iojs 3)
114
115# 0.8.4 (2015-07-24)
116
117 * fix deprecation warning for the Encode API
118
119# 0.8.3 (2015-05-06)
120
121 * update nan to 1.8.4 for iojs 2.x support
122
123# 0.8.2 (2015-03-28)
124
125 * always use callback for generating random bytes to avoid blocking
126
127# 0.8.1 (2015-01-18)
128 * update NaN to 1.5.0 for iojs support
129
130# 0.8.0 (2014-08-03)
131 * migrate to NAN for bindings
132
133# v0.5.0
134 * Fix for issue around empty string params throwing Errors.
135 * Method deprecation.
136 * Upgrade from libeio/ev to libuv. (shtylman)
137 ** --- NOTE --- Breaks 0.4.x compatability
138 * EV_MULTIPLICITY compile flag.
139
140# v0.4.1
141 * Thread safety fix around OpenSSL (GH-32). (bnoordhuis - through node)
142 * C++ code changes using delete and new instead of malloc and free. (shtylman)
143 * Compile options for speed, zoom. (shtylman)
144 * Move much of the type and variable checking to the JS. (shtylman)
145
146# v0.4.0
147 * Added getRounds function that will tell you the number of rounds within a hash/salt
148
149# v0.3.2
150 * Fix api issue with async salt gen first param
151
152# v0.3.1
153 * Compile under node 0.5.x
154
155# v0.3.0
156 * Internal Refactoring
157 * Remove pthread dependencies and locking
158 * Fix compiler warnings and a memory bug
159
160# v0.2.4
161 * Use threadsafe functions instead of pthread mutexes
162 * salt validation to make sure the salt is of the correct size and format
163
164# v0.2.3
165 * cygwin support
166
167# v0.2.2
168 * Remove dependency on libbsd, use libssl instead
169
170# v0.2.0
171 * Added async functionality
172 * API changes
173 * hashpw -> encrypt
174 * all old sync methods now end with _sync
175 * Removed libbsd(arc4random) dependency...now uses openssl which is more widely spread
176
177# v0.1.2
178 * Security fix. Wasn't reading rounds in properly and was always only using 4 rounds