UNPKG

3.66 kBMarkdownView Raw
1# Changelog
2
3All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
5### [3.3.3](https://github.com/kelektiv/node-uuid/compare/v3.3.2...v3.3.3) (2019-08-19)
6
7<a name="3.3.2"></a>
8## [3.3.2](https://github.com/kelektiv/node-uuid/compare/v3.3.1...v3.3.2) (2018-06-28)
9
10
11### Bug Fixes
12
13* typo ([305d877](https://github.com/kelektiv/node-uuid/commit/305d877))
14
15
16
17<a name="3.3.1"></a>
18## [3.3.1](https://github.com/kelektiv/node-uuid/compare/v3.3.0...v3.3.1) (2018-06-28)
19
20
21### Bug Fixes
22
23* fix [#284](https://github.com/kelektiv/node-uuid/issues/284) by setting function name in try-catch ([f2a60f2](https://github.com/kelektiv/node-uuid/commit/f2a60f2))
24
25
26
27<a name="3.3.0"></a>
28# [3.3.0](https://github.com/kelektiv/node-uuid/compare/v3.2.1...v3.3.0) (2018-06-22)
29
30
31### Bug Fixes
32
33* assignment to readonly property to allow running in strict mode ([#270](https://github.com/kelektiv/node-uuid/issues/270)) ([d062fdc](https://github.com/kelektiv/node-uuid/commit/d062fdc))
34* fix [#229](https://github.com/kelektiv/node-uuid/issues/229) ([c9684d4](https://github.com/kelektiv/node-uuid/commit/c9684d4))
35* Get correct version of IE11 crypto ([#274](https://github.com/kelektiv/node-uuid/issues/274)) ([153d331](https://github.com/kelektiv/node-uuid/commit/153d331))
36* mem issue when generating uuid ([#267](https://github.com/kelektiv/node-uuid/issues/267)) ([c47702c](https://github.com/kelektiv/node-uuid/commit/c47702c))
37
38### Features
39
40* enforce Conventional Commit style commit messages ([#282](https://github.com/kelektiv/node-uuid/issues/282)) ([cc9a182](https://github.com/kelektiv/node-uuid/commit/cc9a182))
41
42
43<a name="3.2.1"></a>
44## [3.2.1](https://github.com/kelektiv/node-uuid/compare/v3.2.0...v3.2.1) (2018-01-16)
45
46
47### Bug Fixes
48
49* use msCrypto if available. Fixes [#241](https://github.com/kelektiv/node-uuid/issues/241) ([#247](https://github.com/kelektiv/node-uuid/issues/247)) ([1fef18b](https://github.com/kelektiv/node-uuid/commit/1fef18b))
50
51
52
53<a name="3.2.0"></a>
54# [3.2.0](https://github.com/kelektiv/node-uuid/compare/v3.1.0...v3.2.0) (2018-01-16)
55
56
57### Bug Fixes
58
59* remove mistakenly added typescript dependency, rollback version (standard-version will auto-increment) ([09fa824](https://github.com/kelektiv/node-uuid/commit/09fa824))
60* use msCrypto if available. Fixes [#241](https://github.com/kelektiv/node-uuid/issues/241) ([#247](https://github.com/kelektiv/node-uuid/issues/247)) ([1fef18b](https://github.com/kelektiv/node-uuid/commit/1fef18b))
61
62
63### Features
64
65* Add v3 Support ([#217](https://github.com/kelektiv/node-uuid/issues/217)) ([d94f726](https://github.com/kelektiv/node-uuid/commit/d94f726))
66
67
68# [3.1.0](https://github.com/kelektiv/node-uuid/compare/v3.1.0...v3.0.1) (2017-06-17)
69
70### Bug Fixes
71
72* (fix) Add .npmignore file to exclude test/ and other non-essential files from packing. (#183)
73* Fix typo (#178)
74* Simple typo fix (#165)
75
76### Features
77* v5 support in CLI (#197)
78* V5 support (#188)
79
80
81# 3.0.1 (2016-11-28)
82
83* split uuid versions into separate files
84
85
86# 3.0.0 (2016-11-17)
87
88* remove .parse and .unparse
89
90
91# 2.0.0
92
93* Removed uuid.BufferClass
94
95
96# 1.4.0
97
98* Improved module context detection
99* Removed public RNG functions
100
101
102# 1.3.2
103
104* Improve tests and handling of v1() options (Issue #24)
105* Expose RNG option to allow for perf testing with different generators
106
107
108# 1.3.0
109
110* Support for version 1 ids, thanks to [@ctavan](https://github.com/ctavan)!
111* Support for node.js crypto API
112* De-emphasizing performance in favor of a) cryptographic quality PRNGs where available and b) more manageable code