UNPKG

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