1 | # Changelog
|
2 |
|
3 | All 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 | ## [8.0.0](https://github.com/uuidjs/uuid/compare/v7.0.3...v8.0.0) (2020-04-29)
|
6 |
|
7 | ### ⚠ BREAKING CHANGES
|
8 |
|
9 | - For native ECMAScript Module (ESM) usage in Node.js only named exports are exposed, there is no more default export.
|
10 |
|
11 | ```diff
|
12 | -import uuid from 'uuid';
|
13 | -console.log(uuid.v4()); // -> 'cd6c3b08-0adc-4f4b-a6ef-36087a1c9869'
|
14 | +import { v4 as uuidv4 } from 'uuid';
|
15 | +uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'
|
16 | ```
|
17 |
|
18 | - Deep requiring specific algorithms of this library like `require('uuid/v4')`, which has been deprecated in `uuid@7`, is no longer supported.
|
19 |
|
20 | Instead use the named exports that this module exports.
|
21 |
|
22 | For ECMAScript Modules (ESM):
|
23 |
|
24 | ```diff
|
25 | -import uuidv4 from 'uuid/v4';
|
26 | +import { v4 as uuidv4 } from 'uuid';
|
27 | uuidv4();
|
28 | ```
|
29 |
|
30 | For CommonJS:
|
31 |
|
32 | ```diff
|
33 | -const uuidv4 = require('uuid/v4');
|
34 | +const { v4: uuidv4 } = require('uuid');
|
35 | uuidv4();
|
36 | ```
|
37 |
|
38 | ### Features
|
39 |
|
40 | - native Node.js ES Modules (wrapper approach) ([#423](https://github.com/uuidjs/uuid/issues/423)) ([2d9f590](https://github.com/uuidjs/uuid/commit/2d9f590ad9701d692625c07ed62f0a0f91227991)), closes [#245](https://github.com/uuidjs/uuid/issues/245) [#419](https://github.com/uuidjs/uuid/issues/419) [#342](https://github.com/uuidjs/uuid/issues/342)
|
41 | - remove deep requires ([#426](https://github.com/uuidjs/uuid/issues/426)) ([daf72b8](https://github.com/uuidjs/uuid/commit/daf72b84ceb20272a81bb5fbddb05dd95922cbba))
|
42 |
|
43 | ### Bug Fixes
|
44 |
|
45 | - add CommonJS syntax example to README quickstart section ([#417](https://github.com/uuidjs/uuid/issues/417)) ([e0ec840](https://github.com/uuidjs/uuid/commit/e0ec8402c7ad44b7ef0453036c612f5db513fda0))
|
46 |
|
47 | ### [7.0.3](https://github.com/uuidjs/uuid/compare/v7.0.2...v7.0.3) (2020-03-31)
|
48 |
|
49 | ### Bug Fixes
|
50 |
|
51 | - make deep require deprecation warning work in browsers ([#409](https://github.com/uuidjs/uuid/issues/409)) ([4b71107](https://github.com/uuidjs/uuid/commit/4b71107d8c0d2ef56861ede6403fc9dc35a1e6bf)), closes [#408](https://github.com/uuidjs/uuid/issues/408)
|
52 |
|
53 | ### [7.0.2](https://github.com/uuidjs/uuid/compare/v7.0.1...v7.0.2) (2020-03-04)
|
54 |
|
55 | ### Bug Fixes
|
56 |
|
57 | - make access to msCrypto consistent ([#393](https://github.com/uuidjs/uuid/issues/393)) ([8bf2a20](https://github.com/uuidjs/uuid/commit/8bf2a20f3565df743da7215eebdbada9d2df118c))
|
58 | - simplify link in deprecation warning ([#391](https://github.com/uuidjs/uuid/issues/391)) ([bb2c8e4](https://github.com/uuidjs/uuid/commit/bb2c8e4e9f4c5f9c1eaaf3ea59710c633cd90cb7))
|
59 | - update links to match content in readme ([#386](https://github.com/uuidjs/uuid/issues/386)) ([44f2f86](https://github.com/uuidjs/uuid/commit/44f2f86e9d2bbf14ee5f0f00f72a3db1292666d4))
|
60 |
|
61 | ### [7.0.1](https://github.com/uuidjs/uuid/compare/v7.0.0...v7.0.1) (2020-02-25)
|
62 |
|
63 | ### Bug Fixes
|
64 |
|
65 | - clean up esm builds for node and browser ([#383](https://github.com/uuidjs/uuid/issues/383)) ([59e6a49](https://github.com/uuidjs/uuid/commit/59e6a49e7ce7b3e8fb0f3ee52b9daae72af467dc))
|
66 | - provide browser versions independent from module system ([#380](https://github.com/uuidjs/uuid/issues/380)) ([4344a22](https://github.com/uuidjs/uuid/commit/4344a22e7aed33be8627eeaaf05360f256a21753)), closes [#378](https://github.com/uuidjs/uuid/issues/378)
|
67 |
|
68 | ## [7.0.0](https://github.com/uuidjs/uuid/compare/v3.4.0...v7.0.0) (2020-02-24)
|
69 |
|
70 | ### ⚠ BREAKING CHANGES
|
71 |
|
72 | - The default export, which used to be the v4() method
|
73 | but which was already discouraged in v3.x of this library, has been
|
74 | removed.
|
75 | - Explicitly note that deep imports of the different uuid
|
76 | version functions are deprecated and no longer encouraged and that
|
77 | ECMAScript module named imports should be used instead.
|
78 | Emit a deprecation warning for people who deep-require the different
|
79 | algorithm variants.
|
80 | - Remove builtin support for insecure random number
|
81 | generators in the browser. Users who want that will have to supply their
|
82 | own random number generator function.
|
83 | - Remove support for generating v3 and v5 UUIDs in
|
84 | Node.js<4.x
|
85 | - Convert code base to ECMAScript Modules (ESM) and
|
86 | release CommonJS build for node and ESM build for browser bundlers.
|
87 |
|
88 | ### Features
|
89 |
|
90 | - add UMD build to npm package ([#357](https://github.com/uuidjs/uuid/issues/357)) ([4e75adf](https://github.com/uuidjs/uuid/commit/4e75adf435196f28e3fbbe0185d654b5ded7ca2c)), closes [#345](https://github.com/uuidjs/uuid/issues/345)
|
91 | - add various es module and CommonJS examples ([b238510](https://github.com/uuidjs/uuid/commit/b238510bf352463521f74bab175a3af9b7a42555))
|
92 | - ensure that docs are up-to-date in CI ([ee5e77d](https://github.com/uuidjs/uuid/commit/ee5e77db547474f5a8f23d6c857a6d399209986b))
|
93 | - hybrid CommonJS & ECMAScript modules build ([a3f078f](https://github.com/uuidjs/uuid/commit/a3f078faa0baff69ab41aed08e041f8f9c8993d0))
|
94 | - remove insecure fallback random number generator ([3a5842b](https://github.com/uuidjs/uuid/commit/3a5842b141a6e5de0ae338f391661e6b84b167c9)), closes [#173](https://github.com/uuidjs/uuid/issues/173)
|
95 | - remove support for pre Node.js v4 Buffer API ([#356](https://github.com/uuidjs/uuid/issues/356)) ([b59b5c5](https://github.com/uuidjs/uuid/commit/b59b5c5ecad271c5453f1a156f011671f6d35627))
|
96 | - rename repository to github:uuidjs/uuid ([#351](https://github.com/uuidjs/uuid/issues/351)) ([c37a518](https://github.com/uuidjs/uuid/commit/c37a518e367ac4b6d0aa62dba1bc6ce9e85020f7)), closes [#338](https://github.com/uuidjs/uuid/issues/338)
|
97 |
|
98 | ### Bug Fixes
|
99 |
|
100 | - add deep-require proxies for local testing and adjust tests ([#365](https://github.com/uuidjs/uuid/issues/365)) ([7fedc79](https://github.com/uuidjs/uuid/commit/7fedc79ac8fda4bfd1c566c7f05ef4ac13b2db48))
|
101 | - add note about removal of default export ([#372](https://github.com/uuidjs/uuid/issues/372)) ([12749b7](https://github.com/uuidjs/uuid/commit/12749b700eb49db8a9759fd306d8be05dbfbd58c)), closes [#370](https://github.com/uuidjs/uuid/issues/370)
|
102 | - deprecated deep requiring of the different algorithm versions ([#361](https://github.com/uuidjs/uuid/issues/361)) ([c0bdf15](https://github.com/uuidjs/uuid/commit/c0bdf15e417639b1aeb0b247b2fb11f7a0a26b23))
|
103 |
|
104 | ## [3.4.0](https://github.com/uuidjs/uuid/compare/v3.3.3...v3.4.0) (2020-01-16)
|
105 |
|
106 | ### Features
|
107 |
|
108 | - rename repository to github:uuidjs/uuid ([#351](https://github.com/uuidjs/uuid/issues/351)) ([e2d7314](https://github.com/uuidjs/uuid/commit/e2d7314)), closes [#338](https://github.com/uuidjs/uuid/issues/338)
|
109 |
|
110 | ## [3.3.3](https://github.com/uuidjs/uuid/compare/v3.3.2...v3.3.3) (2019-08-19)
|
111 |
|
112 | ### Bug Fixes
|
113 |
|
114 | - no longer run ci tests on node v4
|
115 | - upgrade dependencies
|
116 |
|
117 | ## [3.3.2](https://github.com/uuidjs/uuid/compare/v3.3.1...v3.3.2) (2018-06-28)
|
118 |
|
119 | ### Bug Fixes
|
120 |
|
121 | - typo ([305d877](https://github.com/uuidjs/uuid/commit/305d877))
|
122 |
|
123 | ## [3.3.1](https://github.com/uuidjs/uuid/compare/v3.3.0...v3.3.1) (2018-06-28)
|
124 |
|
125 | ### Bug Fixes
|
126 |
|
127 | - fix [#284](https://github.com/uuidjs/uuid/issues/284) by setting function name in try-catch ([f2a60f2](https://github.com/uuidjs/uuid/commit/f2a60f2))
|
128 |
|
129 | # [3.3.0](https://github.com/uuidjs/uuid/compare/v3.2.1...v3.3.0) (2018-06-22)
|
130 |
|
131 | ### Bug Fixes
|
132 |
|
133 | - assignment to readonly property to allow running in strict mode ([#270](https://github.com/uuidjs/uuid/issues/270)) ([d062fdc](https://github.com/uuidjs/uuid/commit/d062fdc))
|
134 | - fix [#229](https://github.com/uuidjs/uuid/issues/229) ([c9684d4](https://github.com/uuidjs/uuid/commit/c9684d4))
|
135 | - Get correct version of IE11 crypto ([#274](https://github.com/uuidjs/uuid/issues/274)) ([153d331](https://github.com/uuidjs/uuid/commit/153d331))
|
136 | - mem issue when generating uuid ([#267](https://github.com/uuidjs/uuid/issues/267)) ([c47702c](https://github.com/uuidjs/uuid/commit/c47702c))
|
137 |
|
138 | ### Features
|
139 |
|
140 | - enforce Conventional Commit style commit messages ([#282](https://github.com/uuidjs/uuid/issues/282)) ([cc9a182](https://github.com/uuidjs/uuid/commit/cc9a182))
|
141 |
|
142 | ## [3.2.1](https://github.com/uuidjs/uuid/compare/v3.2.0...v3.2.1) (2018-01-16)
|
143 |
|
144 | ### Bug Fixes
|
145 |
|
146 | - use msCrypto if available. Fixes [#241](https://github.com/uuidjs/uuid/issues/241) ([#247](https://github.com/uuidjs/uuid/issues/247)) ([1fef18b](https://github.com/uuidjs/uuid/commit/1fef18b))
|
147 |
|
148 | # [3.2.0](https://github.com/uuidjs/uuid/compare/v3.1.0...v3.2.0) (2018-01-16)
|
149 |
|
150 | ### Bug Fixes
|
151 |
|
152 | - remove mistakenly added typescript dependency, rollback version (standard-version will auto-increment) ([09fa824](https://github.com/uuidjs/uuid/commit/09fa824))
|
153 | - use msCrypto if available. Fixes [#241](https://github.com/uuidjs/uuid/issues/241) ([#247](https://github.com/uuidjs/uuid/issues/247)) ([1fef18b](https://github.com/uuidjs/uuid/commit/1fef18b))
|
154 |
|
155 | ### Features
|
156 |
|
157 | - Add v3 Support ([#217](https://github.com/uuidjs/uuid/issues/217)) ([d94f726](https://github.com/uuidjs/uuid/commit/d94f726))
|
158 |
|
159 | # [3.1.0](https://github.com/uuidjs/uuid/compare/v3.1.0...v3.0.1) (2017-06-17)
|
160 |
|
161 | ### Bug Fixes
|
162 |
|
163 | - (fix) Add .npmignore file to exclude test/ and other non-essential files from packing. (#183)
|
164 | - Fix typo (#178)
|
165 | - Simple typo fix (#165)
|
166 |
|
167 | ### Features
|
168 |
|
169 | - v5 support in CLI (#197)
|
170 | - V5 support (#188)
|
171 |
|
172 | # 3.0.1 (2016-11-28)
|
173 |
|
174 | - split uuid versions into separate files
|
175 |
|
176 | # 3.0.0 (2016-11-17)
|
177 |
|
178 | - remove .parse and .unparse
|
179 |
|
180 | # 2.0.0
|
181 |
|
182 | - Removed uuid.BufferClass
|
183 |
|
184 | # 1.4.0
|
185 |
|
186 | - Improved module context detection
|
187 | - Removed public RNG functions
|
188 |
|
189 | # 1.3.2
|
190 |
|
191 | - Improve tests and handling of v1() options (Issue #24)
|
192 | - Expose RNG option to allow for perf testing with different generators
|
193 |
|
194 | # 1.3.0
|
195 |
|
196 | - Support for version 1 ids, thanks to [@ctavan](https://github.com/ctavan)!
|
197 | - Support for node.js crypto API
|
198 | - De-emphasizing performance in favor of a) cryptographic quality PRNGs where available and b) more manageable code
|
199 |
|
\ | No newline at end of file |